:root {
    /* Colores corporativos */
    --negro: #000000;
    --gris-oscuro: #616060;
    --gris-azulado: #283546;
    --azul-corporativo: #1E6CA7;
    --azul-oscuro: #163762;
    --celeste: #3CC8F4;
    --dorado: #C0A344;
    --dorado-oscuro: #403A2F;
    --blanco: #FFFFFF;
    
    /* Espaciado y bordes */
    --border-radius: 10px;
    --border-radius-lg: 20px;
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9fafc;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--azul-oscuro);
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--azul-corporativo) 0%, var(--azul-oscuro) 100%);
    color: white;
    padding: 16px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--celeste) 0%, var(--azul-corporativo) 100%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    color: white;
}

.btn:hover:before {
    left: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-whatsapp:before {
    background: linear-gradient(135deg, #34b7f1 0%, #25D366 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 5px;
    background: linear-gradient(to right, var(--celeste), var(--dorado));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gris-oscuro);
    font-size: 1.1rem;
}

/* Animaciones de Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Header y Navegación - CON EFECTO DE CAMBIO AL SCROLL */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    /* Estado inicial: transparente y fusionado con hero */
    background-color: transparent;
    box-shadow: none;
    padding: 30px 0;
}

/* Estado cuando se hace scroll: sólido y separado */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

/* Logo inicial (transparente) */
.logo-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: white;
    transition: var(--transition);
}

.logo-text span {
    color: var(--celeste);
}

/* Logo cuando se hace scroll (sólido) */
header.scrolled .logo-icon {
    background: linear-gradient(135deg, var(--azul-corporativo) 0%, var(--celeste) 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(30, 108, 167, 0.2);
}

header.scrolled .logo-text {
    color: var(--negro);
}

header.scrolled .logo-text span {
    background: linear-gradient(135deg, var(--azul-corporativo) 0%, var(--celeste) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

/* Enlaces cuando se hace scroll */
header.scrolled nav a {
    color: var(--gris-azulado);
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--celeste), var(--dorado));
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover {
    color: var(--celeste);
}

nav a:hover:after {
    width: 100%;
}

.nav-whatsapp-btn {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: white;
}

/* Botón WhatsApp cuando se hace scroll */
header.scrolled .nav-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

header.scrolled .mobile-menu-btn {
    color: var(--azul-oscuro);
}

/* Hero Section CON IMAGEN DE FONDO */
.hero {
    background: 
        /* IMAGEN DE FONDO - REEMPLAZAR CON TU IMAGEN */
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('https://www.arqhys.com/wp-content/uploads/2012/12/edificio-de-oficinas-2.jpg')
        center/cover no-repeat;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Efectos de superposición para mejorar legibilidad */
.hero:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 200, 244, 0.15) 0%, rgba(60, 200, 244, 0) 70%);
    top: -250px;
    right: -100px;
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 163, 68, 0.1) 0%, rgba(192, 163, 68, 0) 70%);
    bottom: -150px;
    left: -100px;
    z-index: 0;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Indicador para reemplazar imagen de fondo */
.image-replace-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-replace-indicator i {
    margin-right: 8px;
    color: var(--celeste);
}

/* Sección Contadores */
.counters {
    background-color: white;
    padding: 80px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.counter-item {
    padding: 30px 20px;
    transition: var(--transition);
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--azul-corporativo) 0%, var(--celeste) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--gris-azulado);
    font-weight: 600;
}

/* Sección Nosotros */
.about {
    background-color: #f5f9ff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Sección Servicios Detallados */
.services-detailed {
    background: 
        /* Capa blanca semitransparente sobre la imagen */
        linear-gradient(rgba(253, 253, 253, 0.5), rgba(255, 255, 255, 0.92)),
        /* Tu imagen de fondo */
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8YnVpbGRpbmd8ZW58MHx8MHx8fDA%3D') center/cover no-repeat fixed;
    position: relative;
}

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

.service-detailed-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 5px solid var(--azul-corporativo);
    text-align: center;
    height: 100%;
}

