/* =====================================================
   VARIÁVEIS
===================================================== */

:root {
    --primary: #4f8585;
    --primary-dark: #28575b;
    --primary-deep: #173e43;

    --secondary: #8b86aa;
    --secondary-light: #e8e4f0;

    --aqua-light: #dcebec;

    --cream: #f8f6f1;
    --cream-dark: #eee9e1;

    --white: #ffffff;

    --text: #293437;
    --text-light: #657174;

    --border: #e1e7e6;

    --container: 1180px;

    --radius: 24px;

    --shadow:
        0 18px 50px rgba(24, 64, 67, 0.11);

    --transition: 0.3s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}


img {
    width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


ul {
    list-style: none;
}


button {
    font-family: inherit;
}


.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


.section {
    padding: 110px 0;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.04);

    transition: var(--transition);
}


.header.scrolled {
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}


.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


.logo {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.logo-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--aqua-light);

    color: var(--primary-dark);

    font-size: 19px;
}


.logo-text {
    color: var(--primary-deep);

    font-size: 26px;

    font-weight: 700;
}


.logo-text span {
    color: var(--primary);
}


.navbar ul {
    display: flex;
    align-items: center;

    gap: 29px;
}


.navbar a {
    position: relative;

    color: #344244;

    font-size: 13px;

    font-weight: 500;

    transition: var(--transition);
}


.navbar a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: var(--transition);
}


.navbar a:hover {
    color: var(--primary);
}


.navbar a:hover::after {
    width: 100%;
}


.nav-button {
    padding: 11px 20px;

    display: flex;
    align-items: center;

    gap: 8px;

    border-radius: 30px;

    background: var(--primary-dark);

    color: var(--white);

    font-size: 13px;

    font-weight: 600;

    transition: var(--transition);
}


.nav-button:hover {
    background: var(--primary-deep);

    transform: translateY(-2px);
}


.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    color: var(--primary-dark);

    font-size: 25px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 830px;

    display: flex;
    align-items: center;

    background:
        url("assets/hero-fono.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 58, 62, 0.95) 0%,
            rgba(34, 87, 90, 0.85) 38%,
            rgba(54, 92, 97, 0.43) 68%,
            rgba(30, 61, 64, 0.12) 100%
        );
}


.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 80px;
}


.hero-text {
    max-width: 700px;

    color: var(--white);
}


.hero-badge {
    width: fit-content;

    margin-bottom: 25px;

    padding: 10px 17px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.09);

    backdrop-filter: blur(8px);

    font-size: 12px;

    font-weight: 500;
}


.hero-badge i {
    color: #dad6ef;
}


.hero h1 {
    margin-bottom: 22px;

    font-family:
        "DM Serif Display",
        serif;

    font-size:
        clamp(45px, 5.2vw, 75px);

    font-weight: 400;

    line-height: 1.07;
}


.hero h1 span {
    color: #dcd8ef;
}


.hero p {
    max-width: 650px;

    margin-bottom: 32px;

    color:
        rgba(255, 255, 255, 0.87);

    font-size: 16px;

    line-height: 1.85;
}


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 35px;
}


.btn {
    min-height: 54px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 32px;

    font-size: 13px;

    font-weight: 600;

    transition: var(--transition);
}


.btn:hover {
    transform: translateY(-3px);
}


.btn-primary {
    background: var(--primary);

    color: var(--white);

    box-shadow:
        0 15px 30px
        rgba(79, 133, 133, 0.27);
}


.btn-primary:hover {
    background: var(--primary-dark);
}


.btn-outline {
    border:
        1px solid rgba(255, 255, 255, 0.37);

    background:
        rgba(255, 255, 255, 0.06);

    color: var(--white);
}


.btn-outline:hover {
    background: var(--white);

    color: var(--primary-deep);
}


.hero-features {
    display: flex;

    flex-wrap: wrap;

    gap: 18px 27px;
}


.hero-feature {
    display: flex;
    align-items: center;

    gap: 8px;

    color:
        rgba(255, 255, 255, 0.86);

    font-size: 12px;
}


.hero-feature i {
    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ddd9ef;

    color: var(--primary-deep);

    font-size: 9px;
}


/* =====================================================
   DESTAQUES
===================================================== */

.highlights {
    position: relative;

    z-index: 20;

    margin-top: -60px;
}


.highlights-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    overflow: hidden;

    border-radius: 23px;

    background: var(--white);

    box-shadow: var(--shadow);
}


.highlight-card {
    min-height: 155px;

    padding: 33px;

    display: flex;
    align-items: center;

    gap: 20px;

    border-right:
        1px solid var(--border);
}


.highlight-card:last-child {
    border-right: 0;
}


