/* Variables para colores */
:root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
}

body {
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Estilos del encabezado */
header {
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Estilos del logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001; /* Para que estÃ¯Â¿Â½ por encima del menÃ¯Â¿Â½ mÃ¯Â¿Â½vil */
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px; /* TamaÃ¯Â¿Â½o reducido para igualarlo mejor al texto */
    width: auto;
    object-fit: contain;
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contenedor de navegaciÃƒÂ³n */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* A linear todo hacia la derecha como se ve en la captura */
    flex-grow: 1;
    margin-left: 2rem;
}

/* Estilos de los enlaces de navegaciÃƒÂ³n */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a::after { content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* BotÃƒÂ³n de contacto especial */
.contact-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-links li a.contact-btn::after {
    display: none;
}

/* Estilos de la barra de bÃƒÂºsqueda */
.search-form {
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
    margin-left: 1.5rem;
}

.search-form:focus-within {
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
    border-color: var(--primary-color);
}

.search-form input {
    border: none;
    outline: none;
    background: transparent;
    padding: 0.5rem;
    font-size: 0.9rem;
    width: 180px;
}

.search-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    transition: var(--transition);
}

.search-form button:hover {
    color: var(--primary-color);
}

/* BotÃƒÂ³n de hamburguesa para mÃƒÂ³vil */




/* Media queries para diseÃƒÂ±o responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .search-form input {
        width: 150px;
    }
}


.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; z-index: 10001; width: 50px; height: 50px; padding: 10px; position: relative; }
.hamburger-bar { display: block; width: 30px; height: 4px; margin: 4px auto; flex-shrink: 0; background-color: #4CAF50 !important; transition: all 0.3s ease; border-radius: 2px; opacity: 1; }

@media (max-width: 768px) {
.nav-toggle { display: flex !important; flex-direction: column; align-items: center; justify-content: center; z-index: 100000 !important; visibility: visible !important; padding: 10px !important; border-radius: 5px; border: none !important; background-color: transparent !important; margin-left: auto; }
.nav-container { position: fixed; display: flex !important; top: 0; left: 0; width: 100%; height: 100vh; background-color: #f9fdfa; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transform: translateX(100%); transition: transform 0.4s ease; margin-left: 0; z-index: 1000; visibility: hidden; }
.navbar.nav-active .nav-container, .nav-active .nav-container { transform: translateX(0); visibility: visible; }
.nav-links { display: flex !important; flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; padding: 0; margin: 0; }
.nav-links li { width: 100%; text-align: center; }
.nav-links li a { font-size: 1.5rem; padding: 0.8rem 0; display: block; color: #333333 !important; font-weight: bold; }
.search-form { margin: 1.5rem 0 0 0; width: 80%; max-width: 300px; }
.search-form input { width: 100%; }
.nav-active .hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-active .hamburger-bar:nth-child(2) { opacity: 0 !important; }
.nav-active .hamburger-bar:nth-child(3) { transform: translateY(-16px) rotate(-45deg); }
body.menu-open { overflow: hidden; }
}
.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a::before { content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

/* Formulario de newsletter */
.footer-newsletter p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form .submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Iconos sociales */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Parte inferior del footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.legal-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-links li a {
    color: #bdc3c7;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links li a:hover {
    color: var(--primary-color);
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Elemento decorativo de hoja */
.footer-brand::before {
    content: '';
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Media queries */
@media (max-width: 992px) {
    .footer-main {
        gap: 3rem 1.5rem;
    }
    
    .footer-column {
        flex-basis: calc(50% - 1.5rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-column {
        flex-basis: 100%;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .footer-main {
        padding-bottom: 1rem;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

/* Estilos para la pÃƒÂ¡gina de inicio - JardinerÃƒÂ­a */

/* Variables adicionales especÃƒÂ­ficas para la pÃƒÂ¡gina de inicio */
:root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}

/* Estilos generales */
.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--text-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after { content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 0;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.clear {
    clear: both;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-bottom: 4rem;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* SecciÃƒÂ³n de Servicios */
.services-section {
    padding: 4rem 2rem;
    background-color: white;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: calc(var(--card-radius) - 5px);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* SecciÃƒÂ³n de Provincias */
.provinces-section {
    padding: 4rem 2rem;
    background-color: var(--primary-light);
    margin-bottom: 4rem;
}

.provinces-container {
    max-width: 1200px;
    margin: 0 auto;
}

.provinces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.provinces-grid li {
    text-align: center;
}

.provinces-grid li a {
    display: block;
    padding: 0.7rem;
    background-color: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.provinces-grid li a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* SecciÃƒÂ³n Por quÃƒÂ© elegirnos */
.why-us-section {
    padding: 4rem 2rem;
    background-color: white;
    margin-bottom: 4rem;
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.why-us-text {
    flex: 1;
}

.why-us-image {
    flex: 1;
    min-height: 400px;
}

.why-us-text h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
}

.why-us-text h2::after { content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.benefit-content h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    border-radius: var(--card-radius);
}

.gardener-image {
    min-height: 400px;
}

/* SecciÃƒÂ³n de servicios adicionales */
.additional-services-section {
    padding: 4rem 2rem;
    background-color: var(--primary-light);
    margin-bottom: 4rem;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.additional-service {
    position: relative;
    height: 220px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.additional-service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.additional-service:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    color: white;
    text-align: center;
}

.service-overlay h3 {
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* SecciÃƒÂ³n de Blog */
.blog-section {
    padding: 4rem 2rem;
    background-color: var(--primary-light);
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-placeholder {
    height: 200px;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-card-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--card-radius);
}

/* SecciÃƒÂ³n de Testimonios */
.testimonials-section {
    padding: 4rem 2rem;
    background-color: white;
    margin-bottom: 4rem;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.testimonial-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-dark);
    font-family: Georgia, serif;
    opacity: 0.5;
}

.testimonial-content p {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .why-us-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .why-us-image {
        order: -1;
        min-height: 300px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.3rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .additional-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .provinces-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .why-us-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    :root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .cta-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .services-grid,
    .blog-grid,
    .provinces-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-service {
        height: 180px;
    }
    
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial {
        width: 100%;
    }
    
    .service-image {
        height: 180px;
    }
    
    :root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}
}

/* Posts */
/* Estilos para la pÃƒÂ¡gina de post individual */

/* Variables para los posts */
:root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}

/* Estructura bÃƒÂ¡sica del artÃƒÂ­culo */
.post-container {
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
}

/* Hero Section */
.post-hero {
    width: 100%;
    margin-bottom: 2rem;
}

.post-hero-image {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 90%;
    max-width: 1000px;
}

.post-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-headings);
    line-height: 1.2;
}

.post-hero-content.no-image {
    color: var(--text-color);
    margin: 2rem auto;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.post-hero-content.no-image h1 {
    text-shadow: none;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-top: 1rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--post-transition);
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
}

.breadcrumb-current {
    opacity: 0.8;
}

.post-hero-content.no-image .breadcrumb a {
    color: var(--primary-color);
}

.post-hero-content.no-image .breadcrumb a:hover {
    color: var(--primary-color);
}

.post-hero-content.no-image .breadcrumb-current {
    color: var(--text-light);
}

/* Contenedor principal del contenido */
.post-content-wrapper {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    padding: 0 0 3rem;
}

/* Contenido principal */
.post-main-content {
    background-color: var(--bg-color);
    border-radius: var(--post-radius);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

/* Metadatos del post */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-categories, .post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-categories i, .post-tags i {
    color: var(--primary-color);
}

.post-categories a, .post-tags a {
    color: var(--text-light);
    text-decoration: none;
    background-color: var(--bg-light);
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    transition: var(--post-transition);
}

.post-categories a:hover, .post-tags a:hover {
    color: white;
    background-color: var(--primary-color);
}

/* ÃƒÂndice de contenido */
.table-of-contents {
    background-color: var(--bg-light);
    border-radius: var(--post-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.table-of-contents h2, .table-of-contents h3, .table-of-contents h4 {
    color: var(--text-color);
    margin-top: 0;
}

.table-of-contents ul {
    margin-bottom: 0;
}

.table-of-contents a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--post-transition);
}

.table-of-contents a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contenido del post */
.post-content {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.post-content h2, .post-content h3, .post-content h4 {
    font-family: var(--font-headings);
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content h4 {
    font-size: 1.25rem;
}

.post-content p, .post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-color);
    transition: var(--post-transition);
}

.post-content a:hover {
    color: var(--primary-color);
    border-bottom-style: solid;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-left: 0;
    color: var(--text-light);
    font-style: italic;
}

.post-content code {
    background-color: var(--bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.post-content pre {
    background-color: #333;
    color: #f8f8f8;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--post-radius);
}

.social-share span {
    font-weight: 600;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--post-transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.share-buttons a:hover {
    transform: translateY(-3px);
    color: white;
}

.share-buttons a[href*="facebook"] {
    color: #1877f2;
}

.share-buttons a[href*="twitter"] {
    color: #1da1f2;
}

.share-buttons a[href*="whatsapp"] {
    color: #25d366;
}

.share-buttons a[href*="telegram"] {
    color: #0088cc;
}

.share-buttons a[href*="mailto"] {
    color: #ea4335;
}

.share-buttons a[href*="facebook"]:hover {
    background-color: #1877f2;
    color: white;
}

.share-buttons a[href*="twitter"]:hover {
    background-color: #1da1f2;
    color: white;
}

.share-buttons a[href*="whatsapp"]:hover {
    background-color: #25d366;
    color: white;
}

.share-buttons a[href*="telegram"]:hover {
    background-color: #0088cc;
    color: white;
}

.share-buttons a[href*="mailto"]:hover {
    background-color: #ea4335;
    color: white;
}

/* Related Posts */
.related-posts {
    margin: 3rem 0;
}

.related-posts h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.related-posts h3::after { content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post-card {
    text-decoration: none;
    color: var(--text-color);
    background-color: white;
    border-radius: var(--post-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--post-transition);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-card h4 {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.image-placeholder {
    background-color: var(--bg-light);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
}

.comments-section h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.comments-section h3::after { content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.comments-list {
    margin-bottom: 3rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.comment-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-body {
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--post-radius);
    color: var(--text-light);
    font-style: italic;
}

/* Comment Form */
.comment-form-container {
    margin-top: 2rem;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--post-radius);
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.comment-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    transition: var(--post-transition);
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    color: var(--text-light);
    background-color: rgba(0, 0, 0, 0.02);
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: none;
    padding: 0.8rem 1rem;
    outline: none;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.textarea-group {
    align-items: flex-start;
}

.textarea-group .input-icon {
    padding-top: 0.8rem;
}

.comment-form .submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--post-transition);
}

.comment-form .submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.post-sidebar {
    position: relative;
}

/* Media Queries */
@media (max-width: 992px) {
    .post-content-wrapper {
        grid-template-columns: 65% 35%;
    }

    .post-hero-content h1 {
        font-size: 2.3rem;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}

    .post-content-wrapper {
        grid-template-columns: 1fr;
    }

    .post-hero-image {
        height: 50vh;
    }

    .post-hero-content h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
    
    .breadcrumb-separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .post-hero-image {
        height: 40vh;
    }

    .post-hero-content h1 {
        font-size: 1.8rem;
    }

    .post-main-content {
        padding: 1.5rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .comment {
        flex-direction: column;
        gap: 1rem;
    }

    .comment-form-container {
        padding: 1.5rem;
    }
}

/* Estilos para la pÃƒÂ¡gina de bÃƒÂºsqueda */

/* Variables especÃƒÂ­ficas para la bÃƒÂºsqueda */
:root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}

/* Estructura principal */
.search-container {
    width: 100%;
    margin: 0 auto;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Cabecera de bÃƒÂºsqueda */
.search-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Poppins', 'Roboto', sans-serif;
}

.search-query {
    margin-bottom: 1.5rem;
}

.query-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.results-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-left: 1rem;
}

/* Formulario de bÃƒÂºsqueda refinada */
.refined-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    background-color: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.search-input-group:focus-within {
    box-shadow: 0 3px 15px rgba(76, 175, 80, 0.2);
    border-color: var(--primary-color);
}

.search-input-group input {
    flex-grow: 1;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.search-input-group button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-input-group button:hover {
    background-color: var(--primary-color);
}

/* Contenedor principal del contenido */
.search-content-wrapper {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    padding: 0 0 3rem;
}

/* Resultados de bÃƒÂºsqueda */
.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.search-result-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.result-image {
    width: 220px;
    flex-shrink: 0;
    position: relative;
}

.result-image a {
    display: block;
    height: 100%;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

.result-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.result-content {
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.search-result-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.search-result-card h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.search-result-card h2 a:hover {
    color: var(--primary-color);
}

.result-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    align-self: flex-start;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* No results found */
.no-results {
    background-color: white;
    padding: 3rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-results p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-suggestions {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.search-suggestions h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.search-suggestions ul {
    padding-left: 1.5rem;
    color: var(--text-light);
}

.search-suggestions li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .search-content-wrapper {
        grid-template-columns: 65% 35%;
    }
    
    .result-image {
        width: 180px;
    }
}

@media (max-width: 768px) {
    :root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}
    
    .search-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .search-header h1 {
        font-size: 1.8rem;
    }
    
    .query-text {
        font-size: 1.1rem;
    }
    
    .search-result-card {
        flex-direction: column;
    }
    
    .result-image {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .search-header {
        padding: 2rem 1rem;
    }
    
    .query-text, .results-count {
        display: block;
    }
    
    .results-count {
        margin: 0.5rem auto 0;
        display: inline-block;
    }
    
    .no-results {
        padding: 2rem 1rem;
    }
}

/* Estilos para el sidebar del sitio de jardinerÃƒÂ­a */

/* Variables para el sidebar */
:root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}

/* Estilos generales del sidebar */
.site-sidebar {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
}

/* Widget comÃƒÂºn */
.sidebar-widget {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.widget-title::after { content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Widget de bÃƒÂºsqueda */
.search-widget {
    background-color: var(--primary-color);
    color: white;
}

.search-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.search-widget .widget-title::after {
    background-color: white;
}

.sidebar-search-form {
    position: relative;
}

.search-input-wrapper {
    display: flex;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
}

.search-input-wrapper input {
    flex-grow: 1;
    border: none;
    padding: 0.8rem 1rem;
    outline: none;
    font-size: 0.95rem;
}

.search-input-wrapper button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-input-wrapper button:hover {
    background-color: #388E3C;
}

/* Widget de categorÃƒÂ­as */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid var(--border-color);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    color: #555555;
    text-decoration: none;
    transition: var(--transition);
}

.category-item a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.category-item a::before { content: '';
    margin-right: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.category-item a:hover::before {
    opacity: 1;
}

.category-count {
    background-color: var(--bg-light);
    color: #555555;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    transition: var(--transition);
}

.category-item a:hover .category-count {
    background-color: var(--primary-color);
    color: white;
}

/* Widget de nube de etiquetas */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    color: #555555;
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Widget de artÃƒÂ­culos recientes */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555555;
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-link:hover {
    color: var(--primary-color);
}

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-post-link:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content {
    flex-grow: 1;
}

.recent-post-title {
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
    transition: var(--transition);
}

.recent-post-date {
    font-size: 0.8rem;
    color: #555555;
    opacity: 0.7;
}

/* Widget de servicios */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background-color: var(--bg-light);
    color: #555555;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.service-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.service-item i {
    width: 20px;
    text-align: center;
}

.view-all-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-services:hover {
    color: var(--primary-color);
}

.view-all-services i {
    transition: transform 0.3s ease;
}

.view-all-services:hover i {
    transform: translateX(3px);
}

/* Widget de contacto */
.contact-widget {
    background-color: var(--bg-light);
}

.contact-text {
    margin-bottom: 1.2rem;
    color: #555555;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-button:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .sidebar-widget {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .site-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .recent-post-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .recent-post-image {
        width: 100%;
        height: 150px;
    }
}

/* Estilos para la pÃƒÂ¡gina 404 del sitio de jardinerÃƒÂ­a */

/* Variables para la pÃƒÂ¡gina 404 */
:root {
    /* Global Brand Colors */
    --primary-color: #4CAF50;    /* Verde fresco */
    --primary-dark: #388E3C;     /* Verde mÃ¡s oscuro */
    --primary-light: #C8E6C9;    /* Verde claro (fondos) */
    --accent-color: #FF9800;     /* Naranja para destacar */
    --accent-blue: #4285F4;      /* Azul de acento secundario */
    
    /* Text & Background */
    --text-color: #333333;       /* Texto principal */
    --text-light: #666666;       /* Texto secundario */
    --bg-color: #FFFFFF;         /* Fondo principal */
    --bg-light: #F5F7F5;         /* Fondo secundario global */
    --border-color: #E0E0E0;     /* Bordes y divisores */
    
    /* Global Settings */
    --border-radius: 8px;        /* Redondeo estÃ¡ndar */
    --transition: all 0.3s ease; /* TransiciÃ³n global */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sombra media */
    
    /* Typography */
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --font-secondary: 'Montserrat', Arial, sans-serif;
    --font-headings: 'Playfair Display', Georgia, serif;
}

/* Estilos generales */
.error-container {
    max-width: 1200px;
    margin: 3rem auto 5rem;
    padding: 0 1.5rem;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text-color);
}

/* SecciÃƒÂ³n principal */
.error-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Contenido de error */
.error-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.error-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Imagen y cÃƒÂ³digo de error */
.error-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-code {
    position: absolute;
    font-size: 10rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.1;
    z-index: 1;
}

/* IlustraciÃƒÂ³n de planta */
.plant-illustration {
    position: relative;
    z-index: 2;
    height: 300px;
    width: 200px;
}

.plant-pot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: linear-gradient(to right, #cd8e5e, #e6a468, #cd8e5e);
    border-radius: 5px 5px 50px 50px;
    overflow: hidden;
}

.plant-pot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #b57b4c;
    border-radius: 5px 5px 0 0;
}

.plant-stems {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 200px;
}

.stem {
    position: absolute;
    bottom: 0;
    width: 6px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.stem-1 {
    height: 140px;
    left: 50%;
    transform: translateX(-50%);
}

.stem-2 {
    height: 100px;
    left: 30%;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(-15deg);
}

.stem-3 {
    height: 120px;
    left: 70%;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(15deg);
}

.leaf {
    position: absolute;
    width: 40px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50% 50% 50% 0;
}

.leaf-1 {
    top: 40px;
    left: 60px;
    transform: rotate(45deg);
}

.leaf-2 {
    top: 70px;
    left: 10px;
    transform: rotate(-45deg);
}

.leaf-3 {
    top: 20px;
    left: 40px;
    transform: rotate(135deg);
}

/* Botones de acciÃƒÂ³n */
.error-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-home, .btn-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-home {
    background-color: var(--primary-color);
    color: white;
}

.btn-home:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-contact {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-contact:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Formulario de bÃƒÂºsqueda */
.search-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.search-box p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.search-input-group:focus-within {
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    border-color: var(--primary-color);
}

.search-input-group input {
    flex-grow: 1;
    border: none;
    padding: 0.8rem 1.2rem;
    outline: none;
    font-size: 1rem;
}

.search-input-group button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-input-group button:hover {
    background-color: var(--primary-dark);
}

/* Publicaciones sugeridas */
.suggested-content {
    margin-bottom: 4rem;
}

.suggested-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.suggested-content h2::after { content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.suggested-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.suggested-post-card {
    text-decoration: none;
    color: var(--text-color);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.suggested-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.suggested-post-image {
    height: 180px;
    overflow: hidden;
}

.suggested-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suggested-post-card:hover .suggested-post-image img {
    transform: scale(1.1);
}

.post-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
}

.suggested-post-title {
    padding: 1.2rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* CategorÃƒÂ­as principales */
.error-categories {
    text-align: center;
}

.error-categories h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.category-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-button i {
    color: var(--primary-color);
    transition: var(--transition);
}

.category-button:hover i {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .error-main {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .error-content h1 {
        font-size: 2.2rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    .error-image {
        margin: 0 auto;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .suggested-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .suggested-content h2 {
        display: block;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .error-code {
        font-size: 8rem;
    }
    
    .error-content h1 {
        font-size: 1.8rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .btn-home, .btn-contact {
        width: 100%;
        justify-content: center;
    }
    
    .suggested-posts {
        grid-template-columns: 1fr;
    }
    
    .category-buttons {
        flex-direction: column;
    }
    
    .category-button {
        width: 100%;
        justify-content: center;
    }
}













/* --- ESTILOS DEL FOOTER --- */
footer {
    background-color: var(--text-color);
    color: #ffffff;
    padding: 4rem 0 0 0;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3, .footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-brand::before {
    display: none;
}



/* Province Hero */
.province-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.province-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.province-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.province-hero .pro-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 90%;
    max-width: 1000px;
}

.province-hero .pro-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-headings);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .province-hero {
        height: 50vh;
    }
    .province-hero .pro-hero-content h1 {
        font-size: 2.3rem;
    }
}
@media (max-width: 576px) {
    .province-hero {
        height: 40vh;
    }
    .province-hero .pro-hero-content h1 {
        font-size: 1.8rem;
    }
}


@media (max-width: 360px) {
    .navbar {
        padding: 0.5rem 3%;
    }
    .logo img {
        max-height: 28px; /* Ajuste para resoluciones inferiores a 300px */
    }
    .nav-toggle {
        width: 40px !important;
        height: 40px !important;
        padding: 5px !important;
        border: none !important;
        background-color: transparent !important;
    }
    .hamburger-bar {
        width: 20px;
        height: 3px;
        margin: 3px auto;
    }
    .nav-active .hamburger-bar:nth-child(1) { transform: translateY(2px) rotate(45deg); }
    .nav-active .hamburger-bar:nth-child(3) { transform: translateY(-16px) rotate(-45deg); }
}


/* Ocultar el logo cuando el menu movil esta abierto para evitar solapamientos */
.navbar.nav-active .logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}
.logo {
    transition: all 0.3s ease;
}

/* Ajustes adicionales ultra-movil (menores a 360px) para el Hero */
@media (max-width: 360px) {
    .hero-content {
        padding: 0 1rem;
    }
    .hero-section h1 {
        font-size: 1.6rem;
    }
    .hero-section p {
        font-size: 0.95rem;
    }
    .cta-button {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}




/* Asegurar que la X quede bien anclada arriba a la derecha sobre todo el menu */
.navbar.nav-active .nav-toggle {
    position: fixed !important;
    top: 15px;
    right: 5%;
    transform: none !important;
    margin: 0 !important;
}
