/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: #fafcf9;
    color: #25312c;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --verde: #3f6b5b;
    --verde-oscuro: #2f5145;
    --verde-profundo: #213d34;
    --verde-claro: #e7f0eb;
    --verde-muy-claro: #f3f8f5;

    --gris: #68716d;
    --gris-claro: #dfe6e2;

    --blanco: #ffffff;
    --negro: #25312c;
}


/* =========================================
   BOTONES
========================================= */

.primary-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background-color: var(--verde);

    color: white;

    padding: 15px 24px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.primary-button:hover {

    background-color: var(--verde-oscuro);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(63, 107, 91, 0.2);
}

.button-arrow {

    transition:
        transform 0.3s ease;
}

.primary-button:hover .button-arrow {

    transform: translateX(4px);
}


.secondary-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background-color: white;

    color: var(--negro);

    padding: 15px 24px;

    border: 1px solid var(--gris-claro);

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.secondary-button:hover {

    transform: translateY(-3px);

    border-color: var(--verde);

    box-shadow:
        0 8px 20px rgba(36, 50, 44, 0.06);
}


/* =========================================
   HEADER
========================================= */

.header {

    width: 100%;

    position: absolute;

    top: 0;
    left: 0;

    z-index: 100;
}

.navbar {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 26px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1.8px;

    color: var(--verde-profundo);
}

.nav-links {

    display: flex;

    align-items: center;

    gap: 32px;
}

.nav-links a {

    color: #59635f;

    font-size: 13px;

    transition:
        color 0.3s ease;
}

.nav-links a:hover {

    color: var(--verde);
}