.highlight-icon {
    width: 59px;
    height: 59px;

    flex: 0 0 59px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background: var(--aqua-light);

    color: var(--primary-dark);

    font-size: 22px;
}


.highlight-card:nth-child(2)
.highlight-icon {
    background:
        var(--secondary-light);

    color: var(--secondary);
}


.highlight-card h3 {
    margin-bottom: 4px;

    color: var(--primary-deep);

    font-size: 16px;
}


.highlight-card p {
    color: var(--text-light);

    font-size: 12px;
}


/* =====================================================
   SOBRE
===================================================== */

.sobre {
    padding-top: 150px;
}


.sobre-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 85px;

    align-items: center;
}


.sobre-image {
    position: relative;
}


.sobre-image img {
    position: relative;

    z-index: 2;

    height: 590px;

    object-fit: cover;

    border-radius:
        125px 30px
        125px 30px;

    box-shadow: var(--shadow);
}


.sobre-decoration {
    position: absolute;

    left: -30px;
    bottom: -35px;

    width: 67%;
    height: 74%;

    border-radius:
        105px 22px;

    background:
        var(--secondary-light);
}


.experience-box {
    position: absolute;

    z-index: 5;

    right: -25px;
    bottom: 42px;

    width: 175px;
    min-height: 150px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 22px;

    background: var(--primary-dark);

    color: var(--white);

    box-shadow:
        0 18px 40px
        rgba(28, 74, 76, 0.27);
}


.experience-box strong {
    font-family:
        "DM Serif Display",
        serif;

    font-size: 48px;

    font-weight: 400;

    line-height: 1;
}


.experience-box span {
    margin-top: 9px;

    font-size: 11px;
}


.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.sobre-content h2,
.section-heading h2 {
    color: var(--primary-deep);

    font-family:
        "DM Serif Display",
        serif;

    font-size:
        clamp(36px, 4vw, 54px);

    font-weight: 400;

    line-height: 1.12;
}


.sobre-content h2 span,
.section-heading h2 span {
    color: var(--primary);
}


.sobre-content h3 {
    margin-top: 28px;

    color: var(--primary-deep);

    font-size: 20px;
}


.registro {
    display: block;

    margin-top: 4px;
    margin-bottom: 20px;

    color: var(--secondary);

    font-size: 12px;

    font-weight: 600;
}


.sobre-content p {
    margin-bottom: 17px;

    color: var(--text-light);

    font-size: 14px;
}


.sobre-list {
    margin:
        28px 0 32px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.sobre-item {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    font-size: 12px;
}


.sobre-item i {
    margin-top: 4px;

    color: var(--primary);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    max-width: 720px;

    margin:
        0 auto 58px;

    text-align: center;
}


.section-heading p {
    max-width: 650px;

    margin:
        18px auto 0;

    color: var(--text-light);

    font-size: 14px;
}


/* =====================================================
   SERVIÇOS
===================================================== */

.servicos {
    background:
        var(--cream);
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.service-card {
    position: relative;

    padding: 35px 29px;

    overflow: hidden;

    border:
        1px solid transparent;

    border-radius: var(--radius);

    background: var(--white);

    transition: var(--transition);
}


.service-card::after {
    content: "";

    position: absolute;

    right: -60px;
    bottom: -60px;

    width: 135px;
    height: 135px;

    border-radius: 50%;

    background:
        var(--secondary-light);

    opacity: 0.4;

    transition: var(--transition);
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: var(--border);

    box-shadow: var(--shadow);
}


.service-card:hover::after {
    transform: scale(1.3);
}


.service-icon {
    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    margin-bottom: 24px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background: var(--aqua-light);

    color: var(--primary-dark);

    font-size: 21px;
}


.service-card h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 11px;

    color: var(--primary-deep);

    font-size: 17px;
}


.service-card p {
    position: relative;

    z-index: 2;

    color: var(--text-light);

    font-size: 12px;
}


/* =====================================================
   PROCESSO
===================================================== */

.processo {
    background: var(--white);
}


.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.process-card {
    position: relative;

    min-height: 285px;

    padding: 34px 28px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    transition: var(--transition);
}


.process-card:hover {
    transform: translateY(-6px);

    background:
        var(--primary-deep);

    color: var(--white);
}


.process-number {
    position: absolute;

    right: 20px;
    top: 5px;

    color: var(--secondary-light);

    font-family:
        "DM Serif Display",
        serif;

    font-size: 74px;

    line-height: 1;

    opacity: 0.9;
}


.process-card > i {
    position: relative;

    z-index: 2;

    margin-top: 48px;
    margin-bottom: 22px;

    color: var(--secondary);

    font-size: 29px;
}


.process-card h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 10px;

    color: var(--primary-deep);

    transition: var(--transition);
}


