:root {
    --primary-green: #77BD00;
    --secondary-green: #BED95F;
    --light-green: #EAF2CE;
    --dark-brown: #3E180C;
    --medium-brown: #8F5A39;
    --white: #FFFFFF;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-brown);
    background-color: var(--light-green);
    padding-top: 70px; /* Espacio para el navbar fixed */
}

.brand-font {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: var(--dark-brown);
}

/* Títulos estandarizados como el hero */
.section-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--dark-brown);
}

/* --- Navbar Styles --- */
.navbar-custom {
    background-color: var(--white) !important;
    transition: all 0.3s ease;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-custom.expanded {
    padding: 20px 0;
    background-color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Espacio para logo en navbar */
.navbar-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-custom.expanded .navbar-logo {
    height: 60px;
}

/* Estilos de enlaces principales */
.nav-link-custom {
    color: var(--dark-brown) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-custom:hover {
    color: var(--primary-green) !important;
}

/* Efecto de línea de subrayado al hacer hover */
.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* --- Navbar Dropdown Styles --- */
.navbar .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin-top: 10px;
}

.navbar .dropdown-item {
    color: var(--dark-brown);
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.navbar .dropdown-toggle::after {
    display: none; /* Ocultar flecha por defecto de Bootstrap */
}

/* --- Solo Hover para Desktop (≥992px) - Corregido --- */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: translateY(-10px);
        display: block; 
    }
    
    .navbar .nav-item.dropdown:hover .dropdown-menu,
    .navbar .nav-item.dropdown.show .dropdown-menu { /* Añadido .show para clic en desktop */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        /*display: block; /* Solo se fuerza el display: block al mostrarlo */
    }
    
    /* Mantener abierto cuando el mouse está en el dropdown */
    .navbar .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        /*display: block;*/
    }
}

/* --- Comportamiento Normal para Tablet y Móvil (≤991.98px) - Corregido --- */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        /* Resetear propiedades de hover de desktop para que Bootstrap las maneje */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        
        /* Estilos específicos de móvil */
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        border: none;
        background: var(--light-green);
    }
    
    /* El comportamiento de mostrar/ocultar lo maneja el JS de Bootstrap (no redefinir .show) */
    
    .navbar .dropdown-item {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .navbar .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar .dropdown-item:hover {
        background: var(--secondary-green);
    }
}

/* --- Active States --- */
.navbar .nav-link-custom.active {
    color: var(--primary-green) !important;
}

.navbar .nav-link-custom.active::after {
    width: 100% !important;
    background-color: var(--primary-green);
}

.navbar .dropdown-item.active {
    background-color: var(--light-green) !important;
    color: var(--primary-green) !important;
    font-weight: 600;
}




