* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales basados en el logo */
    --primary-color: #266C9E;
    /* Azul principal del logo */
    --primary-light: #3A7FA8;
    /* Versión más clara del azul */
    --primary-dark: #1D4F6F;
    /* Versión más oscura del azul */

    /* Colores de acento */
    --accent-color: #FFA630;
    /* Naranja suave para llamadas a la acción */
    --accent-light: #FFC07F;
    /* Versión más clara del acento */

    /* Escala de grises con el color de fondo del logo */
    --neutral: #F3F4F1;
    /* Color de fondo del logo */
    --neutral-50: #F8F9F7;
    /* Versión ligeramente más clara */
    --neutral-100: #EDEEEC;
    /* Gris muy claro */
    --neutral-200: #E0E2DF;
    /* Gris claro */
    --neutral-300: #C5C8C4;
    /* Gris medio */
    --neutral-400: #A1A6A2;
    /* Gris */
    --neutral-500: #7F8580;
    /* Gris oscuro */
    --neutral-600: #5E6560;
    /* Gris más oscuro */
    --neutral-700: #3E4440;
    /* Gris muy oscuro */
    --neutral-800: #2A2F2C;
    /* Casi negro */
    --neutral-900: #1A1F1C;
    /* Negro suave */

    /* Variables de gradiente */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--neutral-800);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--neutral);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero {
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 100px 0 80px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons,
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-buttons {
    gap: 20px;
    margin-top: 30px;
}

.cta-buttons .btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 166, 48, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 166, 48, 0.4);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    padding: 16px 40px;
    font-size: 18px;
    backdrop-filter: blur(5px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(38, 108, 158, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 108, 158, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Estilos del botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 50px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--neutral-50);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.section-header p {
    font-size: 18px;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(38, 108, 158, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--neutral-900);
}

.feature-card p {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 120px 0;
    background: white;
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.preview-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--neutral-900);
}

.preview-content p {
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Estilos específicos para el mockup del dashboard */
.dashboard-mockup {
    background: var(--neutral-50);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    height: 500px;
}

.mockup-browser {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* Mobile App Section */
.mobile-app {
    padding: 120px 0;
    background: var(--neutral-50);
}

.mobile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Estilos específicos para el mockup del móvil */
.phone-mockup {
    position: relative;
    width: 300px;
    margin: 0 auto;
    padding: 16px;
    background: var(--neutral-50);
    border-radius: 40px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 600px;
    background: white;
    border-radius: 36px;
    overflow: hidden;
    border: 8px solid #1e293b;
}

.phone-screen {
    height: 100%;
    width: 100%;
    position: relative;
}

/* Nuevos estilos para los carruseles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(0.95);
    border-radius: 4px;
}

.slideshow img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slideshow img.prev {
    opacity: 0;
    transform: translateX(-30%) scale(0.9);
    z-index: 1;
}

.slideshow img.next {
    opacity: 0;
    transform: translateX(30%) scale(0.9);
    z-index: 1;
}

/* Indicadores del carrusel */
.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(104, 104, 104, 0.8) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.indicator.active {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    font-size: 20px;
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-100);
    padding: 80px 0 40px;
    border-top: 1px solid var(--neutral-700);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-700);
    text-align: center;
    color: var(--neutral-400);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-slideshow,
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dashboard-slideshow img,
.phone-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(100%);
}

.dashboard-slideshow img.active-slide,
.phone-screen img.active-slide {
    opacity: 1;
    transform: translateX(0);
}

.dashboard-slideshow img.prev-slide,
.phone-screen img.prev-slide {
    transform: translateX(-100%);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    font-size: 20px;
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-100);
    padding: 80px 0 40px;
    border-top: 1px solid var(--neutral-700);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-700);
    text-align: center;
    color: var(--neutral-400);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom a {
    color: var(--neutral-300);
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-bottom a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Estilos para la sección de Política de Privacidad */
.privacy-section {
    padding: 80px 0;
    background-color: white;
}

.privacy-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.privacy-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--neutral-700);
    line-height: 1.8;
    font-size: 1.1rem;
}

.privacy-content p {
    margin-bottom: 1.2rem;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* Media Queries para Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .preview-image {
        order: -1;
    }
}



/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .feature-card {
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 40px 0;
    }

    .container {
        padding: 0 24px;
    }

    .mobile-container {
        padding: 60px 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .hero {
        margin: 20px 0;
        padding: 40px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preview-content h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 15px;
    }
}