.process-card p {
    position: relative;

    z-index: 2;

    color: var(--text-light);

    font-size: 12px;

    transition: var(--transition);
}


.process-card:hover h3,
.process-card:hover p {
    color: var(--white);
}


/* =====================================================
   GALERIA
===================================================== */

.galeria {
    background: var(--cream);
}


.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 280px;

    gap: 18px;
}


.gallery-card {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.08);
}


.gallery-large {
    grid-row: span 2;
}


.gallery-wide {
    grid-column: span 2;
}


.gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.gallery-card:hover img {
    transform: scale(1.07);
}


.gallery-overlay {
    position: absolute;

    inset: 0;

    padding: 25px;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(18, 57, 61, 0.90)
            100%
        );
}


.gallery-overlay span {
    color: #dedaf1;

    font-size: 11px;

    font-weight: 600;
}


.gallery-overlay h3 {
    color: var(--white);

    font-size: 16px;
}


/* =====================================================
   AVALIAÇÕES
===================================================== */

.avaliacoes {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #173e43,
            #315f64
        );
}


.avaliacoes::before {
    content: "";

    position: absolute;

    left: -170px;
    top: -170px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.04);
}


.light-heading h2 {
    color: var(--white);
}


.light-heading h2 span {
    color: #ddd9ef;
}


.reviews-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.review-card {
    padding: 32px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}


.stars {
    margin-bottom: 18px;

    color: #e7c56c;

    letter-spacing: 3px;
}


.review-card > p {
    min-height: 145px;

    color:
        rgba(255, 255, 255, 0.87);

    font-size: 13px;

    font-style: italic;
}


.review-person {
    margin-top: 24px;

    display: flex;
    align-items: center;

    gap: 12px;
}


.avatar {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--secondary-light);

    color: var(--primary-deep);

    font-weight: 700;
}


.review-person strong {
    display: block;

    color: var(--white);

    font-size: 13px;
}


.review-person span {
    display: block;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 90px 0;

    background: var(--cream);
}


.cta-box {
    padding: 55px 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);

    box-shadow:
        0 20px 45px
        rgba(32, 77, 80, 0.20);
}


.cta-box span {
    display: block;

    margin-bottom: 9px;

    color: #dedaf0;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.cta-box h2 {
    max-width: 690px;

    margin-bottom: 10px;

    font-family:
        "DM Serif Display",
        serif;

    font-size: 39px;

    font-weight: 400;

    line-height: 1.15;
}


.cta-box p {
    color:
        rgba(255, 255, 255, 0.8);

    font-size: 13px;
}


.btn-white {
    flex-shrink: 0;

    background: var(--white);

    color: var(--primary-dark);
}


.btn-white:hover {
    background: var(--cream);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #102f33;

    color:
        rgba(255, 255, 255, 0.73);
}


.footer-grid {
    padding: 75px 0 60px;

    display: grid;

    grid-template-columns:
        1.5fr 0.8fr 1.1fr 0.8fr;

    gap: 48px;
}


.footer-logo {
    width: fit-content;

    margin-bottom: 20px;
}


.footer-logo .logo-icon {
    background:
        rgba(255, 255, 255, 0.09);

    color: #ddd9ef;
}


.footer-logo .logo-text {
    color: var(--white);
}


.footer-logo .logo-text span {
    color: #9dc9c9;
}


.footer-brand p {
    max-width: 370px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;
}


.social-icons {
    display: flex;

    gap: 10px;

    margin-top: 24px;
}


.social-icons a {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    color: var(--white);

    font-size: 18px;

    transition: var(--transition);
}


.social-icons a:hover {
    background: var(--primary);

    transform: translateY(-4px);
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-column h3 {
    margin-bottom: 9px;

    color: var(--white);

    font-size: 14px;
}


.footer-column a,
.footer-column p {
    color:
        rgba(255, 255, 255, 0.63);

    font-size: 11px;

    transition: var(--transition);
}


.footer-column a:hover {
    color: var(--white);

    padding-left: 4px;
}


.footer-column p {
    display: flex;

    align-items: flex-start;

    gap: 8px;
}


.footer-column i {
    margin-top: 4px;

    color: #9fc7c8;
}


.footer-column strong {
    color: var(--white);

    font-size: 12px;
}


.footer-space {
    margin-top: 8px;
}


.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);
}


.footer-bottom-content {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255, 255, 255, 0.46);

    font-size: 10px;
}


.footer-bottom-content strong {
    color: #ddd9ef;
}


/* =====================================================
   WHATSAPP FLUTUANTE
===================================================== */

.whatsapp-floating {
    position: fixed;

    right: 25px;
    bottom: 24px;

    z-index: 9999;

    width: 63px;
    height: 63px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: var(--white);

    font-size: 30px;

    box-shadow:
        0 13px 30px
        rgba(37, 211, 102, 0.34);

    animation:
        whatsappBounce 2.2s infinite;
}