.nav-button {

    background-color: var(--verde);

    color: white;

    padding: 11px 18px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 600;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.nav-button:hover {

    background-color: var(--verde-oscuro);

    transform: translateY(-2px);
}

.menu-toggle {

    display: none;

    border: none;

    background: none;

    color: var(--verde-profundo);

    font-size: 27px;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {

    width: 90%;

    max-width: 1300px;

    min-height: 780px;

    margin: 0 auto;

    padding-top: 150px;

    padding-bottom: 80px;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 80px;

    align-items: center;
}

.hero-content {

    max-width: 620px;
}

.hero-eyebrow {

    display: inline-flex;

    color: var(--verde);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 24px;

    padding-bottom: 10px;

    border-bottom: 1px solid #b9cec4;
}

.hero h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1.5px;

    margin-bottom: 28px;
}

.hero h1 span {

    display: block;

    color: var(--verde);
}

.hero-description {

    max-width: 520px;

    color: var(--gris);

    font-size: 16px;

    line-height: 1.75;

    margin-bottom: 32px;
}

.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

.hero-trust {

    display: flex;

    gap: 35px;

    padding-top: 25px;

    border-top: 1px solid #e0e7e3;
}

.hero-trust div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.hero-trust strong {

    font-size: 14px;
}

.hero-trust span {

    color: var(--gris);

    font-size: 12px;
}


/* HERO IMAGE */

.hero-visual {

    position: relative;

    min-height: 570px;
}

.hero-image {

    width: 100%;

    height: 570px;

    border-radius: 35px;

    background-image:
        linear-gradient(
            180deg,
            rgba(33, 61, 52, 0.03),
            rgba(33, 61, 52, 0.2)
        ),
        url("../images/veterinario-feliz.jpg");

    background-size: cover;

    background-position: center;

    overflow: hidden;
}

.hero-floating-card {

    position: absolute;

    left: -35px;

    bottom: 40px;

    max-width: 300px;

    padding: 18px 20px;

    background-color: white;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(31, 51, 44, 0.15);

    display: flex;

    align-items: center;

    gap: 13px;

    animation:
        floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.floating-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: var(--verde-claro);

    border-radius: 13px;

    font-size: 20px;
}

.hero-floating-card strong {

    display: block;

    font-size: 13px;

    margin-bottom: 4px;
}

.hero-floating-card p {

    color: var(--gris);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================
   TRUST BAR
========================================= */

.trust {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 25px 0;

    border-top: 1px solid #e0e7e3;

    border-bottom: 1px solid #e0e7e3;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.trust-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 15px;

    border-radius: 15px;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.trust-item:hover {

    background-color: var(--verde-muy-claro);

    transform: translateY(-3px);
}

.trust-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: var(--verde-claro);

    border-radius: 12px;

    font-size: 18px;
}

.trust-item strong {

    display: block;

    color: var(--verde);

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 3px;
}

.trust-item span {

    color: var(--gris);

    font-size: 12px;

    line-height: 1.3;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {

    max-width: 720px;

    margin-bottom: 50px;
}

.section-heading p {

    color: var(--verde);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 17px;
}

.section-heading h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -1px;

    margin-bottom: 18px;
}

.section-heading h2 span {

    color: var(--verde);
}

.section-heading small {

    display: block;

    color: var(--gris);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   SERVICES
========================================= */

.services {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 120px 0;
}

.services-layout {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 20px;
}

.service-feature {

    min-height: 550px;

    padding: 38px;

    background-color: var(--verde);

    color: white;

    border-radius: 30px;

    display: flex;

    flex-direction: column;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-feature:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(63, 107, 91, 0.2);
}

.service-number {

    position: absolute;

    top: 30px;

    right: 30px;

    font-size: 12px;

    opacity: 0.6;
}

.service-icon {

    width: 60px;

    height: 60px;

    margin-bottom: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: rgba(255,255,255,0.12);

    border-radius: 17px;

    font-size: 26px;
}

.service-feature h3 {

    font-family: "Playfair Display", serif;

    font-size: 34px;

    line-height: 1.1;

    margin-bottom: 15px;
}

.service-feature p {

    color: rgba(255,255,255,0.78);

    font-size: 14px;

    line-height: 1.7;

    max-width: 400px;

    margin-bottom: 25px;
}

.service-feature a {

    font-size: 13px;

    font-weight: 600;

    color: white;
}

.services-list {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* SERVICIO ACORDEÓN */

.service-item {

    background-color: white;

    border: 1px solid #e1e8e4;

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-item:hover {

    transform: translateX(5px);

    border-color: #b8cec3;

    box-shadow:
        0 12px 30px rgba(36, 50, 44, 0.07);
}

.service-toggle {

    width: 100%;

    min-height: 110px;

    padding: 25px 28px;

    background: none;

    border: none;

    cursor: pointer;

    display: grid;

    grid-template-columns: 40px 1fr 25px;

    gap: 20px;

    align-items: center;

    text-align: left;
}

.service-number-small {

    color: var(--verde);

    font-size: 11px;

    font-weight: 700;
}

.service-title strong {

    color: var(--negro);

    font-size: 17px;

    font-weight: 600;
}

.service-plus {

    color: var(--verde);

    font-size: 24px;

    font-weight: 400;

    transition:
        transform 0.35s ease;
}

.service-item.active .service-plus {

    transform: rotate(45deg);
}

.service-details {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}

.service-details p {

    min-height: 0;

    overflow: hidden;

    padding: 0 28px;

    color: var(--gris);

    font-size: 13px;

    line-height: 1.65;

    transition:
        padding 0.35s ease;
}

.service-item.active .service-details {

    grid-template-rows: 1fr;
}

.service-item.active .service-details p {

    padding:
        0 28px 25px 88px;
}


/* =========================================
   PRODUCTS
========================================= */

.products {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 80px 0 120px;
}

.products-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    grid-template-rows: 1fr 1fr;

    gap: 20px;
}

.product-card {

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid #e1e8e4;

    background-color: white;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(36, 50, 44, 0.08);
}

.product-main {

    grid-row: span 2;

    display: grid;

    grid-template-rows: 1fr 0.8fr;
}

.product-image {

    min-height: 260px;

    background-image:
        linear-gradient(
            180deg,
            rgba(0,0,0,0),
            rgba(0,0,0,0.15)
        ),
        url("../images/mascota-feliz-camara.jpg");

    background-size: cover;

    background-position: center;
}

.product-content {

    padding: 30px;
}

.product-content span,
.product-small span,
.product-wide span {

    display: block;

    color: var(--verde);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 11px;
}

.product-content h3,
.product-small h3,
.product-wide h3 {

    font-size: 23px;

    margin-bottom: 10px;
}

.product-content p,
.product-small p,
.product-wide p {

    color: var(--gris);

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 15px;
}

.product-content strong,
.product-wide strong {

    color: var(--verde-oscuro);

    font-size: 12px;
}

.product-small {

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.product-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: var(--verde-claro);

    border-radius: 15px;

    font-size: 24px;
}

.product-wide {

    padding: 28px;

    grid-column: 2;

    background-color: var(--verde-claro);

    border: none;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.product-wide > div:first-child {

    max-width: 420px;
}

.product-paw {

    font-size: 85px;

    opacity: 0.18;

    transform: rotate(-15deg);

    padding-right: 20px;
}


/* =========================================
   WHY US
========================================= */

.why-us {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 100px 0;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.why-us-content {

    max-width: 500px;
}

.section-label {

    color: var(--verde);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.why-us-content h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4vw, 56px);

    line-height: 1.08;

    margin-bottom: 25px;
}

.why-us-content h2 span {

    color: var(--verde);
}

.why-us-content > p:not(.section-label) {

    color: var(--gris);

    font-size: 15px;

    line-height: 1.7;
}

.why-us-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.why-us-card {

    padding: 28px;

    background-color: var(--verde-muy-claro);

    border-radius: 23px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-us-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(36, 50, 44, 0.08);
}

.why-us-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: white;

    border-radius: 14px;

    font-size: 21px;

    margin-bottom: 20px;
}

.why-us-card h3 {

    font-size: 17px;

    margin-bottom: 8px;
}

.why-us-card p {

    color: var(--gris);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   ABOUT
========================================= */

.about {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 100px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {

    width: 100%;

    height: 600px;

    border-radius: 32px;

    background-image:
        url("../images/interior-veterinaria.jpeg");

    background-size: cover;

    background-position: center;

    position: relative;

    overflow: hidden;
}

.image-note {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 13px 18px;

    background: rgba(25, 35, 31, 0.72);

    color: white;

    font-size: 10px;

    line-height: 1.5;

    text-align: center;

    backdrop-filter: blur(4px);
}

.about-content {

    max-width: 550px;
}

.about-content h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.08;

    margin-bottom: 28px;
}

.about-content p:not(.section-label) {

    color: var(--gris);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.about-content .primary-button {

    margin-top: 10px;
}


/* =========================================
   GALLERY
========================================= */

.gallery {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 80px 0 100px;
}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.gallery-item {

    height: 360px;

    border-radius: 25px;

    background-size: cover;

    background-position: center;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.3s ease;
}

.gallery-item:hover {

    transform: scale(1.01);
}

.gallery-one {

    background-image:
        url("../images/perro-cuadrado.jpg");
}

.gallery-two {

    background-image:
        url("../images/mascota-feliz-camara.jpg");
}

.gallery-three {

    background-image:
        url("../images/perro-grooming.jpg");
}

.gallery-four {

    background-image:
        url("../images/revision-perro1.jpg");
}

.gallery-note {

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    padding: 11px;

    background: rgba(25, 35, 31, 0.68);

    color: white;

    font-size: 10px;

    text-align: center;
}


/* =========================================
   REVIEWS
========================================= */

.reviews {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 90px 0 110px;
}

.reviews-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.review-card {

    padding: 32px;

    min-height: 250px;

    background-color: white;

    border: 1px solid #e1e8e4;

    border-radius: 24px;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(36, 50, 44, 0.08);
}

.stars {

    color: var(--verde);

    font-size: 16px;

    letter-spacing: 3px;

    margin-bottom: 22px;
}

.review-card p {

    color: #4c5652;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.review-card span {

    color: var(--gris);

    font-size: 11px;

    margin-top: auto;
}


/* =========================================
   CONTACT
========================================= */

.contact {

    width: 90%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 80px 70px;

    background-color: var(--verde-claro);

    border-radius: 32px;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 80px;

    align-items: center;
}

.contact-content {

    max-width: 620px;
}

.contact-content h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.08;

    margin-bottom: 24px;
}

.contact-content h2 span {

    color: var(--verde);
}

.contact-content > p:not(.section-label) {

    color: var(--gris);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 28px;
}

.contact-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.contact-info > div {

    padding: 20px;

    background-color: rgba(255,255,255,0.7);

    border-radius: 18px;
}

.contact-info strong {

    display: block;

    font-size: 13px;

    margin-bottom: 7px;
}

.contact-info p {

    color: var(--gris);

    font-size: 13px;

    line-height: 1.5;
}

.maps-button {

    display: inline-block;

    margin-top: 8px;

    color: var(--verde);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================
   WHATSAPP FLOTANTE
========================================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background-color: #3f6b5b;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 200;

    box-shadow:
        0 12px 30px rgba(33, 61, 52, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-whatsapp:hover {

    transform: translateY(-5px) scale(1.04);

    box-shadow:
        0 18px 35px rgba(33, 61, 52, 0.3);
}

.whatsapp-icon {

    font-size: 23px;
}

.whatsapp-tooltip {

    position: absolute;

    right: 70px;

    white-space: nowrap;

    padding: 9px 13px;

    background-color: var(--verde-profundo);

    color: white;

    border-radius: 8px;

    font-size: 11px;

    opacity: 0;

    pointer-events: none;

    transform: translateX(5px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.floating-whatsapp:hover .whatsapp-tooltip {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================
   FOOTER
========================================= */

.footer {

    width: 100%;

    margin-top: 100px;

    padding: 65px 5% 25px;

    background-color: var(--verde-profundo);

    color: white;
}

.footer-main {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 55px;
}

.footer-brand {

    max-width: 350px;
}

.footer-logo {

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.footer-brand p {

    color: #b8c6c0;

    font-size: 13px;

    line-height: 1.7;
}

.footer-links,
.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-links strong,
.footer-contact strong {

    font-size: 13px;

    margin-bottom: 7px;
}

.footer-links a,
.footer-contact a {

    color: #b8c6c0;

    font-size: 12px;

    transition:
        color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {

    color: white;
}

.footer-bottom {

    max-width: 1300px;

    margin: 0 auto;

    padding-top: 23px;

    border-top:
        1px solid rgba(255,255,255,0.12);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #82938b;

    font-size: 10px;
}


/* =========================================
   ANIMACIONES DE ENTRADA
========================================= */

.animate {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.animate.show {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1000px) {

    .hero {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 130px;
    }

    .hero-content {

        max-width: 750px;
    }

    .hero-visual {

        min-height: 500px;
    }

    .hero-image {

        height: 500px;
    }

    .services-layout {

        grid-template-columns: 1fr;
    }

    .service-feature {

        min-height: 430px;
    }

    .why-us {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .why-us-content {

        max-width: 700px;
    }

    .about {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-content {

        max-width: 700px;
    }

    .contact {

        grid-template-columns: 1fr;

        gap: 45px;
    }

}


/* =========================================
   RESPONSIVE — MÓVIL
========================================= */

@media (max-width: 768px) {

    /* HEADER */

    .navbar {

        width: 90%;

        padding: 20px 0;
    }

    .logo {

        font-size: 12px;

        letter-spacing: 1.1px;

        max-width: 220px;
    }

    .nav-links {

        display: none;

        position: absolute;

        top: 100%;

        left: 5%;

        width: 90%;

        padding: 22px;

        background-color: white;

        border-radius: 15px;

        box-shadow:
            0 15px 35px rgba(30, 45, 39, 0.12);

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    .nav-links.active {

        display: flex;
    }

    .nav-button {

        display: none;
    }

    .menu-toggle {

        display: block;
    }


    /* HERO */

    .hero {

        width: 90%;

        min-height: auto;

        padding-top: 115px;

        padding-bottom: 60px;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-eyebrow {

        font-size: 9px;

        margin-bottom: 20px;
    }

    .hero h1 {

        font-size: clamp(40px, 11vw, 52px);

        line-height: 1.07;

        letter-spacing: -0.8px;

        margin-bottom: 22px;
    }

    .hero-description {

        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 25px;
    }

    .hero-buttons {

        flex-direction: column;

        gap: 10px;
    }

    .hero-buttons a {

        width: 100%;

        text-align: center;
    }

    .hero-trust {

        gap: 20px;

        padding-top: 20px;
    }

    .hero-trust strong {

        font-size: 13px;
    }

    .hero-trust span {

        font-size: 10px;
    }

    .hero-visual {

        min-height: 390px;
    }

    .hero-image {

        height: 390px;

        border-radius: 25px;
    }

    .hero-floating-card {

        left: 15px;

        right: 15px;

        bottom: 20px;

        max-width: none;

        padding: 15px;
    }


    /* TRUST */

    .trust {

        width: 90%;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        padding: 22px 0;
    }

    .trust-item {

        padding: 12px 8px;

        gap: 9px;

        text-align: left;
    }

    .trust-icon {

        width: 38px;

        height: 38px;

        font-size: 16px;
    }

    .trust-item span {

        font-size: 10px;

        line-height: 1.4;
    }


    /* HEADINGS */

    .section-heading {

        margin-bottom: 35px;
    }

    .section-heading h2 {

        font-size: clamp(36px, 10vw, 48px);
    }


    /* SERVICES */

    .services {

        width: 90%;

        padding: 75px 0;
    }

    .services-layout {

        grid-template-columns: 1fr;
    }

    .service-feature {

        min-height: 430px;

        padding: 28px;

        border-radius: 25px;
    }

    .service-feature h3 {

        font-size: 29px;
    }

    .service-toggle {

        min-height: 90px;

        padding: 20px;

        grid-template-columns: 30px 1fr 20px;

        gap: 12px;
    }

    .service-title strong {

        font-size: 15px;
    }

    .service-item.active .service-details p {

        padding:
            0 20px 22px 62px;
    }


    /* PRODUCTS */

    .products {

        width: 90%;

        padding: 60px 0 80px;
    }

    .products-grid {

        grid-template-columns: 1fr;

        grid-template-rows: auto;
    }

    .product-main {

        grid-row: auto;

        grid-template-rows: 240px auto;
    }

    .product-image {

        min-height: 240px;
    }

    .product-small {

        min-height: 220px;
    }

    .product-wide {

        grid-column: auto;

        min-height: 220px;
    }

    .product-paw {

        font-size: 65px;

        padding-right: 5px;
    }


    /* WHY US */

    .why-us {

        width: 90%;

        padding: 75px 0;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .why-us-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .why-us-card {

        padding: 25px;
    }


    /* ABOUT */

    .about {

        width: 90%;

        padding: 70px 0;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {

        height: 430px;

        border-radius: 25px;
    }

    .about-content h2 {

        font-size: clamp(37px, 10vw, 49px);
    }


    /* GALLERY */

    .gallery {

        width: 90%;

        padding: 60px 0 80px;
    }

    .gallery-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .gallery-item {

        height: 300px;

        border-radius: 22px;
    }


    /* REVIEWS */

    .reviews {

        width: 90%;

        padding: 60px 0 80px;
    }

    .reviews-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .review-card {

        min-height: 230px;

        padding: 28px;
    }


    /* CONTACT */

    .contact {

        width: 90%;

        padding: 55px 25px;

        grid-template-columns: 1fr;

        gap: 35px;

        border-radius: 25px;
    }

    .contact-content h2 {

        font-size: clamp(37px, 10vw, 49px);
    }

    .contact-buttons {

        flex-direction: column;

        gap: 10px;
    }

    .contact-buttons a {

        width: 100%;

        text-align: center;
    }

    .contact-info {

        gap: 10px;
    }


    /* WHATSAPP */

    .floating-whatsapp {

        width: 53px;

        height: 53px;

        right: 18px;

        bottom: 18px;
    }

    .whatsapp-tooltip {

        display: none;
    }


    /* FOOTER */

    .footer {

        margin-top: 70px;

        padding: 55px 8% 25px;

        text-align: center;
    }

    .footer-main {

        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 35px;
    }

    .footer-brand {

        max-width: 100%;
    }

    .footer-brand p {

        max-width: 300px;

        margin: 0 auto;
    }

    .footer-links,
    .footer-contact {

        align-items: center;
    }

    .footer-bottom {

        flex-direction: column;

        align-items: center;

        gap: 9px;

        text-align: center;
    }

}


/* =========================================
   RESPONSIVE — TELÉFONOS PEQUEÑOS
========================================= */

@media (max-width: 400px) {

    .hero h1 {

        font-size: 38px;
    }

    .section-heading h2 {

        font-size: 35px;
    }

    .hero-trust {

        flex-direction: column;

        gap: 12px;
    }

    .service-feature {

        min-height: 450px;
    }

    .product-content,
    .product-small,
    .product-wide {

        padding: 24px;
    }

}


/* =========================================
   REDUCIR ANIMACIONES SI EL USUARIO
   LAS DESACTIVA EN SU SISTEMA
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}