/* Fuentes actualizadas - Espacios Digitales 2026 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@700;800;900&family=Quicksand:wght@300..700&family=Montserrat:wght@400;600;800&display=swap');

:root {
  
    /* Paleta de colores (mantengo la tuya) */
    --primary-color: #004682;
    --secondary-color: #00AEEF;
   


    /* === TIPOGRAFÍA ESTÁNDAR === */
    --title-font-family: 'Montserrat Alternates', sans-serif;   /* Títulos principales, slogans, hero */
    --base-font-family: 'Quicksand', sans-serif;               /* Texto cuerpo, párrafos, listas */
    --button-font-family: 'Montserrat', sans-serif;

    --accent-color: #F97316;     /* Naranja principal (reemplaza #FF6B00) */
    --accent-hover: #EA580C;     /* Hover más oscuro */

}

/* Botón primario - consistente en Hero y Services */
.btn-primary {
    display: inline-block;
    width: auto;
    max-width: 340px;
    /*margin: 30px auto 0;*/
    padding: 18px 60px;                 /* ← Padding lateral generoso */
    background: var(--primary-color);   /* Azul profundo #004682 */
    color: white;
    font-family: var(--button-font-family, 'Montserrat', sans-serif);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 70, 130, 0.3);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-color); /* Azul cielo #00AEEF */
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 174, 239, 0.4);
}



@media (max-width: 640px) {
    .btn-primary, .btn-secondary {
        padding: 18px 40px;
        font-size: .8rem;
        max-width: 300px;
        margin: 20px auto;
    }

   

   
}

  

   



/* Underline hover menú – gradiente azul */
.navbar-menu a::after {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: var(--base-font-family);
    font-optical-sizing: auto;
    font-style: normal;
    background-color: lightgray;
    color: #333;
    padding-top: 80px; /* Espacio para navbar fijo */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--title-font-family);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
}