.whatsapp-floating i {
    position: relative;

    z-index: 3;
}


.whatsapp-pulse {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    background: #25d366;

    animation:
        whatsappPulse 1.5s infinite;
}


@keyframes whatsappPulse {

    0% {
        transform: scale(1);
        opacity: 0.65;
    }

    70% {
        transform: scale(1.65);
        opacity: 0;
    }

    100% {
        transform: scale(1.65);
        opacity: 0;
    }

}


@keyframes whatsappBounce {

    0%,
    75%,
    100% {
        transform: translateY(0);
    }

    82% {
        transform: translateY(-8px);
    }

    90% {
        transform: translateY(0);
    }

    95% {
        transform: translateY(-4px);
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .navbar {
        position: fixed;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 26px;

        background: var(--white);

        border-top:
            1px solid var(--border);

        transform:
            translateY(-150%);

        opacity: 0;

        visibility: hidden;

        transition: var(--transition);
    }


    .navbar.active {
        transform:
            translateY(0);

        opacity: 1;

        visibility: visible;
    }


    .navbar ul {
        flex-direction: column;

        gap: 20px;
    }


    .nav-button {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    .hero {
        min-height: 760px;

        background-position:
            62% center;
    }


    .highlights-grid {
        grid-template-columns: 1fr;
    }


    .highlight-card {
        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }


    .highlight-card:last-child {
        border-bottom: 0;
    }


    .sobre-grid {
        gap: 50px;
    }


    .sobre-image img {
        height: 520px;
    }


    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .gallery-large {
        grid-row: span 1;
    }


    .gallery-wide {
        grid-column: span 1;
    }


    .reviews-grid {
        grid-template-columns: 1fr;
    }


    .review-card > p {
        min-height: auto;
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 750px) {

    .section {
        padding: 78px 0;
    }


    .nav-container {
        min-height: 70px;
    }


    .logo-text {
        font-size: 22px;
    }


    .logo-icon {
        width: 38px;
        height: 38px;
    }


    .navbar {
        top: 70px;
    }


    .hero {
        min-height: 790px;

        align-items: flex-end;

        background-position:
            67% center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(22, 60, 63, 0.25)
                0%,
                rgba(24, 66, 69, 0.55)
                38%,
                rgba(18, 54, 58, 0.96)
                76%,
                rgba(17, 51, 55, 1)
                100%
            );
    }


    .hero-content {
        padding-top: 120px;
        padding-bottom: 68px;
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero p {
        font-size: 13px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-features {
        flex-direction: column;

        gap: 10px;
    }


    .highlights {
        margin-top: 0;

        padding-top: 25px;

        background: var(--cream);
    }


    .highlights-grid {
        border:
            1px solid var(--border);

        box-shadow: none;
    }


    .highlight-card {
        min-height: auto;

        padding: 25px;
    }


    .sobre {
        padding-top: 80px;
    }


    .sobre-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .sobre-image {
        max-width: 520px;

        margin-inline: auto;
    }


    .sobre-image img {
        height: 500px;

        border-radius:
            80px 20px;
    }


    .sobre-decoration {
        left: -10px;
        bottom: -20px;
    }


    .experience-box {
        right: 8px;
        bottom: -35px;

        width: 150px;
        min-height: 125px;
    }


    .experience-box strong {
        font-size: 42px;
    }


    .sobre-content h2,
    .section-heading h2 {
        font-size: 38px;
    }


    .sobre-list {
        grid-template-columns: 1fr;
    }


    .sobre-content .btn {
        width: 100%;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 300px;
    }


    .reviews-grid {
        grid-template-columns: 1fr;
    }


    .cta-section {
        padding: 65px 0;
    }


    .cta-box {
        padding: 38px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .cta-box h2 {
        font-size: 34px;
    }


    .cta-box .btn {
        width: 100%;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;

        padding: 60px 0;
    }


    .footer-bottom-content {
        padding: 22px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;
    }


    .whatsapp-floating {
        right: 18px;
        bottom: 18px;

        width: 57px;
        height: 57px;

        font-size: 27px;
    }

}


/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media (max-width: 420px) {

    .container {
        width: 90%;
    }


    .hero {
        min-height: 750px;
    }


    .hero h1 {
        font-size: 37px;
    }


    .hero-badge {
        font-size: 10px;
    }


    .sobre-content h2,
    .section-heading h2 {
        font-size: 33px;
    }


    .sobre-image img {
        height: 440px;
    }


    .gallery-grid {
        grid-auto-rows: 255px;
    }


    .service-card {
        padding: 30px 24px;
    }

}