/* Variables CSS - Paleta de colores eléctricos */
:root {
  --primary-blue: #0A4D68;
  --electric-blue: #1B73E8;
  --neon-blue: #00D4FF;
  --safety-yellow: #FFD700;
  --warning-orange: #FF6B35;
  --steel-gray: #6C757D;
  --silver: #E8E8E8;
  --dark-bg: #0F1419;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --black: #000000;
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
  --gradient-accent: linear-gradient(135deg, var(--safety-yellow), var(--warning-orange));
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  --shadow-primary: 0 20px 40px rgba(27, 115, 232, 0.2);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --neon-cyan: #00e5ff;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mv-title {
  color: #2bef74ed;
  -webkit-background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
}

/* Proyectos - Tarjetas modernas */
.project-card {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    margin: 2.5rem 0;
    padding: 2rem 1.5rem;
    align-items: stretch;
    gap: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(2px);
}

.project-card.reverse {
    flex-direction: row-reverse;
}

.project-images {
    flex: 1 1 220px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.project-thumbnails {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.project-thumbnails .thumbnail {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 2px solid #fff;
    background: #eaeaea;
    transition: transform 0.18s, box-shadow 0.18s;
}

.project-thumbnails .thumbnail:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0,115,255,0.18);
    border-color: #0074FF;
}

.view-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 65px;
    background: linear-gradient(135deg, #0074FF 0%, #004080 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background 0.2s, transform 0.18s;
}
.view-more-btn:hover {
    background: linear-gradient(135deg, #ffb300 0%, #0074FF 100%);
    transform: scale(1.08);
}

.project-details {
    flex: 2 1 320px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.project-badge {
    background: #0074FF;
    color: #fff;
    display: inline-block;
    padding: 0.3rem 1.1rem;
    border-radius: 12px;
    font-size: 1rem !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    h6 {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 900;
        font-size: 1.10rem;
        /* margin-bottom: 1rem; */
        background: linear-gradient(135deg, var(--neon-blue), var(--safety-yellow));
        background-clip: text;
        -webkit-background-clip: text;
        line-height: 1.1;
        font-family: 'Montserrat', sans-serif;
        line-height: 1.3;
        text-align: center;
        margin: auto;
        text-shadow: 1px 1px 0 black;
        color: #2bef74ed;
    }
}


.project-location {
    color: #ffe082;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description h4 {
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
    text-align: center !important;
}

.project-description ul{
    color: #e0e0e0;
    font-size: 15.2px;
    margin: 0 0 0.5rem 1.2rem;
    padding-left: 1rem;
}

  li {
    text-align: left; /* Alineación a la izquierda para mejor legibilidad */
    font-size: 1.05rem;     
    line-height: 1.6;        
    margin-bottom: 0.5rem;     
    max-width: 80%;         
    margin-left: auto;      
    margin-right: auto;
  }
 
    p {
    font-size: 1.05rem; /* Aumenta ligeramente el tamaño de la letra */
    line-height: 1.6;   /* Mejora el espaciado entre líneas para legibilidad */
    text-align: justify;
  }

.project-technologies {
    margin-top: 0.5rem;
}

.project-technologies span {
    display: inline-block;
    color: #0074FF;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.2rem;
    background: #eee;
    /* Opcional: fondo para destacarlos */
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}



.project-carousel {
    position: relative;
    width: 320px;
    height: 200px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    background: #eaeaea;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 14px;
    z-index: 1;
}
.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
    opacity: 0.85;
}
.carousel-arrow.left {
    left: 10px;
}
.carousel-arrow.right {
    right: 10px;
}
.carousel-arrow:hover {
    background: #FFD500;
    color: #004080;
    opacity: 1;
}

.hero-content {
  color: var(--white);
  animation: slideInLeft 1s ease-out;
}

.hero-title p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.9;
  font-family: sans-serif;
  color: #0d4e2a;
}


.hero-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 2rem 0;
  border-radius: 2px;
}

