/* Aplicar box-sizing globalmente para un manejo consistente del tamaño de los elementos */
* {
    box-sizing: border-box;
}

/* Estilos personalizados y variables de color de la marca */
:root {
    --brand-primary: #000000; /* Negro (para texto oscuro y fondos) */
    --brand-secondary: #d82783; /* Rosa Profundo (color principal de acento) */
    --brand-accent: #604a9e; /* Púrpura (color de acento secundario) */
    --brand-light: #f282a9; /* Rosa Claro (para fondos claros y elementos sutiles) */
    --brand-dark: #000000; /* Negro (igual que primary para elementos muy oscuros) */
    --brand-dark-text: var(--brand-primary); /* Texto oscuro, basado en el primario */
    
    /* Variables derivadas para mantener consistencia con la estructura existente */
    --brand-red-accent: var(--brand-accent); /* Usamos el púrpura como acento "rojo" */
    --brand-light-gray: var(--brand-light); /* Usamos el rosa claro como "gris claro" */
    --brand-darkest-blue: var(--brand-dark); /* Usamos el negro como "azul más oscuro" */
}

/* Asegura que html y body ocupen el 100% de la altura del viewport */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Aplica Flexbox al body para un "sticky footer" */
body {
    display: flex;
    flex-direction: column;
    font-family: 'Barlow', sans-serif;
    background-color: var(--brand-light); /* Fondo general con el nuevo rosa claro */
    color: var(--brand-dark-text);
    padding-bottom: 70px; /* Espacio para el footer */
    /* padding-top se ajusta dinámicamente con JavaScript */
}

/* Nueva regla para evitar el scroll horizontal cuando el menú móvil está activo */
body.no-scroll {
    overflow-x: hidden;
}

/* Estilo de fuente para títulos y elementos destacados */
h1, h2, h3, .font-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animación de Pulso Sutil para Botones */
@keyframes pulse-subtle {
    0% { transform: scale(1); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
    50% { transform: scale(1.03); box-shadow: 0 12px 25px rgba(0,0,0,0.4); }
    100% { transform: scale(1); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
}

/* Componentes Personalizados: Botones */
.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 1.5rem;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    animation: pulse-subtle 2.5s infinite ease-in-out;
}

.btn-primary {
    background-color: var(--brand-secondary); /* Rosa Profundo */
    color: white; /* Texto blanco para contraste */
    border: 2px solid var(--brand-secondary);
}
.btn-primary:hover {
    background-color: var(--brand-primary); /* Negro */
    color: var(--brand-secondary); /* Rosa Profundo */
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: none;
}

.btn-secondary {
    background-color: var(--brand-accent); /* Púrpura */
    color: white;
    border: 2px solid var(--brand-accent);
}
.btn-secondary:hover {
    filter: brightness(115%);
    animation: none;
}

/* Estilos para títulos y subtítulos de sección */
.section-title { font-size: 3rem; line-height: 1; text-align: center; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .section-title { font-size: 3.5rem; } }
@media (min-width: 768px) { .section-title { font-size: 4rem; } }
.section-subtitle { font-size: 1.2rem; line-height: 1.2; text-align: center; font-family: 'Barlow', sans-serif; font-weight: 900 !important; text-transform: uppercase; }
@media (min-width: 640px) { .section-subtitle { font-size: 1.5rem; } }

/* Esquemas de color para títulos y subtítulos */
.title-light { color: var(--brand-primary); } /* Negro */
.subtitle-light { color: var(--brand-accent); } /* Púrpura */
.title-dark { color: white; }
.subtitle-dark { color: var(--brand-secondary); } /* Rosa Profundo */

/* Estilos para campos de formulario */
.form-input {
    width: 100%;
    background-color: white !important;
    color: var(--brand-dark-text) !important;
    border: 2px solid #ccc;
    border-radius: 0.75rem; /* Aumentado para un look más suave */
    padding: 0.75rem 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.form-input::placeholder { color: #888; }
.form-input:focus {
    outline: none;
    border-color: var(--brand-secondary); /* Rosa Profundo */
    box-shadow: 0 0 0 3px rgba(216, 39, 131, 0.5); /* Sombra basada en el rosa secundario */
}

/* Estilo para la tarjeta de servicio */
.service-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.15), 0 6px 8px -2px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 12px 15px -5px rgba(0, 0, 0, 0.06);
}
.service-card .icon {
    font-size: 4.5rem;
    color: var(--brand-accent); /* Púrpura */
    margin-bottom: 1.5rem;
}
.service-card .title {
    font-size: 1.8rem;
    color: var(--brand-primary); /* Negro */
    font-weight: 900 !important;
    text-transform: uppercase;
    line-height: 1.8rem;
}
.service-card p {
    font-size: 1rem;
}

/* Estilo para las imágenes divisorias (si se usan) */
.section-divider-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 767px) {
    .section-divider-img {
        height: 250px;
    }
}

