/* CSS Especifico para la Landing Page de Ventas */

/* General Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Navbar */
.main-nav {
    background-color: var(--corporate-blue);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-login {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-login:hover {
    color: var(--eco-green);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    width: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--corporate-blue) 0%, var(--corporate-blue-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.badge {
    background-color: rgba(46, 204, 113, 0.2);
    color: var(--eco-green-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section h1 .highlight {
    color: var(--accent-yellow);
}

.hero-subtitle {
    color: #c9d6ea;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-large {
    font-size: 1.1rem;
    padding: 16px 32px;
    width: auto;
}

/* Hero Background Elements */
.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(46, 204, 113, 0.15);
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(241, 196, 15, 0.1);
    bottom: -50px;
    right: -50px;
}

/* Contrast Section */
.contrast-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--corporate-blue);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contrast-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.contrast-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.contrast-card.productive {
    border-top: 5px solid var(--accent-yellow);
}

.contrast-card.familiar {
    border-top: 5px solid var(--eco-green);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.productive .card-icon { color: var(--accent-yellow); }
.familiar .card-icon { color: var(--eco-green); }

.contrast-card h3 {
    font-size: 1.8rem;
    color: var(--corporate-blue);
    margin-bottom: 0.5rem;
}

.badge-area {
    display: inline-block;
    background: #f1f5f9;
    color: var(--corporate-blue);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contrast-card ul {
    list-style: none;
}

.contrast-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contrast-card ul li i {
    margin-top: 4px;
}

.productive ul li i { color: var(--accent-yellow); }
.familiar ul li i { color: var(--eco-green); }


/* Transparency Section */
.transparency-section {
    padding: 6rem 0;
    background-color: white;
}

.transparency-content h2 {
    font-size: 2.5rem;
    color: var(--corporate-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.transparency-content h2 .highlight {
    color: var(--eco-green);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.transparency-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.t-item {
    text-align: center;
    padding: 2rem;
}

.t-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--eco-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.t-text h4 {
    font-size: 1.2rem;
    color: var(--corporate-blue);
    margin-bottom: 1rem;
}

.t-text p {
    color: var(--text-muted);
}

/* Networking Section */
.networking-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #162c4c 0%, #0b1a30 100%);
    color: white;
}

.networking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.networking-text h2 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.networking-text .lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.networking-text .sub-text {
    color: #c9d6ea;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--eco-green);
}

.capture-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.capture-box h3 {
    color: var(--corporate-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.capture-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #25D366; /* WhatsApp brand color */
    font-size: 1.2rem;
}

.form-footer-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #061120;
    padding: 3rem 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contrast-grid {
        grid-template-columns: 1fr;
    }
    .transparency-list {
        grid-template-columns: 1fr;
    }
    .networking-grid {
        grid-template-columns: 1fr;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

.card-image { width: 100%; height: 250px; border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.contrast-card:hover .card-image img { transform: scale(1.05); }