/* Banner Carousel Mejorado */
.banner-carousel-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
  animation: slideInRight 1s ease-out;
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.banner-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(27, 115, 232, 0.1), rgba(0, 212, 255, 0.1));
  pointer-events: none;
}

    

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  gap: 10px; /* Espacio entre puntos */
  z-index: 10;
  margin: 0 auto; /* Asegura el centrado */
  padding: 0;
  list-style: none;
}

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

.indicator.active {
  background: var(--neon-blue);
  transform: scale(1.2);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator.active {
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
}


.hero-title, .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #fff;
    text-align: center;
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

/* Resto de tus estilos existentes... */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: left;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(2px);
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 64, 128, 0.18);
    background: rgba(255,255,255,0.22);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: #FFD500;
    text-shadow: 0 2px 8px #004080;
    align-self: center;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #016fdd;
    letter-spacing: 1px;
    text-align: center;
}

.service-list {
    color: #FFFFF0#F5F5DC;
    font-size: 1.05rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    margin-bottom: 0;
    list-style: disc inside;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #004080;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #FFD500;
    display: inline-block;
    padding-bottom: 8px;
}

.servicio-categoria {
    border-left: 4px solid #004080;
    padding-left: 15px;
    margin-bottom: 35px;
}

.categoria-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003366;
}

.servicio-categoria ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.5;
    color: #444;
}

.servicio-categoria ul li {
    margin-bottom: 8px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #FFD500, #FFA500);
    color: #0A192F;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 213, 0, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, #FFC800, #FF8C00);
    color: #1420c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 213, 0, 0.6);
}

.cta-button.admin {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.cta-button.admin:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(1, 1, 112, 0.384);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 115, 232, 0.2);
  transition: var(--transition-smooth);
}

 body.has-fixed-nav {
        padding-top: 60px; /* Altura de tu navbar */
    }


.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
  color: white;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--electric-blue);
  transition: var(--transition-smooth);
}