/* Clases de utilidad para Tailwind (actualizadas con los nuevos colores) */
.bg-brand-secondary { background-color: var(--brand-secondary); } /* Rosa Profundo */
.bg-brand-primary { background-color: var(--brand-primary); } /* Negro */
.text-brand-secondary { color: var(--brand-secondary); } /* Rosa Profundo */
.text-brand-primary { color: var(--brand-primary); } /* Negro */
.bg-brand-light { background-color: var(--brand-light); } /* Rosa Claro */
.text-brand-light { color: var(--brand-light); } /* Rosa Claro */
.bg-brand-accent { background-color: var(--brand-accent); } /* Púrpura */
.text-brand-accent { color: var(--brand-accent); } /* Púrpura */


/* Fondos de sección con imagen (usando placeholders por ahora) */
.hero-section-bg { 
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('img/TrueMomentsFlowers30.jpg'); 
    background-size: cover; 
    background-position: center; 
    color: white; 
}
.solution-section-bg { 
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('img/TrueMomentsFlowers31.jpg'); 
    background-size: cover; 
    background-position: center; 
    color: white; 
}
.why-choose-us-bg { 
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('img/TrueMomentsFlowers32.jpg'); 
    background-size: cover; 
    background-position: center; 
    color: white; 
}
.how-it-works-bg { 
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('img/TrueMomentsFlowers33.jpg'); 
    background-size: cover; 
    background-position: center; 
    color: white; 
}

/* --- ESTILOS PARA LA GALERÍA --- */
.gallery-container {
    display: flex;
    flex-direction: column; /* Por defecto en móvil, miniaturas arriba, imagen principal abajo */
    gap: 0.75rem; /* Espacio entre los elementos, ajustado para ser menor*/
}
@media (min-width: 768px) { /* A partir de pantallas medianas (md) */
    .gallery-container {
        flex-direction: row; /* En escritorio, miniaturas a la izquierda, imagen a la derecha */
        align-items: flex-start; /* Alinea arriba los elementos */
        gap: 0.75rem; /* Ajuste también para escritorio*/
    }
    .gallery-thumbnails-grid {
        order: 1; /* Mueve las miniaturas al principio (izquierda) */
        width: 30%; /* Ocupa un 30% del ancho */
        height: auto; /* Permite que la altura se ajuste al contenido */
    }
    .gallery-main-swiper { /* Usamos esta clase para el Swiper principal */
        order: 2; /* Mueve la imagen principal después (derecha) */
        width: 70%; /* Ocupa un 70% del ancho */
    }
}

/* Aseguramos que la imagen dentro de Swiper ocupe el 100% de su slide */
.swiper-slide img {
    width: 100%;
    height: 100%; /* Permite que la imagen dentro del slide ocupe la altura del slide */
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* La imagen principal del carrusel ahora será controlada por las clases de Swiper */
/* Eliminar o ajustar la regla .gallery-main-display img si ya no se usa directamente */
.gallery-main-display { /* Esta clase es ahora para el swiper-wrapper */
    display: flex; /* Asegura que los slides dentro se comporten como flex items */
    justify-content: center;
    align-items: center;
    height: 100%; /* Asegura que el wrapper tome la altura del swiper */
}

/* La altura para el contenedor del carrusel, si se desea un tamaño fijo */
.gallery-main-swiper {
    height: 500px; /* Altura de la imagen principal en móvil */
}
@media (min-width: 640px) { /* sm breakpoint */
    .gallery-main-swiper {
        height: 600px; /* Altura en sm */
    }
}
@media (min-width: 768px) { /* md breakpoint */
    .gallery-main-swiper {
        height: 800px; /* Altura en md */
    }
}


.gallery-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
    gap: 0.75rem; /* Espacio entre miniaturas */
    margin-top: 0;
    width: 100%; /* Asegura que ocupe todo el ancho disponible */
    height: auto; /* Asegura que la altura se ajuste al contenido */
}

