/* =========================================================
   CONFIGURAÇÕES GERAIS
========================================================= */

:root {
    --green-dark: #09683f;
    --green: #138255;
    --green-medium: #55987c;
    --green-light: #dceadd;

    --gold-dark: #c69a32;
    --gold: #e2b84e;
    --gold-light: #f8dda0;

    --cream: #fbfbee;
    --cream-dark: #f1efd9;
    --white: #ffffff;

    --text: #345c4d;
    --text-light: #718b80;

    --shadow-sm: 0 10px 30px rgba(15, 93, 60, 0.10);
    --shadow-md: 0 18px 45px rgba(15, 93, 60, 0.16);

    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 38px;

    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    overflow-x: hidden;
    background: var(--cream);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-label::before {
    width: 30px;
    height: 2px;
    background: var(--gold);
    content: "";
}

.section-label--light {
    color: var(--gold-light);
}

.section-description {
    max-width: 550px;
    color: var(--text-light);
}

.button {
    min-height: 50px;
    padding: 0 25px;
    border: 2px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 800;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button--primary {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 10px 25px rgba(198, 154, 50, 0.25);
}

.button--primary:hover {
    background: var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.button--outline {
    border-color: rgba(9, 104, 63, 0.3);
    color: var(--green-dark);
}

.button--outline:hover {
    border-color: var(--green-dark);
    background: var(--green-dark);
    color: var(--white);
}

.button--light {
    flex-shrink: 0;
    background: var(--white);
    color: var(--green-dark);
}

.button--light:hover {
    background: var(--gold);
}


/* =========================================================
   CABEÇALHO
========================================================= */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.header.scrolled {
    border-color: rgba(9, 104, 63, 0.08);
    background: rgba(251, 251, 238, 0.94);
    box-shadow: 0 8px 35px rgba(9, 104, 63, 0.08);
    backdrop-filter: blur(15px);
}

.header__content {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-dark);
    color: var(--gold-light);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.logo__text {
    display: flex;
    flex-direction: column;
    color: var(--green-dark);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.logo__text small {
    margin-top: 4px;
    color: var(--gold-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation > a:not(.navigation__button) {
    position: relative;
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.navigation > a:not(.navigation__button)::after {
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transition: width var(--transition);
}

.navigation > a:not(.navigation__button):hover::after {
    width: 100%;
}

.navigation__button {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 800;
    transition: var(--transition);
}

.navigation__button:hover {
    background: var(--green-dark);
    color: var(--white);
}

.menu-button {
    z-index: 3;
    width: 44px;
    height: 44px;
    display: none;
    place-content: center;
    gap: 5px;
    border-radius: 50%;
    background: var(--green-dark);
}

.menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--white);
    transition: var(--transition);
}

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 760px;
    padding: 145px 0 50px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(220, 234, 221, 0.9),
            transparent 28%
        ),
        var(--cream);
}

.hero::after {
    position: absolute;
    right: -120px;
    bottom: -240px;
    width: 620px;
    height: 620px;
    border: 70px solid rgba(226, 184, 78, 0.10);
    border-radius: 50%;
    content: "";
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.hero__text h1 {
    max-width: 570px;
    margin-bottom: 22px;
    color: var(--green-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 0.96;
}

.hero__text h1 strong {
    display: block;
    color: var(--gold-dark);
    font-weight: 700;
}

.hero__text h1 span {
    display: block;
    color: var(--green-medium);
    text-decoration: underline;
    text-decoration-color: rgba(85, 152, 124, 0.35);
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.hero__text > p {
    max-width: 490px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__advantages {
    margin-top: 45px;
    display: flex;
    gap: 38px;
}

.hero__advantages div {
    display: flex;
    flex-direction: column;
}

.hero__advantages strong {
    color: var(--green-dark);
    font-size: 1rem;
}

.hero__advantages span {
    color: var(--text-light);
    font-size: 0.68rem;
}

.hero__image {
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero__image-background {
    position: absolute;
    bottom: 30px;
    width: 500px;
    height: 500px;
    border-radius: 50% 50% 42% 58% / 55% 45% 55% 45%;
    background:
        linear-gradient(
            145deg,
            rgba(220, 234, 221, 0.95),
            rgba(248, 221, 160, 0.62)
        );
}

.hero__image-background::before {
    position: absolute;
    top: 28px;
    left: 28px;
    width: calc(100% - 56px);
    height: calc(100% - 56px);
    border: 2px dashed rgba(9, 104, 63, 0.17);
    border-radius: inherit;
    content: "";
}

.hero__image img {
    z-index: 2;
    max-height: 590px;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(16, 72, 48, 0.18));
}

.hero__card {
    position: absolute;
    z-index: 3;
    bottom: 42px;
    left: 5px;
    padding: 16px 20px;
    border: 1px solid rgba(9, 104, 63, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.hero__card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 800;
}

.hero__card div {
    display: flex;
    flex-direction: column;
}

.hero__card strong {
    color: var(--green-dark);
    font-size: 0.76rem;
}

.hero__card small {
    color: var(--text-light);
    font-size: 0.63rem;
}

.hero__decoration {
    position: absolute;
    width: 20px;
    height: 50px;
    border-radius: 100% 0 100% 0;
    background: var(--green);
    opacity: 0.25;
    transform: rotate(35deg);
}

.hero__decoration--one {
    top: 130px;
    right: 18%;
}

.hero__decoration--two {
    top: 240px;
    right: 8%;
    transform: rotate(100deg);
}


/* =========================================================
   FAIXA
========================================================= */

.specialties {
    overflow: hidden;
    background: var(--green-dark);
    color: var(--cream);
}

.specialties__track {
    width: max-content;
    min-height: 42px;
    display: flex;
    align-items: center;
    animation: marquee 25s linear infinite;
}

.specialties__track span {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-size: 0.66rem;
    opacity: 0.85;
    white-space: nowrap;
}

.specialties__track span::after {
    margin: 0 20px;
    color: var(--gold);
    content: "✦";
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   SERVIÇOS
========================================================= */

.services {
    overflow: hidden;
}

.services__content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.services h2,
.about h2,
.location h2 {
    margin-bottom: 20px;
    color: var(--gold-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    letter-spacing: -2px;
    line-height: 1;
}

.services h2 span,
.about h2 span,
.location h2 span {
    display: block;
    color: var(--green);
}

.services__list {
    margin-top: 35px;
    display: grid;
    gap: 10px;
}

.service-item {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(241, 239, 217, 0.85);
    color: var(--green-medium);
    font-size: 1rem;
    text-align: left;
    transition: var(--transition);
}

.service-item span {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
}

.service-item:hover,
.service-item.active {
    border-color: rgba(9, 104, 63, 0.15);
    background: var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(10px);
}

.service-item.active span,
.service-item:hover span {
    color: var(--gold-light);
}

.services__visual {
    position: relative;
}

.services__image {
    padding: 8px;
    border: 2px solid var(--gold);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.services__image img {
    width: 100%;
    min-height: 430px;
    border-radius: 17px;
    object-fit: cover;
}

.service-description {
    position: relative;
    z-index: 2;
    max-width: 470px;
    margin: -55px auto 0;
    padding: 25px 28px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.service-description span {
    color: var(--gold-dark);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-description h3 {
    margin: 8px 0;
    color: var(--green-dark);
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
}

.service-description p {
    color: var(--text-light);
    font-size: 0.78rem;
}

.leaf {
    position: absolute;
    width: 32px;
    height: 65px;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(var(--green), #5cc544);
    opacity: 0.7;
}

.leaf--one {
    top: 55px;
    right: 7%;
    transform: rotate(65deg);
}

.leaf--two {
    bottom: 55px;
    left: 4%;
    transform: rotate(-35deg);
}


/* =========================================================
   SOBRE
========================================================= */

.about {
    background: #f7f6ec;
}

.about__content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 85px;
}

.about__image {
    min-height: 590px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about__shape {
    position: absolute;
    bottom: 0;
    width: 82%;
    height: 87%;
    border-radius: 30px 90px 30px 90px;
    background: var(--gold-dark);
}

.about__shape::after {
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 240px;
    height: 240px;
    border: 35px solid rgba(226, 184, 78, 0.15);
    border-radius: 50%;
    content: "";
}

.about__image img {
    z-index: 2;
    max-height: 590px;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(62, 54, 21, 0.2));
}

.about__experience {
    position: absolute;
    z-index: 3;
    right: -10px;
    bottom: 35px;
    width: 145px;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    background: var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.about__experience strong {
    color: var(--gold-light);
    font-family: "Poppins", sans-serif;
    font-size: 2.3rem;
    line-height: 1;
}

.about__experience span {
    margin-top: 7px;
    font-size: 0.67rem;
}

.about__text > p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.88rem;
}

.about__qualities {
    margin: 28px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.about__qualities div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 700;
}

.about__qualities span {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-light);
    color: var(--green-dark);
}


/* =========================================================
   DEPOIMENTOS
========================================================= */

.testimonials {
    background: var(--green-dark);
}

.section-heading--center {
    max-width: 690px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading--center .section-label {
    justify-content: center;
}

.section-heading--center h2 {
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.7rem);
    letter-spacing: -2px;
    line-height: 1;
}

.section-heading--center h2 span {
    display: block;
    color: var(--gold);
}

.section-heading--center > p {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 26px;
    background: var(--gold);
    color: #263d33;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition);
}

.testimonial-card:nth-child(2) {
    transform: translateY(-18px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card:nth-child(2):hover {
    transform: translateY(-28px);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__header img {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__header div {
    display: flex;
    flex-direction: column;
}

.testimonial-card__header strong {
    font-size: 0.83rem;
}

.testimonial-card__header span {
    font-size: 0.65rem;
    opacity: 0.7;
}

.testimonial-card__stars {
    margin: 18px 0 12px;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 0.79rem;
    line-height: 1.65;
}


/* =========================================================
   CHAMADA
========================================================= */

.call-to-action {
    padding: 55px 0;
    background: var(--gold);
}

.call-to-action__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.call-to-action__content > div {
    max-width: 730px;
}

.call-to-action span {
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.call-to-action h2 {
    margin: 5px 0 10px;
    color: var(--green-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
}

.call-to-action p {
    color: rgba(9, 104, 63, 0.8);
    font-size: 0.83rem;
}


/* =========================================================
   LOCALIZAÇÃO
========================================================= */

.location {
    background: var(--cream);
}

.location__heading {
    margin-bottom: 45px;
}

.location__heading p {
    color: var(--text-light);
}

.location__content {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: stretch;
    gap: 30px;
}

.location__information {
    padding: 35px;
    border-radius: 25px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.location__item {
    margin-bottom: 25px;
    display: flex;
    gap: 14px;
}

.location__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 1.1rem;
    font-weight: 800;
}

.location__item div {
    display: flex;
    flex-direction: column;
}

.location__item small {
    margin-bottom: 3px;
    color: var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location__item strong {
    color: var(--green-dark);
    font-size: 0.83rem;
}

.location__item p {
    margin-top: 4px;
    color: var(--text-light);
    font-size: 0.72rem;
}

.location__map {
    min-height: 470px;
    padding: 8px;
    border: 2px solid var(--gold);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.location__map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 18px;
}


/* =========================================================
   RODAPÉ
========================================================= */

.footer {
    background: #064e30;
    color: rgba(255, 255, 255, 0.7);
}

.footer__content {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px;
}

.logo--footer .logo__icon {
    background: var(--gold);
    color: var(--green-dark);
}

.logo--footer .logo__text {
    color: var(--white);
}

.footer__brand p {
    max-width: 310px;
    margin-top: 20px;
    font-size: 0.76rem;
}

.footer__column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer__column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
}

.footer__column a,
.footer__column span {
    font-size: 0.72rem;
    transition: color var(--transition);
}

.footer__column a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
}

.social-links a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--green-dark);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom .container {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__bottom p {
    font-size: 0.65rem;
}


/* =========================================================
   BOTÕES FLUTUANTES
========================================================= */

.whatsapp-button {
    position: fixed;
    z-index: 900;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    font-size: 1.5rem;
    transition: transform var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
}

.back-to-top {
    position: fixed;
    z-index: 899;
    right: 32px;
    bottom: 95px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* =========================================================
   ANIMAÇÕES DE ENTRADA
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1024px) {
    .navigation {
        gap: 18px;
    }

    .hero__content,
    .services__content,
    .about__content {
        gap: 40px;
    }

    .hero__image-background {
        width: 420px;
        height: 420px;
    }

    .testimonials__grid {
        gap: 15px;
    }

    .testimonial-card {
        padding: 22px;
    }
}

@media (max-width: 850px) {
    .section {
        padding: 85px 0;
    }

    .menu-button {
        display: grid;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(340px, 88%);
        height: 100vh;
        padding: 120px 35px 40px;
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        background: var(--cream);
        box-shadow: -20px 0 50px rgba(9, 104, 63, 0.16);
        transition: right 0.4s ease;
    }

    .navigation.active {
        right: 0;
    }

    .navigation > a:not(.navigation__button) {
        font-size: 1rem;
    }

    .navigation__button {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .hero {
        padding-top: 120px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__text h1,
    .hero__text > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero__actions,
    .hero__advantages {
        justify-content: center;
    }

    .hero__image {
        min-height: 510px;
    }

    .hero__image img {
        max-height: 520px;
    }

    .services__content,
    .about__content {
        grid-template-columns: 1fr;
    }

    .services__information {
        max-width: 650px;
    }

    .about__image {
        width: min(520px, 100%);
        margin: 0 auto;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card,
    .testimonial-card:nth-child(2) {
        max-width: 650px;
        margin: 0 auto;
        transform: none;
    }

    .testimonial-card:hover,
    .testimonial-card:nth-child(2):hover {
        transform: translateY(-8px);
    }

    .location__content {
        grid-template-columns: 1fr;
    }

    .call-to-action__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .header__content {
        min-height: 72px;
    }

    .logo__icon {
        width: 42px;
        height: 42px;
    }

    .logo__text {
        font-size: 0.86rem;
    }

    .hero {
        min-height: auto;
        padding-top: 115px;
    }

    .hero__text h1 {
        font-size: clamp(2.7rem, 15vw, 4rem);
        letter-spacing: -2px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__advantages {
        gap: 14px;
        justify-content: space-between;
    }

    .hero__advantages div {
        width: 33.333%;
    }

    .hero__advantages strong {
        font-size: 0.8rem;
    }

    .hero__advantages span {
        font-size: 0.58rem;
    }

    .hero__image {
        min-height: 430px;
    }

    .hero__image-background {
        width: 350px;
        height: 350px;
    }

    .hero__image img {
        max-height: 430px;
    }

    .hero__card {
        bottom: 15px;
        left: 0;
        padding: 12px;
    }

    .hero__card strong {
        font-size: 0.65rem;
    }

    .services h2,
    .about h2,
    .location h2 {
        font-size: 2.6rem;
    }

    .services__image img {
        min-height: 280px;
    }

    .service-description {
        width: calc(100% - 20px);
        margin-top: -30px;
        padding: 20px;
    }

    .service-item {
        min-height: 54px;
        font-size: 0.87rem;
    }

    .about__image {
        min-height: 460px;
    }

    .about__image img {
        max-height: 460px;
    }

    .about__experience {
        right: 0;
        width: 125px;
        padding: 15px;
    }

    .about__qualities {
        grid-template-columns: 1fr;
    }

    .section-heading--center h2 {
        font-size: 2.55rem;
    }

    .testimonial-card {
        padding: 22px;
    }

    .location__information {
        padding: 24px;
    }

    .location__map,
    .location__map iframe {
        min-height: 340px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer__bottom .container {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .back-to-top {
        right: 21px;
        bottom: 82px;
    }
}

@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;
    }
}