.logo:hover img {
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  background: transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /*background: var(--gradient-primary);*/
  transition: var(--transition-smooth);
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

/* Servicios destacados */
.servicios-section {
    padding: 60px 0 40px 0;
}

.servicio-destacado {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: 0 4px 24px #1B73E822;
    margin-bottom: 2.5rem;
    padding: 2.5rem 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    border-left: 8px solid #FFD700;
    position: relative;
    animation: fadeInUp 1s;
}

.servicio-destacado:hover {
    box-shadow: 0 8px 40px #00D4FF33;
    transform: translateY(-4px) scale(1.01);
    border-left: 8px solid #1B73E8;
}

.servicio-icono {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #FFD700 60%, #1B73E8 100%);
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px #FFD70044;
    margin-right: 1rem;
    flex-shrink: 0;
}

.servicio-info h3 {
    font-size: 2rem;
    color: #004080;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.servicio-info ul {
    color: #333;
    font-size: 1.08rem;
    margin-left: 1.2rem;
    padding-left: 1rem;
    list-style: disc inside;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .servicio-destacado {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1rem;
        gap: 1.2rem;
    }
    .servicio-icono {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .categoria-title {
        font-size: 1.4rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .banner-carousel-container {
        height: 100px;
    }
    .nav-links {
        display: none;
    }
     
    .project-description ul {
        font-size: 12px;
    }
    .p {
        text-align: left;
    }
    .service-card h3 {
        font-size: 1.05rem !important;
    }
}


.project-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #4B5563;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    margin: 2.5rem 0;
    padding: 2rem 1.5rem;
    align-items: stretch; /* <--- Cambiado aquí */
    gap: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(2px);
}

.banner-carousel-proyecto {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #eaeaea;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    padding: 0; /* Asegúrate de que no haya padding */
    aspect-ratio: 3/4;
}

 /* Estilos base para demostración */

        .demo-content {
            padding: 100px 20px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        /* CHAT FLOTANTE */
        .floating-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
        }

        .chat-button {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            transform: translateX(0);
            animation: slideIn 0.6s ease-out;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .chat-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .chat-button:hover::before {
            left: 100%;
        }

        .chat-button:hover {
            transform: translateX(-8px) scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
        }

        .chat-button.whatsapp {
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: white;
        }

        .chat-button.whatsapp:hover {
            background: linear-gradient(45deg, #128C7E, #25D366);
            border-color: #25D366;
        }

        .chat-button.portfolio {
            background: linear-gradient(45deg, #0074FF, #004080);
            color: white;
        }

        .chat-button.portfolio:hover {
            background: linear-gradient(45deg, #004080, #0074FF);
            border-color: #0074FF;
        }

        .chat-icon {
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
        }

        .chat-text {
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Animaciones */
        @keyframes slideIn {
            from {
                transform: translateX(100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .chat-button.whatsapp {
            animation: pulse 2s infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .floating-chat {
                bottom: 20px;
                right: 20px;
                gap: 12px;
            }
            
            .chat-button {
                padding: 12px 18px;
                font-size: 14px;
            }
            
            .chat-text {
                font-size: 14px;
            }
            
            .chat-icon {
                font-size: 18px;
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .floating-chat {
                bottom: 15px;
                right: 15px;
            }
            
            .chat-button {
                padding: 10px 15px;
                font-size: 13px;
            }
            
            .chat-text {
                font-size: 13px;
            }

            p {
            text-align: left;
            
            }
            .feature-item {
                display: contents !important;
                
            }
            .feature-icon {
                margin: auto !important;
                margin-bottom: 10px !important;
            }
            .whatsapp-link {
                width: -webkit-fill-available !important;
                text-align: center !important;
                margin-bottom: 20px !important;
            }
            .footer-bottom p {
                text-align: center !important;
            }
            .footer-bottom  {
                margin-bottom: -20px !important;
            }
        }
        /* Efectos adicionales */
        .floating-chat:hover .chat-button:not(:hover) {
            opacity: 0.7;
            transform: scale(0.95);
        }

        /* Tooltip para versión móvil compacta */
        .chat-button::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        @media (max-width: 360px) {
            .chat-button:hover::after {
                opacity: 1;
            }
        }

        /* Base moderna */
:root {
  --primary: #004080;
  --secondary: #FFD500;
  --dark: #0A192F;
  --light: #F5F7FA;
  --accent: #0074FF;
  --text: #333333;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #000000;
}

.hello {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: #2bef74;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

h2, h3, h5 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    background: #2bef74 !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    line-height: 1.3 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center !important;
    margin-top: 10px !important;
    filter: drop-shadow(1px 1px 2px rgba(43, 239, 116, 0.4)) !important;
}

/* Transiciones suaves */
.btn, .service-card, .project-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efecto hover para botones */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 116, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 116, 255, 0.4);
}

/* Animaciones al hacer scroll */
[data-aos] {
  transition: opacity 0.6s, transform 0.6s;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}
/* Estilos para la sección Nosotros Premium */
.about-section {
    padding: 0 0 5rem;
    background-color: #f9fafc;
    position: relative;
}

.about-header {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0.5rem;
}


.about-header .section-title {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.about-header .section-title span {
    color: #FFD500;
}

.about-header .section-subtitle {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}


/* Efecto libro abierto */
.about-book {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(-50px);
    background: white;
}

.book-page {
    flex: 1;
    padding: 3rem;
    position: relative;
}

.left-page {
    background: white;
    border-right: 1px solid #eee;
}

.right-page {
    background: #f9f9f9;
}

.page-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.page-content h3 i {
    font-size: 1.5rem;
}

.about-features {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    height: 100%;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Tarjetas Misión y Visión */
.mission-vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.mv-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mv-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.mission-card .mv-header {
    background: linear-gradient(135deg, #0a685e, #1be841);
}

.vision-card .mv-header {
    background: linear-gradient(135deg, #00408052, #004080);
}

.mv-body {
    padding: 2rem;
    background: #4B5563 !important;
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Línea de tiempo */
.timeline-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.timeline-title span {
    color: var(--primary);
}

.timeline {
    position: relative;
    padding-left: 150px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 50px;
}

.timeline-date {
    position: absolute;
    left: -150px;
    top: 0;
    width: 120px;
    text-align: right;
    padding-right: 30px;
    font-weight: 700;
    color: var(--primary);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

/* Responsive */
@media (max-width: 992px) {
    .about-book {
        flex-direction: column;
    }
    
    .left-page {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 100px;
    }
    
    .timeline:before {
        left: 50px;
    }
    
    .timeline-date {
        left: -100px;
        width: 80px;
    }
}

@media (max-width: 768px) {
    .about-header {
        height: 300px;
        background-attachment: scroll;
    }
    
    .about-header .section-title {
        font-size: 2.5rem;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline:before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-date {
        position: static;
        text-align: left;
        margin-bottom: 0.5rem;
        padding-right: 0;
        width: auto;
    }
    
    .timeline-content:before {
        display: none;
    }
}

/* Variables de color consistentes */
:root {
    --primary: #004080;
    --primary-light: #0066cc;
    --secondary: #FFD500;
    --dark: #0A192F;
    --light: #F5F7FA;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray: #e0e0e0;
}



/* Hero section mejorada */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 30%, #e8faf0 70%, #d4f5df 100%);
    color: var(--white);
    padding: 75px 0 75px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title h1 {
    /* Mantén todo igual, solo cambia esto: */
    background: linear-gradient(135deg, #2fae68, #1ea856, #0a3d20);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}


.hero-title h1 span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 213, 0, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 213, 0, 0.4);
}


.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Banner carousel mejorado */
.banner-carousel-container {
    flex: 1;
    max-width: 700px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.banner-carousel {
    width: 100%;
    height: 400px;
    position: relative;
}

.banner-slide { 
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    top: 0;
    left: 0;
    filter: contrast(1.1) brightness(1.1);
}

.banner-slide.active {
    opacity: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

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

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

/* Hero stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Floating chat mejorado */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: translateY(0);
    animation: slideIn 0.6s ease-out;
    border: none;
    cursor: pointer;
}

.chat-button.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.chat-button.contact {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
}

.chat-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.chat-icon {
    font-size: 20px;
}

.chat-text {
    font-size: 15px;
    font-weight: 600;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer mejorado */
.site-footer {
    background: var(--dark);
    color: var(--white);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
  display: flex;           /* Alinea horizontalmente */
  align-items: center;     /* Centra verticalmente la imagen y texto */
  gap: 8px;                /* Espacio pequeño entre imagen y texto */
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
}

.newsletter-form button {
    background: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0 20px;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-light);
    color: var(--white);
}

.newsletter-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .banner-carousel-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 1.5rem;
    }
    
    .floating-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button {
        padding: 12px 20px;
    }
    
    .chat-text {
        display: none;
    }
     h2, h3, h5 {
        font-size: 1.3rem !important;
    }

    .banner-slide img {
        object-fit: cover;
    }

    .banner-carousel-proyecto{
        max-width: 100% !important;
    }

    .hello {
        text-align: center !important;
    }
  
}

/* ==============================================
   FOOTER PROFESIONAL REDISEÑADO
   ============================================== */

/* Estilos generales del footer */
footer {
    background-color: #2c3e50; /* Color de fondo oscuro, puedes cambiarlo */
    color: #ecf0f1; /* Color de texto claro */
    padding: 40px 0 20px; /* 40px arriba, 0 a los lados, 20px abajo */
}

.footer-container {
    max-width: 1200px; /* Ancho máximo del contenido */
    margin: 0 auto; /* Centrar el contenido */
    padding: 0 20px; /* 20px de padding a los lados */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Estilos para cada columna */
.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 0 15px; /* 15px de padding a los lados de cada columna */
}

/* Estilos para el logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;            /* Igual al width para que sea cuadrada */
    margin-right: 10px;
    border-radius: 50%;      /* Hace la imagen completamente redonda */
    object-fit: cover;       /* Ajusta la imagen para llenar el espacio sin deformarse */
}


.footer-logo-text {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Estilos para los títulos */
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilos para los enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #3498db; /* Color al hacer hover */
}

.footer-link i {
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Estilos para la información de contacto */
.contact-info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info-icon {
    margin-right: 10px;
    margin-top: 3px;
    color: #3498db;
}

.contact-info-content {
    flex: 1;
}

/* Estilos para los enlaces sociales */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #ecf0f1;
    background-color: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #3498db;
}

/* Estilos para la parte inferior del footer */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  color: var(--electric-blue);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-info-content {
  color: var(--silver);
  line-height: 1.5;
}

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


li {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    max-width: 95% !important;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--electric-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: -20px;
}

.copyright {
  color: var(--silver);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  /* Footer: Centrar y mejorar disposición de todos los elementos */
  .footer-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 0 5px !important;
  }
  .footer-column {
    min-width: unset !important;
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 18px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    justify-content: center !important;
    margin-bottom: 12px !important;
  }
  .footer-logo img {
    margin-right: 0 !important;
    margin-bottom: 8px !important;
  }
  .footer-title {
    text-align: center !important;
    margin-bottom: 10px !important;
    padding-bottom: 6px !important;
  }
  .footer-links {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
  }
  .footer-links li {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 8px !important;
  }
  .footer-link {
    justify-content: center !important;
    width: 100% !important;
    font-size: 1.05rem !important;
    gap: 6px;
  }
  .footer-link i {
    margin-right: 4px !important;
  }
  .contact-info-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.2rem !important;
    margin-bottom: 1rem !important;
  }
  .contact-info-icon {
    margin: 0 0 4px 0 !important;
    display: block !important;
    font-size: 1.5rem !important;
  }
  .contact-info-content {
    text-align: center !important;
    margin: 0 !important;
    color: var(--silver) !important;
    font-size: 1rem !important;
  }
  .social-links {
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .footer-bottom {
    padding-top: 1.5rem !important;
    margin-top: 1rem !important;
    font-size: 0.95rem !important;
  }
  .copyright {
    font-size: 0.95rem !important;
    color: var(--silver) !important;
  }
}

/* ==============================================
   ESTILOS ESPECÍFICOS PARA CONTACTO
   ============================================== */

.contact-section {
    padding: 0 0 5rem;
    position: relative;
}

.contact-header {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.contact-book {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(-50px);
    background: white;
}

.contact-form {
    margin-top: 2rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(27, 115, 232, 0.1);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-features {
    margin-top: 2rem;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

.contact-cta {
    margin-top: 1.5rem;
}

.btn-outline {
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.btn-outline:hover {
    background: var(--electric-blue);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-book {
        flex-direction: column;
    }
    
    .left-page {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .contact-header {
        height: 200px;
        background-attachment: scroll;
    }
    
}


  /* SCROLL PERSONALIZADO */
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(10, 77, 104, 0.1);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0A4D68, #00D4FF);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00D4FF, #0A4D68);
  }

  /* EFECTO DE SCROLL SUAVE EN TODO EL DOCUMENTO */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Ajuste para navbar fixed */
  }

  /* ANIMACIONES AL HACER SCROLL */
  [data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
  }

  /* INDICADOR DE PROGRESO DE SCROLL */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF, #1B73E8);
    z-index: 9999;
    transition: width 0.1s ease;
  }

@media (max-width: 480px) {
  .preloader-logo {
    width: 120px !important;
    height: auto !important;
    margin-bottom: 18px !important;
  }
}

@media (max-width: 480px) {
  .footer-about p {
    text-align: justify !important;
  }
}

@media (max-width: 480px) {
  .banner-carousel img {
    object-fit: cover;
    transform: scale(0.96);
    transition: transform 0.3s;
  }
}