/* Texto general */
body,
p,
li {
    font-family: 'Quicksand', sans-serif;
}
/*-------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------*/
/* NAVBAR - Espacios Digitales (compatible con navbar.js actual)*/
 
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .navbar-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 90px;
    }

    .navbar-logo {
        height: 60px;
        display: flex;
        align-items: center;
    }

    .navbar-logo img {
        height: 100%;
        width: auto;
        transition: transform 0.3s ease;
    }

    .navbar-logo:hover img {
        transform: scale(1.05);
    }

    /* Menú Desktop - Horizontal limpio */
    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 40px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .navbar-menu a {
        color: #333;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        position: relative;
        transition: color 0.3s ease;
    }

    .navbar-menu a:hover {
        color: #004682;
    }

    /* Underline elegante en hover */
    .navbar-menu a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -8px;
        left: 50%;
        background: linear-gradient(90deg, #004682, #00AEEF);
        transition: all 0.4s ease;
        transform: translateX(-50%);
    }

    .navbar-menu a:hover::after {
        width: 70%;
    }

    /* Hamburger Icon */
    .navbar-hamburger {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .navbar-hamburger span {
        width: 30px;
        height: 3px;
        background: #004682;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .navbar-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .navbar-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    /* Responsive - Menú Móvil */
    @media (max-width: 968px) {
        .navbar-menu {
            position: fixed;
            top: 90px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 90px);
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 60px;
            transition: left 0.4s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            gap: 0;
        }

        .navbar-menu.active {
            left: 0;
        }

        .navbar-menu li {
            width: 100%;
        }

        .navbar-menu a {
            display: block;
            padding: 20px 0;
            font-size: 1.5rem;
            text-align: center;
            border-bottom: 1px solid lightgray;   /* Separador horizontal lightgray solo en móvil */
        }

       
        .navbar-hamburger {
            display: flex;
        }
    }
/*-------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------*/
/* About Us -  */
    .about-section {
        padding: 120px 20px;
        background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .section-title {
        font-size: 3rem;
        color: #004682;
        margin-bottom: 80px;
        font-weight: 800;
    }

    .mission-vision-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 60px;
        margin-bottom: 100px;
    }

    .card {
        background: white;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,70,130,0.1);
        transition: transform 0.4s ease;
    }

    .card:hover {
        transform: translateY(-15px);
    }

    .card.highlight {
        background: linear-gradient(135deg, #004682, #00AEEF);
        color: white;
    }

    .card h3 {
        font-size: 2rem;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .card p {
        font-size: 1.3rem;
        line-height: 1.8;
    }

    .slogan-box {
        margin-top: 60px;
    }

    .main-slogan {
        font-size: 2.5rem;
        font-weight: 800;
        color: #004682;
        letter-spacing: 1px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .mission-vision-grid {
            grid-template-columns: 1fr;
        }
        .section-title { font-size: 2.5rem; }
        .card { padding: 40px; }
        .main-slogan { font-size: 2rem; }
    }
/*-------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------*/
/* Hero Section - Adaptada al estilo actual del proyecto */
    .hero-section {
        position: relative;
        height: calc(100vh - 80px); 
        min-height: 600px;
        background: linear-gradient(135deg, #004682 0%, #00AEEF 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: white;
        text-align: center;

        padding: 1rem;
        background-size: cover;
    }

    .hero-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1100px;
        padding: 0 20px;
    }

    .hero-slogan {
        font-family: 'Orbitron', sans-serif;
        font-size: 4.8rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 30px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }

    .hero-subtitle {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.9rem;
        font-weight: 500;
        margin-bottom: 50px;
        opacity: 0.95;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* En Hero: full-width opcional en móvil y centrado */
    .hero-buttons .btn-primary {
        margin: 20px 10px;
    }
    
    /* Responsive */
    @media (max-width: 968px) {
        .hero-slogan {
            font-size: 3.25rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
        }
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        }
         }.hero-buttons {
            flex-direction: column;
        }

        .hero-buttons .btn-primary {
            width: 90%;
            max-width: none;
            margin: 15px auto;
        }
    }

    @media (max-width: 480px) {
        .hero-slogan {
            font-size: 2.8rem;
        }
        .hero-subtitle {
            font-size: 1.3rem;
        }
    }
/*-------------------------------------------------------------------------------*/


/*-------------------------------------------------------------------------------*/
/*----- CAROUSEL SECTION -----*/
    #my-carousel {
        position: relative;
        width: 100vw;
        height: calc(100vh - 80px);
        overflow: hidden;
        flex-grow: 1;
    }

    .carousel-box {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .carousel-slide {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        display: none;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }

    .carousel-slide.active {
        opacity: 1;
        display: flex;
    }

    .slide-content {
        max-width: 90%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .slide-content h1 {
        font-size: 4.5rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        color: white;
    }

    .slide-content p {
        font-size: 1.8rem;
        margin-bottom: 40px;
        max-width: 800px;
        color: white;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-primary {
        background-color: var(--primary-color);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s;
    }

    .cta-primary:hover { 
        background-color: var(--secondary-color); 
    }

    .cta-secondary {
        background-color: rgba(255,255,255,0.2);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        border: 1px solid white;
        transition: background 0.3s;
    }

    .cta-secondary:hover { 
        background-color: rgba(255,255,255,0.4); 
    }

    .carousel-prev, .carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.3);
        color: white;
        border: none;
        width: 60px; height: 60px;
        border-radius: 50%;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
    }

    .carousel-prev:hover, .carousel-next:hover { 
        background: rgba(0,0,0,0.6); 
    }

    .carousel-prev { left: 30px; }
    .carousel-next { right: 30px; }

    .carousel-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .dot {
        width: 12px; height: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }

    .dot.active { 
        background: white; 
    }

    @media (max-width: 768px) {
        .slide-content h1 { font-size: 3rem; }
        .slide-content p { font-size: 1.4rem; }
        .cta-buttons { flex-direction: column; align-items: center; }
    }
/*-------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------*/
/* Modal de Contacto - Versión optimizada para móvil y desktop */
    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;                  /* Evita scroll del body */
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        align-items: flex-start;           /* Alinea al top para scroll interno */
        justify-content: center;
        padding: 20px 0;                   /* Espacio arriba/abajo en móvil */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .modal.active {
        display: flex;
        opacity: 1;
        overflow-y: auto;                  /* Permite scroll si el contenido excede */
    }

    .modal-content {
        background: white;
        border-radius: 20px;
        max-width: 600px;
        width: 90%;                        /* 90% del ancho en móvil */
        max-height: 90vh;                  /* ← Clave: máximo 90% del alto de pantalla */
        margin: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        overflow: hidden;                  /* Importante para scroll interno */
        animation: modalSlideUp 0.4s ease-out;
        padding: 20px;
    }

    @keyframes modalSlideUp {
        from { transform: translateY(50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Contenedor con scroll interno */
    .modal-body {
        flex: 1;
        overflow-y: auto;                  /* Scroll solo dentro del modal si es necesario */
        padding: 20px;
    }

    .modal-header {
        padding: 30px 40px 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;                    /* No se comprime */

    }

    .modal-header h2 {
        font-family: var(--title-font-family);
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .modal-header p {
        font-size: 1.1rem;
        color: #666;
    }

    /* Formulario más compacto */
    form {
        padding: 0;
        padding-top: 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .modal-body form {
        padding: 0;
    }

    .form-group {
        margin-bottom: 20px;               /* Reducido para más compacto */
    }

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        font-size: 0.95rem;
        color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 8px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-family: var(--base-font-family);
        font-size: 1rem;
    }

    .modal-submit {
        width: 100%;
        padding: 16px;
        font-size: 1.2rem;
        margin-top: 10px;
        flex-shrink: 0;
    }

    .modal-footer {
        text-align: center;
        padding: 20px 40px;
        background: #f8fbff;
        border-top: 1px solid #eee;
        flex-shrink: 0;
        font-size: 0.95rem;
        color: #666;
    }

    .modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2.2rem;
        color: #999;
        cursor: pointer;
        z-index: 10;
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    .modal-close:hover {
        color: #333;
        transform: scale(1.1);
    }

    .success-message {
        text-align: center;
        padding: 40px 20px;
    }

    .success-message h3 {
        font-family: var(--title-font-family);
        font-size: 2.4rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .success-message p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .modal-close-btn {
        padding: 16px 50px;
        font-size: 1.3rem;
    }
    .honeypot {
        position: absolute;
        left: -9999px;
        opacity: 0;
        pointer-events: none;
        height: 0;
        width: 0;
    }

    /* Responsive extra */
    @media (max-width: 640px) {
        .modal-content {
            width: 95%;
            border-radius: 16px;
        }
        .modal-body, .modal-header {
            padding: 30px 20px;
        }
        .modal-header h2 {
            font-size: 1.8rem;
        }
        .modal-close {
            width: 50px;
            height: 50px;
            font-size: 2.5rem;
            top: 10px;
            right: 15px;
        }
    }
/*-------------------------------------------------------------------------------*/


/*-------------------------------------------------------------------------------*/
/* Services Section - Paquetes */
    .services-section {
        padding: 120px 20px;
        background: #f8fbff;
        text-align: center;
    }

    .services-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        font-family: var(--title-font-family);
        font-size: 3.5rem;
        color: var(--primary-color);
        margin-bottom: 30px;
    }

    .services-intro {
        font-size: 1.4rem;
        color: #555;
        margin-bottom: 80px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 40px;
    }

    .service-card {
        background: white;
        padding: 50px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        position: relative;
        transition: transform 0.4s ease;
        display: flex;
        flex-direction: column;            /* ← Clave para alinear al bottom */
        justify-content: space-between;    /* ← Empuja el botón al fondo */
        height: 100%;                      /* ← Todas las cards misma altura */
        min-height: 650px;                 /* ← Ajusta según tu contenido (puedes cambiarlo) */
    }

    .service-card:hover {
        transform: translateY(-15px);
    }

    .service-card.popular {
        border: 4px solid var(--primary-color);
        transform: scale(1.05);
    }

    /* El contenido (título, precio, lista) crece y ocupa espacio */
    .service-card .card-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .service-card .features-list {
        flex-grow: 1;
    }

    .popular-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
        color: white;
        padding: 8px 25px;
        border-radius: 30px;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .price {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary-color);
        margin: 20px 0;
    }

    .features-list {
        list-style: none;
        text-align: left;
        margin: 30px 0;
        font-size: 1.1rem;
    }

    .features-list li {
        margin: 15px 0;
        padding-left: 30px;
        position: relative;
    }

    .features-list li::before {
        content: "✓";
        color: var(--secondary-color); 
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* Botón siempre al bottom */
    .service-card .btn-primary {
        margin: 30px auto 0;               /* Espacio arriba + centrado */
        width: auto;
        max-width: 320px;
        padding: 18px 60px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
        .service-card.popular {
            transform: none;
        }
    }


    /* Precios – azul cielo */
    .price {
        color: var(--secondary-color);
    }

    /* Badge "Más popular" – azul cielo */
    .popular-badge {
        background: var(--primary-color);
    }

 /* En cards de services - full-width con padding en móvil */
    
/*-------------------------------------------------------------------------------*/


/*-------------------------------------------------------------------------------*/
/* Additional Services - Tabla comparativa */
/* ==========================================================================
   ADDITIONAL SERVICES - Tabla comparativa de planes recurrentes
   ========================================================================== */

.additional-services {
    padding: 120px 20px;
    background: white;
    text-align: center;
}

.additional-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-services .section-title {
    font-family: var(--title-font-family);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.additional-services .additional-subtitle {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.additional-services .additional-intro {
    font-size: 1.4rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Wrapper para scroll horizontal en móvil */
.additional-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
    -webkit-overflow-scrolling: touch;
}

/* Tabla principal */
.additional-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #f8fbff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 70, 130, 0.12);
}

.additional-table th {
    background: var(--primary-color);
    color: white;
    padding: 30px 20px;
    font-family: var(--title-font-family);
    font-size: 1.25rem;
    font-weight: 700;
}

.additional-table th:first-child {
    /*background: transparent;
    color: transparent;*/
}

/* Celdas de contenido */
.additional-table td {
    padding: 25px 20px;
    vertical-align: top;
    border-bottom: 1px solid #e0e7ff;
}

.additional-table td:first-child {
    background: #e6f0ff;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    width: 35%;
    font-size: 1.2rem;
}

/* Precios - grandes y destacados */
.additional-table .price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
}

.additional-table .price span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 8px;
}

.additional-table span.price {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Bullets en "Incluye" - line-height 1.5 */
.additional-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.additional-table li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;                 /* ← Espacio 1.5 entre líneas */
    font-size: 1.1rem;
    color: #444;
}

.additional-table li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Nota final */
.additional-note {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Responsive - móvil */
@media (max-width: 768px) {
    .additional-services .section-title {
        font-size: 2.8rem;
    }
    
    .additional-table th,
    .additional-table td {
        padding: 18px 12px;
        font-size: 1rem;
    }
    
    .additional-table .price {
        font-size: 2rem;
    }
    
    .additional-table li {
        font-size: 1rem;
        margin-bottom: 14px;
    }
}

/* ==========================================================================
   FOOTER COMPACTO - Espacios Digitales
   ========================================================================== */

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
    font-size: 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.company-name {
    font-family: var(--title-font-family);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
}

.footer-center {
    text-align: center;
}

.address {
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

.contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact a:hover {
    color: var(--secondary-color);
}

.footer-right {
    text-align: right;
}

.footer-right p {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive - Móvil */
@media (max-width: 868px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-left, .footer-center, .footer-right {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        height: 45px;
    }

    .company-name {
        font-size: 1.5rem;
    }
}



.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;

}
.whatsapp-float:hover {
    transform: scale(1.1);
}