.service-detailed-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
    border-top-color: var(--celeste);
}

.service-detailed-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    background: linear-gradient(135deg, var(--azul-corporativo) 0%, var(--celeste) 100%);
    box-shadow: 0 8px 20px rgba(30, 108, 167, 0.2);
}

.service-detailed-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--azul-oscuro);
}

/* Sección Convenios */
.convenios {
    background-color: #237FB8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.convenios:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 163, 68, 0.1) 0%, rgba(192, 163, 68, 0) 70%);
    top: -200px;
    right: -100px;
}

.convenios .section-title h2 {
    color: white;
}

.convenios .section-title h2:after {
    background: linear-gradient(to right, var(--dorado), var(--celeste));
}

.partners-slider {
    padding: 30px 0 60px;
}

.partner-logo {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.partner-logo:hover {
    background-color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background-color: var(--dorado);
}

/* Sección Testimonios */
.testimonials {
    background: 
        /* Capa blanca semitransparente sobre la imagen */
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.92)),
        /* Tu imagen de fondo */
        url('imagenes/EDIFICIO2.jpg') center/cover no-repeat fixed;
    position: relative;
}

/* Opcional: Capa para oscurecer/iluminar la imagen si es necesario */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 249, 255, 0.85); /* Ajusta este color y opacidad */
    z-index: -1;
}

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

.testimonials-slider {
    padding: 30px 10px 70px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(30, 108, 167, 0.1);
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
    border: 3px solid var(--celeste);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    margin-bottom: 5px;
    color: var(--azul-oscuro);
}

.client-details p {
    color: var(--gris-oscuro);
    font-size: 0.95rem;
}

.testimonials .swiper-pagination-bullet {
    background-color: rgba(40, 53, 70, 0.5);
}

.testimonials .swiper-pagination-bullet-active {
    background-color: var(--azul-corporativo);
}

/* Sección Contacto */
.contact {
    background-color: white;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--azul-corporativo);
    box-shadow: 0 0 0 3px rgba(30, 108, 167, 0.1);
    background-color: white;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    background: linear-gradient(135deg, var(--azul-corporativo) 0%, var(--celeste) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(30, 108, 167, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--negro) 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(to right, var(--celeste), var(--dorado));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--celeste);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Botones flotantes */
.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.float-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn.phone-btn {
    background: linear-gradient(135deg, var(--azul-corporativo) 0%, var(--celeste) 100%);
}

.float-btn .tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--azul-oscuro);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .counter-value {
        font-size: 3rem;
    }
    
    .hero {
        background: 
            linear-gradient(135deg, rgba(40, 53, 70, 0.9) 0%, rgba(22, 55, 98, 0.9) 100%),
            url('https://images.unsplash.com/photo-1487956382158-bb926046304a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80')
            center/cover no-repeat;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 25px;
        backdrop-filter: blur(10px);
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .float-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .image-replace-indicator {
        display: none;
    }
    
    /* Ajustes para menú móvil */
    header.scrolled nav ul {
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    header.scrolled nav a {
        color: var(--gris-azulado);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .counter-value {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .service-detailed-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    header {
        padding: 20px 0;
    }
    
    header.scrolled {
        padding: 10px 0;
    }
}
/* Color dorado específico para esas palabras */
.text-dorado {
    color: var(--dorado); /* #C0A344 - tu color corporativo */
    text-shadow: 0 2px 8px rgba(192, 163, 68, 0.3);
}

/* Opcional: Efecto brillante al pasar el mouse */
.text-dorado:hover {
    text-shadow: 0 2px 12px rgba(192, 163, 68, 0.5);
}

/* Para que todo el h1 mantenga su sombra original */
.hero h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Asegurar que las palabras mantengan sus colores */
.hero h1 span {
    display: inline-block;
}
.text-dorado {
    background: linear-gradient(135deg, #D4AF37 0%, #C0A344 50%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 8px rgba(216, 175, 55, 0.2);
    font-weight: 700;
}