@media (min-width: 768px) { /* A partir de pantallas medianas (md) */
    .gallery-thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Columnas automáticas */
        /* La altura ya está en auto */
    }
}
@media (min-width: 1024px) { /* A partir de pantallas grandes (lg) */
    .gallery-thumbnails-grid {
        grid-template-columns: repeat(5, 1fr); /* 5 columnas en pantallas grandes */
    }
}

.gallery-thumbnail-card {
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 140px; /* Altura fija para miniaturas */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1 / 1; /* Para que las miniaturas sean cuadradas */
}

.gallery-thumbnail-card img {
    width: 80%;
    height: 150%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.gallery-thumbnail-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
    border-color: var(--brand-accent); /* Púrpura */
}

.gallery-thumbnail-card.active {
    border-color: var(--brand-secondary); /* Rosa Profundo */
    box-shadow: 0 0 0 5px rgba(216, 39, 131, 0.9); /* Sombra basada en el rosa secundario */
    transform: scale(1.08);
}

/* Estilos de Swiper (controlan flechas y puntos) */
.swiper-button-prev,
.swiper-button-next {
    color: var(--brand-secondary); /* Color de las flechas */
    --swiper-navigation-size: 30px; /* Tamaño de las flechas */
    display: none; /* Ocultar en móvil por defecto (controlado por JS breakpoints también) */
    top: 50%;
    transform: translateY(-50%);
}
@media (min-width: 768px) { /* Mostrar flechas en desktop */
    .swiper-button-prev,
    .swiper-button-next {
        display: flex; /* Mostrar en desktop */
    }
}
.swiper-pagination {
    bottom: 0px !important; /* Ajusta la posición de los puntos para que no queden tan abajo */
}
.swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.4); /* Color de los puntos inactivos */
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--brand-secondary); /* Color del punto activo */
}


/* Tarjetas Por Qué Elegirnos */
.why-choose-card { 
    background: white; 
    border-radius: 0.75rem; 
    padding: 2rem; 
    text-align: center; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start; 
}
.why-choose-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15); 
}
.why-choose-card .icon { 
    font-size: 3.5rem; 
    color: var(--brand-secondary); /* Rosa Profundo */
    margin-bottom: 1rem; 
}
.why-choose-card .title { 
    font-size: 1.5rem; 
    color: var(--brand-primary); /* Negro */
    font-weight: 900 !important; 
    margin-bottom: 0.75rem; 
}
.why-choose-card p { 
    font-size: 0.95rem; 
    color: #555; 
    flex-grow: 1; 
}

/* Tarjetas de contacto */
.contact-info-section { 
    background-color: white; 
    color: var(--brand-dark-text); 
    padding: 6rem 1.5rem; 
    text-align: center; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); 
}
.contact-cards-container { 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    margin-top: 3rem; 
    justify-content: center; 
    align-items: center; 
}
@media (min-width: 768px) { 
    .contact-cards-container { flex-direction: row; } 
}
.contact-card { 
    background-color: white; 
    padding: 1rem 1.25rem; 
    border-radius: 1rem; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15); 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-start; 
    flex: 1; 
    max-width: 380px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; 
    border: 3px solid var(--brand-primary); /* Negro */
    text-align: left; 
}
.contact-card:hover { 
    transform: translateY(-5px) scale(1.01); 
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); 
    border-color: var(--brand-accent); /* Púrpura */
}
.contact-card .icon-large { 
    font-size: 3.5rem; 
    margin-right: 0.75rem; 
    line-height: 1; 
    flex-shrink: 0; 
    color: var(--brand-primary); /* Negro */
}
.contact-card .text-content { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    flex-grow: 1; 
}
.contact-card .contact-label { 
    font-size: 1.1rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 0.25rem; 
    color: var(--brand-primary); /* Negro */
}
.contact-card .contact-value { 
    font-size: 1.4rem; 
    font-weight: 900; 
    display: block; 
    text-decoration: none; 
    transition: color 0.3s ease; 
    color: var(--brand-accent); /* Púrpura */
}
.contact-card .contact-value:hover { 
    color: var(--brand-primary); /* Negro */
}

