/* =========================================
   VARIABLES
   ========================================= */
:root {
    --primary-color: #009F9A; /* Verde/Turquesa */
    --primary-color-alt: #008783;
    --secondary-color: #18343D; /* Azul oscuro/Verde petróleo */
    --secondary-color-alt: #0f242b;
    --text-color: #333333;
    --text-color-light: #666666;
    --bg-color: #FFFFFF;
    --bg-color-light: #F0F9F9;
    --body-font: 'Inter', sans-serif;
    
    --header-height: 80px;
    --border-radius: 12px;
    --transition: .3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   REUSABLE CSS CLASSES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-color-light);
}

.section-title-container {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color-light);
}

.section-subtitle.text-left {
    text-align: left;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color-alt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 159, 154, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--secondary-color-alt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 52, 61, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-whatsapp-header {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-color: #25D366;
    color: #25D366;
}

.btn-whatsapp-header:hover {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* =========================================
   HEADER & NAV
   ========================================= */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--bg-color);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 2rem; /* Separa el logo del menú principal */
}

.logo-img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 3rem;
}

.nav-toggle, .nav-close {
    display: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    background: linear-gradient(135deg, rgba(24, 52, 61, 0.85) 0%, rgba(0, 159, 154, 0.85) 100%), url('assets/img/img1.png') center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-data {
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-text-secondary {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.image-placeholder {
    background: linear-gradient(45deg, #d8efef, #bce0df);
    border-radius: var(--border-radius);
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
    box-shadow: var(--shadow);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder.tall {
    height: 100%;
    min-height: 500px;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
    background: linear-gradient(rgba(240, 249, 249, 0.93), rgba(240, 249, 249, 0.93)), url('assets/img/about_bg.png') center/cover;
    background-attachment: fixed;
}

.services-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background-color: var(--bg-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 159, 154, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.5rem;
    color: var(--secondary-color);
}

/* =========================================
   BENEFITS
   ========================================= */
.benefits {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('assets/img/gallery_farm.png') center/cover;
    background-attachment: fixed;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: var(--bg-color-light);
    border-radius: 50%;
    padding: 0.2rem;
}

.benefit-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* =========================================
   ABOUT US
   ========================================= */
.about-container {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.about-boxes {
    display: grid;
    grid-template-areas: "card";
}

.about-box {
    grid-area: card;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-color);
    display: none;
}

.about-box.active {
    display: block;
    animation: slideInRight 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.about-box.exit {
    display: block;
    animation: slideOutLeft 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(80px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideOutLeft {
    0% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 0; transform: translateX(-80px) scale(0.9); }
}

.about-box-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.about-box-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.about-box-header h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-box p {
    color: var(--text-color-light);
    font-size: 0.95rem;
}

/* =========================================
   GALLERY (CAROUSEL)
   ========================================= */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    height: 400px;
    background-color: #e2f1f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.1);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
    background: linear-gradient(rgba(240, 249, 249, 0.93), rgba(240, 249, 249, 0.93)), url('assets/img/gallery_pets.png') center/cover;
    background-attachment: fixed;
}

.testimonials-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stars {
    color: #FFB800;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    color: #ccc;
}

.author-info h4 {
    color: var(--secondary-color);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-color-light);
    font-size: 0.85rem;
}

/* =========================================
   ANNOUNCEMENTS
   ========================================= */
.announcements-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.announcement-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.announcement-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.announcement-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tag-aviso { background-color: #fff3cd; color: #856404; }
.tag-promocion { background-color: #d4edda; color: #155724; }
.tag-comunicado { background-color: #cce5ff; color: #004085; }

.announcement-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.announcement-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.announcement-desc {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.announcement-link {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: underline;
    font-size: 0.95rem;
}

/* =========================================
   SUPPORT (APOYOS) CTA
   ========================================= */
.support-cta {
    background: linear-gradient(135deg, rgba(24, 52, 61, 0.9) 0%, rgba(0, 159, 154, 0.8) 100%), url('assets/img/gallery_farm.png') center/cover;
    color: #fff;
    background-attachment: fixed;
}

.support-container {
    text-align: center;
    max-width: 800px;
}

.support-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.support-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.support-list i {
    font-size: 1.2rem;
    color: #bce0df;
}

.support-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* =========================================
   LOCATION & SCHEDULE
   ========================================= */
.location-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.location-text {
    color: var(--text-color-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-info-box, .schedule-box {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.contact-item, .schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i, .schedule-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-color-light);
}

.schedule-item {
    margin-bottom: 1rem;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item span {
    color: var(--text-color);
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background-color: #e2f1f1;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    text-align: center;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.map-placeholder p {
    margin-top: 1rem;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

/* =========================================
   FAQ (ACCORDION)
   ========================================= */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    font-family: var(--body-font);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.accordion-content p {
    padding: 0 1.5rem 1.2rem 1.5rem;
    color: var(--text-color-light);
}

/* =========================================
   CONTACT
   ========================================= */
.contact-container {
    grid-template-columns: 1fr 1.5fr;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.contact-form-wrapper {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 159, 154, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.status-success { color: #28a745; }
.status-error { color: #dc3545; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding-top: 4rem;
}

.footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.footer-description {
    color: #a0b2b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.footer-social-link {
    color: #fff;
    font-size: 1.2rem;
    background-color: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--primary-color);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    color: #a0b2b8;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-links li i {
    margin-top: 0.2rem;
    color: var(--primary-color);
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: var(--secondary-color-alt);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #a0b2b8;
    font-size: 0.9rem;
}

/* =========================================
   MODAL (PRIVACY POLICY)
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 90;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp:hover {
    background-color: #128C7E;
}

.float-call {
    background-color: #007BFF;
}

.float-call:hover {
    background-color: #0056b3;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media screen and (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .about-container { grid-template-columns: 1fr; }
    .image-placeholder.tall { min-height: 300px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media screen and (max-width: 768px) {
    .section { padding: 4rem 0; }
    
    .nav-toggle { display: block; }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-color);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding: 4rem 2rem;
        transition: right 0.4s;
    }
    
    .navbar.show-menu { right: 0; }
    
    .nav-list {
        flex-direction: column;
        row-gap: 1.5rem;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .btn-whatsapp-header { display: none; } /* Ocultar en móvil para dar espacio al menú */

    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-trust-indicators { grid-template-columns: 1fr; justify-content: center; }
    .trust-item { justify-content: center; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .image-placeholder { height: 300px; }
    
    .section-title { font-size: 1.8rem; }
    
    .location-container, .contact-container { grid-template-columns: 1fr; }
    
    .support-list { flex-direction: column; align-items: flex-start; margin-left: 1rem; }
    
    .floating-buttons { bottom: 1.5rem; right: 1.5rem; }
    .float-btn { width: 50px; height: 50px; font-size: 1.5rem; }
}

@media screen and (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .footer-container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}