/* Hero Section - Reestructurado */
.hero-section {
    background: var(--secondary-green);
    background-image: url('../images/hero-background2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    overflow: visible;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 242, 206, 0.4);
    z-index: 1;
}

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

/* Layout de 2 columnas */
.hero-two-columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* Columna izquierda - Texto y botones */
.hero-text-content {
    flex: 1;
    max-width: 55%;
}

.hero-text-content .display-4 {
    font-size: 3rem;
    color: var(--dark-brown);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-content .lead {
    color: var(--medium-brown);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Coverage badges */
.hero-text-content .coverage-badge {
    background: var(--medium-brown);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin: 5px;
    display: inline-block;
}

/* Botones */
.hero-text-content .btn-primary-custom {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-text-content .btn-primary-custom:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

.hero-text-content .btn-outline-dark {
    border-color: var(--medium-brown);
    color: var(--medium-brown);
    background-color: transparent;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.hero-text-content .btn-outline-dark:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-text-content .phone-icon {
    color: var(--medium-brown);
    margin-right: 8px;
    transition: color 0.3s ease;
}

.hero-text-content .btn-outline-dark:hover .phone-icon {
    color: var(--white);
}

.hero-text-content .text-muted {
    color: var(--medium-brown) !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Columna derecha - Imagen */
.hero-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 45%;
}

.hero-image-container {
    width: 100%;
    max-width: 450px;
    overflow: visible;
    background: transparent;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-text-content .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 50px 0;
        min-height: auto;
    }
    
    .hero-two-columns {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-text-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-image-content {
        max-width: 100%;
        order: -1;
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 350px;
    }
    
    .hero-text-content .display-4 {
        font-size: 2.3rem;
    }
    
    .hero-text-content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-two-columns {
        gap: 2rem;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .hero-text-content .display-4 {
        font-size: 2rem;
    }
    
    .hero-text-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-text-content .btn-primary-custom,
    .hero-text-content .btn-outline-dark {
        padding: 10px 25px;
        font-size: 0.95rem;
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-two-columns {
        gap: 1.5rem;
    }
    
    .hero-image-container {
        max-width: 250px;
    }
    
    .hero-text-content .display-4 {
        font-size: 1.8rem;
    }
    
    .hero-text-content .lead {
        font-size: 1rem;
    }
    
    .coverage-badge {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}

.coat-skin-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}


/* About Section con imagen */
.about-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

/* Línea verde debajo de títulos de sección */
.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 20px 0 30px 0;
    border-radius: 2px;
}

/* Ajustar márgenes para secciones con línea */
.about-section .section-title,
.services-section .section-title,
.why-us-section .section-title,
.contact-section .section-title {
    margin-bottom: 10px !important;
}

/* About Text Styles */
.about-text {
    color: var(--medium-brown);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

/* About Features */
.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

/* About Section con imagen */
.about-image-placeholder {
    height: 500px; /* Aumentado de 400px a 500px */
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden; /* Para que la imagen no se salga del borde */
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Para que la imagen cubra todo el espacio sin distorsión */
    border-radius: 20px;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Efectos hover manteniendo la transparencia */
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(119, 189, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-card h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--dark-brown);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Service Images */
/* Service Images - Cuadradas */
.service-image-placeholder {
    height: 150px;
    width: 150px;
    background: var(--light-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    margin: 0 auto 1rem auto; /* Centrado y margen inferior */
}

.service-card:hover .service-image-placeholder {
    background: var(--secondary-green);
    transform: scale(1.05);
}

/* Service Images - Cuadradas perfectas 1:1 */
.service-image-placeholder {
    height: 150px;
    width: 150px;
    background: var(--light-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    margin: 0 auto 1rem auto;
    overflow: hidden; /* Para que las imágenes no se salgan del borde redondeado */
}

/* Cuando insertes la imagen real, usarás esta clase */
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto hace que la imagen cubra el espacio sin distorsión */
    border-radius: 15px;
}

.service-card:hover .service-image-placeholder {
    background: var(--secondary-green);
    transform: scale(1.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/index/background_services.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
    border-radius: 15px;
}





/* Botón Outline para servicios */
.btn-outline-primary-custom {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 25px;
    margin-top: 10px;
}

.btn-outline-primary-custom:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Benefit Items */
.benefit-item {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-green);
}

.benefit-item h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--dark-brown);
}

/* Why Us Image */
.why-us-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.why-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Why Choose Us Section - Estilos corregidos */
.benefit-item {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-green);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--medium-brown);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive para Why Us */
@media (max-width: 768px) {
    .why-us-image-placeholder {
        height: 300px;
        font-size: 3rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 15px;
        gap: 12px;
    }
    
    .benefit-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon {
        font-size: 1.1rem;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-image-placeholder {
    height: 250px;
    background: var(--light-green);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image-placeholder {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(119, 189, 0, 0.2);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Instruction */
.gallery-instruction {
    color: var(--medium-brown);
    font-size: 1rem;
    font-style: italic;
    padding: 10px 20px;
    background: var(--light-green);
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 0;
}




/* Before & After Gallery */
.before-after-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-comparison {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.before-label {
    top: 10px;
    left: 10px;
    background: rgba(62, 24, 12, 0.8);
    color: var(--white);
}

.after-label {
    bottom: 10px;
    right: 10px;
    background: rgba(119, 189, 0, 0.9);
    color: var(--white);
    opacity: 0;
}

/* Efecto hover para mostrar la transformación */
.before-after-container:hover .after-image {
    opacity: 1;
}

.before-after-container:hover .after-label {
    opacity: 1;
}

.before-after-container:hover .before-label {
    opacity: 0;
}

.before-after-container .after-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}



/* Contact Section - 3 columns layout */
@media (max-width: 768px) {
    .contact-section .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Section Backgrounds */
.about-section,
.why-us-section {
    background: var(--white);
}

/* Contact Icons */
.contact-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c41;
    color: var(--white);
    transform: scale(1.1);
}

/* Footer */
.footer-custom {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 40px 0 20px;
}

/* Espacio para logo en footer */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-divider {
    background-color: var(--medium-brown);
    margin: 20px 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--secondary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Coverage Badges */
.coverage-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin: 5px;
    display: inline-block;
}

/* Logo Placeholders */
.navbar-brand {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-left: 20px; /* Rodado un poco al medio */
}

.navbar-custom.expanded .navbar-brand {
    transform: scale(1.05);
}

.logo-placeholder {
    width: 180px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
}

.footer-logo-placeholder {
    width: 200px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

/* Footer Mobile Optimization */
@media (max-width: 768px) {
    .footer-custom {
        padding: 30px 0 15px;
    }
    
    .footer-custom .row > div {
        margin-bottom: 25px;
    }
    
    .footer-custom .row > div:last-child {
        margin-bottom: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info p {
        margin-bottom: 8px;
    }
    
    .footer-logo-placeholder {
        margin: 0 auto;
    }
}

/* Asegurar que todo esté centrado en móviles */
@media (max-width: 576px) {
    .footer-custom .text-md-start,
    .footer-custom .text-md-end {
        text-align: center !important;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}




/* SUBPAGINA About US */

/* About Us Page Specific Styles */

/* Hero más pequeño para subpáginas */
/* About Us Hero */
/* Hero Section Reutilizable con Imagen en Centro */
.about-hero {
    padding: 100px 0 50px;
    min-height: 450px;
    background: var(--secondary-green);
    background-image: url('../images/hero-background2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 242, 206, 0.2); /* light-green con opacidad */
    z-index: 1;
}





/* About Us Hero - Mismo tamaño que otras subpáginas */
/* About Us Hero - Con background */
.about-hero.about-us-hero {
    padding: 120px 0 60px;
    min-height: 400px;
    background: var(--secondary-green);
    background-image: url('../images/hero-background1.jpeg'); /* Misma imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero.about-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 242, 206, 0.3); /* Mismo overlay */
    z-index: 1;
}

.about-hero.about-us-hero .container {
    position: relative;
}

.about-hero.about-us-hero .about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 280px; /* Misma altura que otras subpáginas */
}

.about-hero.about-us-hero .hero-text-content {
    flex: 1;
    max-width: 55%;
}

.about-hero.about-us-hero .hero-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 45%;
}

.about-hero.about-us-hero .hero-png-container {
    height: 100%;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-hero.about-us-hero .hero-png-image {
    height: 100%;
    width: auto;
    max-height: 300px;
    object-fit: contain;
}

.about-hero.about-us-hero .display-5 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.about-hero.about-us-hero .lead {
    color: var(--medium-brown);
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.about-hero.about-us-hero .btn-primary-custom {
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Responsive - Mantener mismo comportamiento que otras subpáginas */
@media (max-width: 992px) {
    .about-hero.about-us-hero .about-hero-content {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .about-hero.about-us-hero .hero-text-content {
        max-width: 100%;
        order: 1;
    }
    
    .about-hero.about-us-hero .hero-image-content {
        max-width: 100%;
        justify-content: center;
        order: 2;
        margin-top: 2rem;
    }
    
    .about-hero.about-us-hero .hero-png-container {
        max-height: 250px;
        justify-content: center;
    }
    
    .about-hero.about-us-hero .hero-png-image {
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .about-hero.about-us-hero {
        padding: 100px 0 40px;
        min-height: 350px;
    }
    
    .about-hero.about-us-hero .display-5 {
        font-size: 2rem;
    }
    
    .about-hero.about-us-hero .lead {
        font-size: 1.1rem;
    }
    
    .about-hero.about-us-hero .hero-png-container {
        max-height: 200px;
    }
    
    .about-hero.about-us-hero .hero-png-image {
        max-height: 200px;
    }
}

@media (max-width: 576px) {
    .about-hero.about-us-hero {
        padding: 90px 0 30px;
        min-height: 300px;
    }
    
    .about-hero.about-us-hero .display-5 {
        font-size: 1.75rem;
    }
    
    .about-hero.about-us-hero .lead {
        font-size: 1rem;
    }
    
    .about-hero.about-us-hero .hero-png-container {
        max-height: 180px;
    }
    
    .about-hero.about-us-hero .hero-png-image {
        max-height: 180px;
    }
    
    .about-hero.about-us-hero .btn-primary-custom {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* ... el resto del CSS igual pero con .about-us-hero ... */

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

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text-left,
.hero-text-right {
    flex: 1;
    text-align: center;

}

.hero-image-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-pet-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--light-green);
}

.hero-pet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-content h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.hero-text-content p {
    color: var(--dark-brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.hero-text-content .btn-primary-custom {
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 25px;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-hero-content {
        gap: 2rem;
    }
    
    .hero-pet-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .about-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-text-left,
    .hero-text-right {
        order: 2;
    }
    
    .hero-image-center {
        order: 1;
    }
    
    .hero-pet-container {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 90px 0 40px;
        min-height: 400px;
    }
    
    .hero-text-content h3 {
        font-size: 1.3rem;
    }
    
    .hero-pet-container {
        width: 200px;
        height: 200px;
        border-width: 5px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 80px 0 30px;
        min-height: 350px;
    }
    
    .hero-text-content h3 {
        font-size: 1.2rem;
    }
    
    .hero-pet-container {
        width: 180px;
        height: 180px;
        border-width: 4px;
    }
    
    .hero-text-content p {
        font-size: 0.9rem;
    }
}


/* Purpose Section */
.purpose-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.mission-card {
    background: var(--light-green);
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

/* Vision Section */
.vision-card {
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.vision-icon {
    font-size: 3rem;
    color: var(--primary-green);
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(119, 189, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
}

/* Mobile Experience Section */
.mobile-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--medium-brown);
}

.cta-button {
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 40px;
        min-height: 280px;
    }
    
    .about-hero .display-5 {
        font-size: 2rem;
    }
    
    .purpose-image-placeholder,
    .mobile-image-placeholder {
        height: 300px;
        font-size: 3rem;
    }
}



/* Dog Grooming Page Styles */
.service-icon-large {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.included-service {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-green);
}

.included-service:last-child {
    border-bottom: none;
}

.service-check {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.2rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.package-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.package-card.featured .package-header {
    background: var(--primary-green);
    color: white;
}

.package-header {
    background: var(--light-green);
    margin: -30px -30px 25px -30px;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

/* Responsive para package cards */
@media (max-width: 768px) {
    .package-card.featured {
        transform: none;
    }
    
    .package-card {
        margin-bottom: 2rem;
    }
}

/* Dog Grooming Page Styles */
.care-image-placeholder,
.sanitary-image-placeholder,
.fullgrooming-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Dog & Puppy Grooming Specific Styles */
.puppy-image-placeholder,
.adult-dog-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .puppy-image-placeholder,
    .adult-dog-image-placeholder {
        height: 300px;
        font-size: 3rem;
        margin-top: 2rem;
    }
}

.service-list {
    margin-top: 1.5rem;
}

.care-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.care-features .feature-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .care-image-placeholder,
    .sanitary-image-placeholder,
    .fullgrooming-image-placeholder {
        height: 300px;
        font-size: 3rem;
        margin-top: 2rem;
    }
    
    .care-features .feature-item {
        margin-bottom: 1.5rem;
    }
}




/* Cat Grooming Specific Styles */
.breed-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.breed-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(119, 189, 0, 0.15);
}



/* Puppy Grooming Specific Styles */
.time-badge .badge {
    border-radius: 25px;
    font-weight: 600;
}

.age-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--light-green);
    height: 100%;
}

.age-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(119, 189, 0, 0.15);
}

.age-badge {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.difference-features .feature-icon {
    color: var(--primary-green);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-list .included-service {
    align-items: flex-start;
    padding: 15px 0;
}

.service-list .included-service .service-check {
    margin-top: 3px;
}


/* Health & Wellness Specific Styles */
.health-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.health-features .feature-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.importance-card {
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    text-align: center;
}

.importance-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.treatment-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(119, 189, 0, 0.15);
}

.treatment-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.dental-image-placeholder,
.hygiene-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dental-image-placeholder,
    .hygiene-image-placeholder {
        height: 300px;
        font-size: 3rem;
        margin-top: 2rem;
    }
}


/* Pet Boarding Specific Styles */
.boarding-image-placeholder,
.accommodation-image-placeholder {
    height: 400px;
    background: var(--secondary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.safety-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(119, 189, 0, 0.15);
}

.safety-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.routine-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--light-green);
    height: 100%;
}

.routine-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.routine-time {
    background: var(--primary-green);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    height: 100%;
}

.trust-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.trust-features .feature-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .boarding-image-placeholder,
    .accommodation-image-placeholder {
        height: 300px;
        font-size: 3rem;
        margin-top: 2rem;
    }
    
    .routine-card {
        margin-bottom: 1rem;
    }
}