/* AJUSTE PARA EL CORREO ELECTRÓNICO LARGO */
.contact-card.email-card .contact-value {
    font-size: 1.15rem;  
    word-break: break-all;  
}

/* ESTILOS DEL FOOTER */
footer {
    background-color: var(--brand-dark); /* Negro */
    color: white;
    padding: 1.5rem 1.5rem;
    text-align: center;
}
footer .footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}
footer .footer-logo-container img {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}
footer .footer-logo-container .company-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-secondary); /* Rosa Profundo */
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}
footer .social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    transition: color 0.3s ease;
}
footer .social-links a:hover {
    color: var(--brand-secondary); /* Rosa Profundo */
}
footer .footer-copyright,
footer .footer-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}
@media (min-width: 768px) {
    footer .footer-logo-container { flex-direction: row; justify-content: center; gap: 1rem; }
    footer .footer-logo-container img { margin-bottom: 0; }
    footer .social-links { justify-content: center; }
}

/* Botón flotante y Modal */
#openQuoteModalDesktop { 
    position: fixed; 
    right: 0; 
    top: 50%; 
    transform: translateY(-50%); 
    background-color: var(--brand-accent); /* Púrpura */
    color: white; 
    padding: 1.5rem 0.75rem; 
    border-radius: 0.75rem 0 0 0.75rem; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
    z-index: 1000; 
    cursor: pointer; 
    border: none; 
    outline: none; 
    display: none; 
}
@media (min-width: 768px) { 
    #openQuoteModalDesktop { display: flex; flex-direction: column; align-items: center; justify-content: center; } 
}
#openQuoteModalDesktop span { 
    font-size: 1.25rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    writing-mode: vertical-lr; 
    text-orientation: mixed; 
    white-space: nowrap; 
    transform: rotate(180deg); 
}
#openQuoteModalDesktop i { 
    font-size: 2.5rem; 
    margin-top: 0.5rem; 
}
#openQuoteModalDesktop:hover { 
    transform: translateY(-50%) translateX(-5px) scale(1.02); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.4); 
}

#quoteModal { 
    position: fixed; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0; 
    background-color: rgba(0, 0, 0, 0.75); 
    display: flex; 
    justify-content: flex-end; 
    align-items: stretch; 
    z-index: 1001; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0.3s ease; 
}
#quoteModal.active { 
    opacity: 1; 
    visibility: visible; 
}
#quoteModalContent { 
    background-color: white; 
    padding: 2.5rem; 
    border-radius: 0; 
    box-shadow: -15px 0 30px rgba(0, 0, 0, 0.4); 
    width: 50vw; 
    min-width: 450px; 
    height: 100%; 
    position: relative; 
    transform: translateX(100%); 
    transition: transform 0.3s ease-out; 
    display: flex; 
    flex-direction: column; 
    overflow-y: auto; 
}
#quoteModal.active #quoteModalContent { 
    transform: translateX(0); 
}
@media (max-width: 768px) { 
    #quoteModalContent { 
        min-width: 100%; 
        width: 100vw; 
        border-radius: 0; 
        position: fixed; 
        bottom: 0; 
        left: 0; 
        right: 0; 
        height: 100%; 
        max-height: calc(100vh - 95px); 
        transform: translateY(100%); 
        box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.4); 
        padding: 1.5rem; 
        box-sizing: border-box; 
    } 
    #quoteModal.active #quoteModalContent { 
        transform: translateY(0); 
    } 
    #quoteModal { 
        align-items: flex-end; 
        justify-content: center; 
    } 
    #contact-form-modal { 
        flex-grow: 1; 
        overflow-y: auto; 
        -webkit-overflow-scrolling: touch; 
        padding-bottom: 1rem; 
    } 
}
#closeQuoteModal { 
    position: absolute; 
    top: 1rem; 
    right: 1.2rem; 
    font-size: 2.5rem; 
    font-weight: bold; 
    color: #888; 
    cursor: pointer; 
    transition: color 0.2s ease; 
}
#closeQuoteModal:hover { 
    color: #333; 
}
header nav ul li a:hover { 
    color: var(--brand-secondary) !important; /* Rosa Profundo */
}

/* Menú Móvil */
.mobile-menu-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.75); 
    z-index: 1000; 
    display: none; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}
