/*
Theme Name: Farxul
Theme URI: https://www.farxul.com/
Description: Página de Contabilidad Fiscal & Finanzas Empresariales
Text Domain: Farxul
Author: Sakbej Agency
Author URI: http://sakbej.agency/
Version: 1.0
License: GNU General Public License v2 or later
*/

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

        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #0A1B33;
            overflow-x: hidden;
            background: #f8fafc;
        }

        /* TOP BAR STYLES */
.top-bar {
    background: linear-gradient(135deg, #0f172a 0%, #0f172a 100%);
    color: #d1d5db;
    padding: 0.6rem 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

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

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link img {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-link:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}


/* Ajustar navbar para comportamiento dinámico */
.navbar {
    position: fixed;
    top: 40px; /* Inicialmente debajo del top-bar */
    width: 100%;
    background: #103a74; /* #0A1B33  rgba(15, 23, 42, 0.95);*/
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.navbar.top-bar-hidden {
    top: 0; /* Se mueve arriba cuando el top-bar se oculta */
}

/* Ajustar el hero para el espacio inicial */
.hero {
    margin-top: 132px; /* Espacio para top-bar (52px) + navbar (~80px) */
}

/* Responsive para la barra superior */
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 0.8rem 2rem;
    }
    
    .top-bar-left{
        order: 2;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    
    .top-bar-right {
        order: 1;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .navbar {
        top: 100px;
    }
    
    .navbar.top-bar-hidden {
        top: 0;
    }
    
    .hero {
        margin-top: 165px; /* Ajuste para móviles */
    }
}

/* Ocultar horarios y redes sociales en móvil */
@media (max-width: 768px) {
    .top-bar-item.hours {
        display: none;
    }
    
    .social-links {
        display: none!important;
    }
    
    /* Ajustar el layout del top-bar sin estos elementos */
    .top-bar-container {
        flex-direction: row; /* Cambiar de column a row */
        justify-content: center;
        gap: 1rem;
    }
    
    .top-bar-left,
    .top-bar-right {
        order: initial; /* Resetear el order */
        gap: 1rem;
    }
    
    /* Centrar los elementos restantes */
    .top-bar-right {
        justify-content: center;
    }
}
/**END TOP BAR */

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .top-bar-item.hours {
        display: none;
    }
    
    .social-links {
        display: none!important;
    }
}
        
/* NAVBAR STYLES */
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #112f60;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        /* DESKTOP MENU */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu li {
            margin: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: #e2e8f0;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
            letter-spacing: 0.25px;
            padding: 0.5rem 0;
        }

        .nav-menu a:hover {
            color: #60a5fa;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #112f60, #06b6d4);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* HAMBURGER BUTTON */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #e2e8f0;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
            display: block;
        }

        /* HAMBURGER ANIMATION */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: #112f60;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: #112f60;
        }

        /* RESPONSIVE STYLES */
        @media (max-width: 768px) {
            /* Show hamburger on mobile */
            .hamburger {
                display: flex;
            }

            /* Hide desktop menu and show mobile menu */
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                width: 100%;
                text-align: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 27px rgba(0,0,0,0.3);
                padding: 2rem 0;
                z-index: 999;
                height: calc(100vh - 80px);
                overflow-y: auto;
                border-top: 1px solid rgba(59, 130, 246, 0.2);
                gap: 0;
            }

            /* Show mobile menu when active */
            .nav-menu.active {
                left: 0;
            }

            /* Mobile menu items */
            .nav-menu li {
                margin: 1.5rem 0;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.3s ease;
            }

            /* Animate menu items when menu is active */
            .nav-menu.active li {
                opacity: 1;
                transform: translateY(0);
            }

            /* Staggered animation delays */
            .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }

            /* Mobile menu links */
            .nav-menu a {
                font-size: 1.3rem;
                font-weight: 600;
                padding: 1rem;
                display: block;
                border-radius: 8px;
                margin: 0 2rem;
                transition: all 0.3s ease;
                color: #e2e8f0;
            }

            .nav-menu a:hover {
                background: rgba(59, 130, 246, 0.1);
                color: #60a5fa;
            }

            .nav-menu a::after {
                display: none; /* Hide underline effect on mobile */
            }
        }
        /***End Navbar */

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            margin-top: 90px; /* Añadir esta línea */
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.3;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.7);
            z-index: 2;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            z-index: 2;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            color: white;
            z-index: 3;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
            max-width: 600px;
            color: #cbd5e1;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 2.8rem;
            background: linear-gradient(135deg, #112f60 0%, #06b6d4 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
            letter-spacing: 0.5px;
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
            background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
        }

        /* Sections */
        .section {
            padding: 5rem 0;
        }

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

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1e293b;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .testimonials .section-title{
            color:white;
        }

        .testimonials .section-subtitle{
            color:#bfbfbf;
        }

        .testimonials .testimonial-author{
            color: #a9a9aa;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Nosotros Section */
        .about {
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
        }

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

        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #112f60;
            font-weight: 600;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #64748b;
            line-height: 1.7;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 2rem 1.5rem;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #112f60;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #112f60;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #64748b;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Servicios Section */
        .services {
            background: #f8fafc;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #112f60, #06b6d4);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #112f60;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #112f60, #06b6d4);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .service-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #1e293b;
            font-weight: 600;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Testimonios Section */
        .testimonials {
            background:#0f172a;
            color: white;
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
        }

        .testimonials .container {
            position: relative;
            z-index: 2;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .author-avatar img {
  width: 60px;           /* Tamaño del avatar */
  height: 60px;
  object-fit: cover;     /* Mantiene la proporción y rellena */
  border-radius: 50%;    /* Hace el avatar circular */
  border: 2px solid #ddd; /* Borde opcional para contraste */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Sombra suave */
  display: block;        /* Evita espacios indeseados */
}


        .author-info h4 {
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Blog Section */
        .blog {
            background: #ffffff;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .blog-card {
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #112f60;
        }

        .blog-image {
        height: 200px;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        }

        .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-date {
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .blog-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #1e293b;
            font-weight: 600;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .read-more {
            color: #112f60;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #2563eb;
        }

        /* Contacto Section */
        .contact {
            background: #f8fafc;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            color: #1e293b;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #112f60, #06b6d4);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .contact-icon img {
            width: 40px;      /* Ajusta según tu diseño */
            height: 40px;     /* Asegura forma cuadrada */
            object-fit: contain;
            padding: 5px;        /* Opcional: espacio interno */
        }

        .contact-item div {
            color: #64748b;
            line-height: 1.6;
        }

        .contact-item strong {
            color: #1e293b;
            display: block;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .contact-form {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1e293b;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #112f60;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: #103a74;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #2563eb, #0891b2);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
            text-align: center;
            padding: 2.5rem 0;
            border-top: 1px solid #1e293b;
        }

        .footer a{
          color: #cbd5e1;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
        
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(10px);
                width: 100%;
                text-align: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
                padding: 2rem 0;
                z-index: 999;
                height: calc(100vh - 80px);
                overflow-y: auto;
                border-top: 1px solid rgba(59, 130, 246, 0.2);
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1.5rem 0;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.3s ease;
            }

            .nav-menu.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }

            .nav-menu a {
                font-size: 1.3rem;
                font-weight: 600;
                padding: 1rem;
                display: block;
                border-radius: 8px;
                margin: 0 2rem;
                transition: all 0.3s ease;
            }

            .nav-menu a:hover {
                background: rgba(37, 99, 235, 0.1);
                color: #2563eb;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .blog-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        .newsletter h2 {
                font-size: 2rem;
            }

            .newsletter-form {
                flex-direction: column;
                max-width: 100%;
                gap: 1rem;
                padding: 1rem;
            }

            .newsletter-btn {
                padding: 1rem;
            }        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, #112f60 0%, #113137 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .newsletter-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
            font-weight: 700;
        }

        .newsletter p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 0.5rem;
            border-radius: 12px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            color: #1e293b;
        }

        .newsletter-input::placeholder {
            color: #64748b;
        }

        .newsletter-input:focus {
            outline: none;
            background: white;
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: #103a74;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: #0f172a;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            color: #333;
        }

        .newsletter-input::placeholder {
            color: #666;
        }

        .newsletter-input:focus {
            outline: none;
            background: white;
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: #103a74;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background:rgb(29, 44, 79);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

         .logo {
  display: flex;
  align-items: center;   /* Centra verticalmente */
  gap: 10px;             /* Espacio entre logo y texto */
  text-decoration: none; /* Quita subrayado */
}

.logo img {
  height: 40px;          /* Ajusta según el tamaño real del logo */
  width: auto;
  display: block;
}

.logo span {
  font-family: 'Montserrat', sans-serif; /* O tu tipografía corporativa */
  font-size: 1.5rem;                      /* Ajusta según necesidad */
  font-weight: 600;
  color: #ffffff;                         /* Cambia según tu paleta (#ffffff si fondo oscuro) */
}