/* ==================== */
/* Variables y Reset */
/* ==================== */

:root {
    --primary-color: #00b894;
    --primary-dark: #00a085;
    --secondary-color: #1abc9c;
    --dark-bg: #1a1d29;
    --dark-bg-light: #252837;
    --text-dark: #2d3436;
    --text-gray: #636e72;
    --text-light: #b2bec3;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e1e8ed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.wrap {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== */
/* Header */
/* ==================== */

.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-content .logo {
    flex-shrink: 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    z-index: 1001;
}

.logo img {
    height: 32px;
    width: auto;
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navegación */
.nav {
    display: flex;
    gap: 40px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.btn-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-header-mobile {
    display: none !important;
}

.btn-header-desktop {
    display: inline-block;
}

.btn-header:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

/* ==================== */
/* Hero Section */
/* ==================== */

.hero {
    padding: 100px 0;
    background: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 184, 148, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-label-icon {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1d29;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 540px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.hero-image img {
    width: 100%;
}

/* ==================== */
/* Section Labels & Titles */
/* ==================== */

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.text-gray {
    color: var(--text-gray);
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ==================== */
/* Problems Section */
/* ==================== */

.problems {
    padding: 100px 0;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.problem-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #e8ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: rgba(0, 184, 148, 0.3);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 184, 148, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.problem-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.problem-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==================== */
/* CTA Banner */
/* ==================== */

.cta-banner {
    border-radius: 24px;
    background: linear-gradient(135deg, #0D9488 0%, #10B981 100%);
    padding: 60px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner .wrap {
    position: relative;
    z-index: 1;
}

.cta-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    z-index: 0;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-label-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--white);
}

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    color: var(--white);
    opacity: 0.95;
}

/* ==================== */
/* Features Section */
/* ==================== */

.features {
    padding: 100px 0;
    background: #f5f7fa;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    border: none;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==================== */
/* How it Works */
/* ==================== */

.how-it-works {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.steps-container {
    margin-top: 60px;
}

.steps-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
    position: relative;
    align-items: center;
}

.step-icon-wrapper {
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0D9488 0%, #10B981 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.steps-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    max-width: 100%;
    border-top: 2px solid #CBFBF1;
    padding-top: 20px;
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    color: #f0f2f5;
    line-height: 1;
    text-align: left;
    letter-spacing: -0.02em;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.step-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #e8ecef;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 184, 148, 0.3);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==================== */
/* Dashboard Section */
/* ==================== */

.dashboard-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.product-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
    text-align: left;
}

.product-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.product-image img {
    width: 100%;
    display: block;
}

.product-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 16px;
}

.dashboard-feature p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.platform-availability {
    background: rgba(0, 184, 148, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.platform-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.platform-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.platform-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-btn {
    border-radius: 10px;
    border: 1px solid #CBFBF1;
    background: #FFF;
    color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.platform-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

/* ==================== */
/* AI Section */
/* ==================== */

/* ==================== */
/* AI Section */
/* ==================== */

.ai-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #0A1628 8.49%, #0D2D2A 50%, #0F3D38 91.51%);
    color: var(--white);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    color: #46ECD5;
    font-weight: 400;
    margin-bottom: 24px;
}

.ai-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.section-title-white {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.ai-description {
    font-size: 17px;
    color: #b8c5d4;
    line-height: 1.7;
    margin-bottom: 48px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ai-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ai-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(0, 187, 167, 0.20);
    background: rgba(0, 187, 167, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
}

.ai-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.ai-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.ai-feature p {
    font-size: 15px;
    color: #b8c5d4;
    line-height: 1.6;
}

.ai-image {
    position: relative;
}

.ai-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ==================== */
/* Footer CTA */
/* ==================== */

.footer-cta {
    padding: 80px 0 0;
    background: linear-gradient(135deg, #0D9488 0%, #10B981 50%, #059669 100%);
    color: var(--white);
    text-align: center;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 48px;
    line-height: 1.2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s, opacity 0.3s;
    color: var(--white);
}

.contact-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.footer-bottom {
    background: #1e2330;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 28px;
    width: auto;
}

.footer-copyright {
    color: #8b92a4;
    font-size: 14px;
    margin: 0;
}

.footer-systems {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
}

.systems-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
}

.footer-links a {
    color: #8b92a4;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
}

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 1400px) {
    .hero-title {
    font-size: 47px;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .ai-content {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-icons,
    .steps-numbers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-icon-wrapper:nth-child(2)::after,
    .step-icon-wrapper:nth-child(3)::after {
        display: none;
    }
    
    .step-icon-wrapper:nth-child(3),
    .steps-numbers .step-number:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-copyright {
        order: 2;
        flex: 1;
        min-width: 200px;
    }
    
    .footer-systems {
        order: 3;
    }
    
    .footer-links {
        order: 4;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
    padding: 40px 0;
    }
    .hidden-mobile {
        display: none;
    }
    .wrap {
        max-width: 90%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .btn-header-desktop {
        display: none;
    }
    
    .btn-header-mobile {
        display: block !important;
        width: 100%;
    }
    .platform-btn {
        padding: 10px 12px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        height: 100vh;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        gap: 30px;
        padding: 100px 40px 40px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
    }
    
    .btn-header {
        text-align: center;
        padding: 14px 24px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .section-title,
    .cta-title,
    .footer-title {
        font-size: 32px;
    }
    
    .footer-badge {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .contact-info {
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .contact-item {
        font-size: 17px;
    }
    
    .cta-banner {
        margin: 40px 0;
        padding: 60px 30px;
        border-radius: 16px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-icons,
    .steps-numbers {
        display: none;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
    }
    
    .product-right {
        gap: 24px;
    }
    
    .platform-availability {
        padding: 24px 20px;
    }
    
    .platform-buttons {
        gap: 10px;
    }
    
    .platform-btn {
        flex: 1;
        min-width: 80px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-copyright {
        order: 2;
    }
    
    .footer-systems {
        order: 3;
    }
    
    .footer-links {
        order: 4;
        gap: 20px;
    }
}