.mobile-menu-overlay.active { 
    display: block; 
    opacity: 1; 
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw; 
    max-width: 100vw; 
    height: 100%;
    background-color: var(--brand-primary); /* Negro */
    color: white;
    z-index: 1001;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-out;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
}
.mobile-menu.active { 
    left: 0; 
}
.mobile-menu-header { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding-bottom: 1.5rem; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    margin-bottom: 1.5rem; 
}
.mobile-menu-header img { 
    width: 80%; 
    max-width: 250px; 
    height: auto; 
    object-fit: contain; 
    margin-bottom: 0.75rem; 
}
.mobile-menu-nav ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    flex-grow: 1; 
}
.mobile-menu-nav li { 
    margin-bottom: 1rem; 
}
.mobile-menu-nav a { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    color: white; 
    font-size: 1.3rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    padding: 0.5rem 0; 
    transition: color 0.2s ease; 
}
.mobile-menu-nav a:hover { 
    color: var(--brand-secondary); /* Rosa Profundo */
}
.mobile-menu-footer { 
    padding-top: 1.5rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    text-align: center; 
    font-size: 0.85rem; 
    color: rgba(255, 255, 255, 0.7); 
}
.hamburger-icon {
    display: block;
    cursor: pointer;
    font-size: 2.5rem;
    color: var(--brand-primary); /* Negro */
    margin-left: 10px;
    padding: 0.5rem;
    transition: color 0.2s ease;
}
.hamburger-icon:hover { 
    color: var(--brand-accent); /* Púrpura */
}
.btn-mobile-header { 
    background-color: var(--brand-accent); /* Púrpura */
    color: white; 
    padding: 0.5rem 1rem; 
    border-radius: 0.5rem; 
    font-weight: 700; 
    font-size: 1rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    text-transform: uppercase; 
    transition: all 0.2s ease; 
    border: none; 
    outline: none; 
    animation: none; 
}
.btn-mobile-header:hover { 
    background-color: var(--brand-primary); /* Negro */
    color: var(--brand-secondary); /* Rosa Profundo */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
}
@media (min-width: 768px) { 
    .hamburger-icon, .btn-mobile-header { display: none; } 
}

/* Sticky Navbar para escritorio */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--brand-primary); /* Fondo semitransparente al hacer scroll*/
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sticky-nav nav {
    background-color: var(--brand-primary); /* La barra de navegación principal sigue siendo negra*/
}

/* Botón fijo inferior para móvil */
#fixedBottomQuoteBtn { 
    background-color: var(--brand-secondary); /* Rosa Profundo */
    color: white; 
    padding: 1rem 0; 
    font-weight: 900; 
    font-size: 1.25rem; 
    text-transform: uppercase; 
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2); 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    z-index: 50; 
    display: none; 
}
@media (max-width: 767px) { 
    #fixedBottomQuoteBtn { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        gap: 0.75rem; 
    } 
}
#fixedBottomQuoteBtn:hover { 
    background-color: var(--brand-primary); /* Negro */
    color: var(--brand-secondary); /* Rosa Profundo */
}

/* Estilo para los números de contacto en el encabezado de escritorio */
.header-contact-numbers {
    display: flex;
    flex-direction: row; 
    gap: 1.5rem; 
    align-items: center;
}

/* Nuevo estilo para service-card-pro, si se usa */
.service-card-pro {
    background-color: var(--brand-primary); /* Fondo oscuro para contraste con el texto claro */
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-pro .absolute {
    background-color: rgba(0, 0, 0, 0.75); /* Oscurece la imagen de fondo */
}

.service-card-pro .relative {
    color: white; /* Texto blanco sobre fondo oscuro */
}

.service-card-pro .text-yellow-400 {
    color: var(--brand-secondary); /* Iconos en rosa profundo */
}

.service-card-pro .font-extrabold {
    color: white; /* Títulos en blanco */
}

.service-card-pro ul span {
    color: rgba(255, 255, 255, 0.9); /* Texto de lista más claro */
}

.service-card-pro .bg-yellow-400 {
    background-color: var(--brand-secondary); /* Botón en rosa profundo */
    color: var(--brand-primary); /* Texto del botón en negro */
}

.service-card-pro .hover\\:bg-yellow-300:hover {
    background-color: var(--brand-accent); /* Hover del botón en púrpura */
    color: white;
}