        /* =========================================================
           RESET
        ========================================================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            color: #26352D;
            background: #FFFFFF;
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }


        /* =========================================================
           VARIÁVEIS
        ========================================================= */

        :root {

            --primary: #429B65;
            --primary-dark: #244A38;
            --primary-light: #577D69;

            --accent: #9EB291;
            --accent-light: #D2DBBA;

            --dark: #1F2B25;
            --text: #26352D;
            --text-light: #69766E;

            --white: #FFFFFF;

            --lighter: #F8FAF6;
            --light: #F1F4EE;

            --border: #DDE4DA;

            --container: 1180px;

            --header-height: 82px;
        }


        /* =========================================================
           CONTAINER
        ========================================================= */

        .container {

            width: min(
                calc(100% - 48px),
                var(--container)
            );

            margin: 0 auto;
        }


/* =========================================================
   NAVEGAÇÃO
========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;

    font-size: 13px;
    font-weight: 600;

    color: var(--text);

    transition:
        color .25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition:
        width .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   BOTÃO + DROPDOWN DE CONTATO
========================================================= */

.contato-dropdown {
    position: relative;
    display: inline-block;
}

/* BOTÃO FECHADO */

.contato-btn {
    width: 168px;
    height: 45px;

    padding: 0 20px;

    background: transparent;
    border: 1px solid #4fc477;
    border-radius: 3px;

    color: #269b52;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

/* BOTÃO ABERTO */

.contato-dropdown.aberto .contato-btn {
    background: #4fc477;
    color: #fff;

    border-color: #4fc477;
}

/* =========================================================
   MENU
========================================================= */

.contato-menu {
    position: absolute;

    top: 45px;
    left: 0;

    width: 168px;

    background: #fff;

    border-radius: 0 0 2px 2px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    padding: 14px 10px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-5px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 999;
}

/* MENU ABERTO */

.contato-dropdown.aberto .contato-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* =========================================================
   LINKS
========================================================= */

.contato-item {
    display: block;

    padding: 7px 0;

    color: #111;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
}

.contato-item:hover {
    color: #269b52;
}

/* =========================================================
   WHATSAPP
========================================================= */

.contato-btn {
    width: 168px;
    height: 45px;
    padding: 0 20px;
    background: transparent;
    border: 1px solid #4fc477;
    border-radius: 3px;
    color: #269b52;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.contato-dropdown.aberto .contato-btn {
    background: #4fc477;
    color: #fff;
    border-color: #4fc477;
}


/* =========================================================
   HOVER
========================================================= */

.contato-whatsapp:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* =========================================================
   ÍCONE
========================================================= */

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: var(--primary);

    font-size: 22px;
    font-weight: bold;

    transform: rotate(-35deg);

    transition: color .25s ease;
}


/* ÍCONE NO HOVER */

.contato-whatsapp:hover .whatsapp-icon {
    color: var(--white);
}

/* =========================================================
   BOTÃO DO MENU
========================================================= */

.nav-link-outline {
    padding: 11px 17px;

    border: 1px solid var(--primary);

    border-radius: 3px;

    color: var(--primary);
}

.nav-link-outline::after {
    display: none;
}

.nav-link-outline:hover {
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-button span {
    width: 24px;
    height: 2px;

    background: var(--primary);

    transition: .3s;
}



        /* =========================================================
           LOGO
        ========================================================= */

        .logo img {

            width: 145px;
            height: auto;
        }


        /* =========================================================
           NAVEGAÇÃO
        ========================================================= */

        .nav {

            display: flex;

            align-items: center;

            gap: 30px;
        }

        .nav-link {

            position: relative;

            font-size: 13px;
            font-weight: 600;

            color: var(--text);

            transition: color .25s ease;
        }

        .nav-link::after {

            content: "";

            position: absolute;

            left: 0;
            bottom: -8px;

            width: 0;
            height: 2px;

            background: var(--accent);

            transition: width .25s ease;
        }

        .nav-link:hover,
        .nav-link.active {

            color: var(--primary);
        }

        .nav-link:hover::after,
        .nav-link.active::after {

            width: 100%;
        }


        /* =========================================================
           CONTATO
        ========================================================= */

        .contato-dropdown {

            position: relative;

            display: inline-block;
        }

        .contato-btn {

            width: 168px;
            height: 45px;

            padding: 0 20px;

            background: transparent;

            border: 1px solid #4fc477;

            border-radius: 3px;

            color: #269b52;

            font-size: 14px;
            font-weight: 500;

            cursor: pointer;

            transition:
                background .2s ease,
                color .2s ease;
        }

        .contato-dropdown.aberto .contato-btn {

            background: #4fc477;

            color: #FFFFFF;

            border-color: #4fc477;
        }


        /* =========================================================
           DROPDOWN
        ========================================================= */

        .contato-menu {

            position: absolute;

            top: 45px;
            left: 0;

            width: 168px;

            background: #FFFFFF;

            border-radius: 0 0 2px 2px;

            box-shadow:
                0 5px 15px rgba(0, 0, 0, .08);

            padding: 14px 10px;

            opacity: 0;

            visibility: hidden;

            transform: translateY(-5px);

            transition:
                opacity .2s ease,
                transform .2s ease,
                visibility .2s ease;

            z-index: 999;
        }

        .contato-dropdown.aberto .contato-menu {

            opacity: 1;

            visibility: visible;

            transform: translateY(0);
        }

        .contato-item {

            display: block;

            padding: 7px 0;

            color: #111111;

            font-size: 14px;

            font-weight: 700;
        }

        .contato-item:hover {

            color: #269b52;
        }

        .contato-phone {

            display: flex;

            align-items: center;

            gap: 7px;
        }

        .contato-phone img {

            width: 14px;
            height: 14px;
        }


        /* =========================================================
           BOTÃO MOBILE
        ========================================================= */

        .menu-button {

            display: none;

            width: 42px;
            height: 42px;

            border: 0;

            background: transparent;

            cursor: pointer;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            gap: 5px;
        }

        .menu-button span {

            width: 24px;
            height: 2px;

            background: var(--primary);

            transition: .3s;
        }


        /* =========================================================
           HERO
        ========================================================= */

        .hero {

            position: relative;

            width: 100%;

            min-height: 650px;

            overflow: hidden;

            background: var(--primary-dark);

            margin-top: var(--header-height);
        }

        .hero-image {

            position: absolute;

            inset: 0;

            width: 100%;
            height: 100%;

            z-index: 1;
        }

        .hero-image img {

            width: 100%;
            height: 100%;

            object-fit: cover;

            object-position: center;
        }

        .hero-overlay {

            position: absolute;

            inset: 0;

            z-index: 2;

            background:
                linear-gradient(
                    90deg,
                    rgba(20, 45, 34, .88) 0%,
                    rgba(20, 45, 34, .45) 48%,
                    rgba(20, 45, 34, .08) 100%
                );
        }

        .hero-container {

            position: relative;

            z-index: 3;

            min-height: 650px;

            display: flex;

            align-items: center;
        }

        .hero-content {

            width: 100%;

            max-width: 680px;
        }

        .hero-tag {

            display: block;

            margin-bottom: 22px;

            color: #8FD9AA;

            font-size: 13px;

            font-weight: 700;

            letter-spacing: 3px;
        }

        .hero-content h1 {

            color: #FFFFFF;

            font-family: "Manrope", sans-serif;

            font-size: clamp(42px, 5vw, 68px);

            line-height: 1.05;

            letter-spacing: -2px;

            margin-bottom: 28px;
        }

        .hero-content h1 span {

            color: var(--accent-light);
        }

        .hero-content p {

            max-width: 610px;

            color: rgba(255,255,255,.82);

            font-size: 17px;

            line-height: 1.8;

            margin-bottom: 35px;
        }

        .hero-buttons {

            display: flex;

            align-items: center;

            gap: 12px;

            flex-wrap: wrap;
        }


        /* =========================================================
           BOTÕES
        ========================================================= */

        .btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 12px;

            min-height: 50px;

            padding: 0 23px;

            border: 1px solid transparent;

            border-radius: 3px;

            font-size: 13px;

            font-weight: 700;

            cursor: pointer;

            transition:
                transform .25s ease,
                background .25s ease,
                color .25s ease,
                border-color .25s ease;
        }

        .btn:hover {

            transform: translateY(-2px);
        }

        .btn-primary {

            background: var(--accent);

            color: var(--primary-dark);
        }

        .btn-primary:hover {

            background: var(--accent-light);
        }

        .btn-light {

            background: rgba(255,255,255,.08);

            border-color: rgba(255,255,255,.35);

            color: #FFFFFF;
        }

        .btn-light:hover {

            background: #FFFFFF;

            color: var(--primary-dark);
        }


        /* =========================================================
           SEÇÕES
        ========================================================= */

        .section {

            padding: 105px 0;
        }

        .section-tag {

            display: inline-block;

            margin-bottom: 16px;

            color: var(--primary);

            font-size: 12px;

            font-weight: 800;

            letter-spacing: 3px;
        }

        .section-header {

            display: flex;

            align-items: flex-end;

            justify-content: space-between;

            gap: 50px;

            margin-bottom: 55px;
        }

        .section-header h2 {

            max-width: 700px;

            color: var(--primary-dark);

            font-family: "Manrope", sans-serif;

            font-size: clamp(32px, 4vw, 46px);

            line-height: 1.15;

            letter-spacing: -1.5px;
        }

        .section-header h2 span {

            color: var(--primary);
        }

        .section-header > p {

            max-width: 430px;

            color: var(--text-light);

            font-size: 14px;

            line-height: 1.8;
        }


        /* =========================================================
           INTRODUÇÃO DOS SERVIÇOS
        ========================================================= */

        .services-intro {

            background: var(--white);
        }

        .services-intro-grid {

            display: grid;

            grid-template-columns: .85fr 1.15fr;

            align-items: center;

            gap: 90px;
        }

        .services-intro-image {

            position: relative;

            height: 500px;

            overflow: hidden;
        }

        .services-intro-image img {

            width: 100%;
            height: 100%;

            object-fit: cover;
        }

        .services-intro-content h2 {

            color: var(--primary-dark);

            font-family: "Manrope", sans-serif;

            font-size: clamp(35px, 4vw, 52px);

            line-height: 1.1;

            letter-spacing: -1.5px;

            margin-bottom: 25px;
        }

        .services-intro-content h2 span {

            color: var(--primary);
        }

        .services-intro-content p {

            color: var(--text-light);

            font-size: 16px;

            line-height: 1.9;

            max-width: 600px;
        }


        /* =========================================================
           SERVIÇOS
        ========================================================= */

        .services {

            background: var(--light);

            padding: 0;
        }

        .service-block {

            display: grid;

            grid-template-columns: 1.05fr .95fr;

            min-height: 500px;
        }

        .service-block.reverse {

            grid-template-columns: .95fr 1.05fr;
        }

        .service-content {

            display: flex;

            flex-direction: column;

            justify-content: center;

            padding: 80px max(40px, calc((100vw - 1180px) / 2));
        }

        .service-block:first-child .service-content {

            padding-right: 70px;
        }

        .service-block.reverse .service-content {

            padding-left: 70px;
        }

        .service-number {

            color: var(--primary);

            font-size: 12px;

            font-weight: 800;

            letter-spacing: 3px;

            margin-bottom: 18px;
        }

        .service-content h2 {

            color: var(--primary-dark);

            font-family: "Manrope", sans-serif;

            font-size: clamp(32px, 4vw, 48px);

            line-height: 1.1;

            letter-spacing: -1.5px;

            margin-bottom: 25px;
        }

        .service-content p {

            max-width: 600px;

            color: var(--text-light);

            font-size: 15px;

            line-height: 1.9;

            margin-bottom: 15px;
        }

        .service-content .btn {

            align-self: flex-start;

            margin-top: 20px;
        }

        .service-image {

            position: relative;

            min-height: 500px;

            overflow: hidden;
        }

        .service-image img {

            width: 100%;
            height: 100%;

            object-fit: cover;
        }


        /* =========================================================
           DIFERENCIAIS
        ========================================================= */

        .advantages {

            padding: 110px 0;

            background: var(--primary-dark);

            color: #FFFFFF;
        }

        .advantages-header {

            margin-bottom: 60px;
        }

        .advantages-header .section-tag {

            color: #8FD9AA;
        }

        .advantages-header h2 {

            max-width: 700px;

            color: #FFFFFF;

            font-family: "Manrope", sans-serif;

            font-size: clamp(34px, 4vw, 50px);

            line-height: 1.1;

            letter-spacing: -1.5px;
        }

        .advantages-header h2 span {

            color: var(--accent-light);
        }

        .advantages-grid {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            border-top: 1px solid rgba(255,255,255,.15);

            border-left: 1px solid rgba(255,255,255,.15);
        }

        .advantage {

            padding: 35px 30px;

            min-height: 230px;

            border-right: 1px solid rgba(255,255,255,.15);

            border-bottom: 1px solid rgba(255,255,255,.15);

            transition: background .25s ease;
        }

        .advantage:hover {

            background: rgba(255,255,255,.04);
        }

        .advantage-number {

            display: block;

            margin-bottom: 35px;

            color: #6FD39A;

            font-size: 11px;

            font-weight: 800;

            letter-spacing: 2px;
        }

        .advantage h3 {

            color: #FFFFFF;

            font-family: "Manrope", sans-serif;

            font-size: 17px;

            line-height: 1.3;

            margin-bottom: 15px;
        }

        .advantage p {

            color: rgba(255,255,255,.60);

            font-size: 12px;

            line-height: 1.7;
        }


        /* =========================================================
           GALERIA
        ========================================================= */

        .gallery {

            background: var(--lighter);
        }

        .gallery-grid {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 12px;
        }

        .gallery-item {

            position: relative;

            height: 230px;

            overflow: hidden;

            background: var(--light);
        }

        .gallery-item:nth-child(1),
        .gallery-item:nth-child(6) {

            grid-column: span 2;
        }

        .gallery-item img {

            width: 100%;
            height: 100%;

            object-fit: cover;

            transition: transform .5s ease;
        }

        .gallery-item:hover img {

            transform: scale(1.05);
        }

        .gallery-overlay {

            position: absolute;

            inset: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            background: rgba(36,74,56,.55);

            opacity: 0;

            transition: opacity .25s ease;
        }

        .gallery-item:hover .gallery-overlay {

            opacity: 1;
        }

        .gallery-overlay span {

            width: 45px;
            height: 45px;

            display: flex;

            align-items: center;
            justify-content: center;

            background: #FFFFFF;

            color: var(--primary-dark);

            border-radius: 50%;
        }


        /* =========================================================
           ORÇAMENTO
        ========================================================= */

        .budget {

            background: var(--white);
        }

        .budget-grid {

            display: grid;

            grid-template-columns: .75fr 1.25fr;

            gap: 100px;

            align-items: start;
        }

        .budget-text h2 {

            color: var(--primary-dark);

            font-family: "Manrope", sans-serif;

            font-size: clamp(34px, 4vw, 48px);

            line-height: 1.1;

            letter-spacing: -1.5px;

            margin-bottom: 20px;
        }

        .budget-text h2 span {

            color: var(--primary);
        }

        .budget-text p {

            max-width: 450px;

            color: var(--text-light);

            font-size: 14px;

            line-height: 1.8;
        }

        .contact-form-wrapper {

            padding: 45px;

            background: var(--light);
        }

        .contact-form {

            display: flex;

            flex-direction: column;

            gap: 20px;
        }

        .form-row {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 18px;
        }

        .form-group {

            display: flex;

            flex-direction: column;

            gap: 8px;
        }

        .form-group label {

            color: var(--primary-dark);

            font-size: 11px;

            font-weight: 700;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {

            width: 100%;

            border: 1px solid var(--border);

            border-radius: 2px;

            outline: none;

            background: var(--white);

            color: var(--text);

            font-size: 13px;

            padding: 13px 14px;

            transition:
                border-color .2s,
                box-shadow .2s;
        }

        .form-group input,
        .form-group select {

            height: 47px;
        }

        .form-group textarea {

            resize: vertical;

            min-height: 130px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {

            border-color: var(--primary);

            box-shadow:
                0 0 0 3px rgba(50,96,72,.10);
        }


        /* =========================================================
           FOOTER
        ========================================================= */

        .footer {

            background: var(--primary-dark);

            color: #FFFFFF;
        }

        .footer-main {

            display: grid;

            grid-template-columns:
                1.5fr 1fr 1fr 1.2fr;

            gap: 50px;

            padding: 70px 0;
        }

        .footer-brand img {

            width: 145px;

            margin-bottom: 20px;
        }

        .footer-brand p {

            max-width: 280px;

            color: rgba(255,255,255,.58);

            font-size: 12px;

            line-height: 1.8;
        }

        .footer-column {

            display: flex;

            flex-direction: column;

            align-items: flex-start;

            gap: 10px;
        }

        .footer-column h3 {

            margin-bottom: 10px;

            color: #FFFFFF;

            font-family: "Manrope", sans-serif;

            font-size: 13px;
        }

        .footer-column a,
        .footer-column span {

            color: rgba(255,255,255,.58);

            font-size: 12px;

            transition: color .2s;
        }

        .footer-column a:hover {

            color: var(--accent-light);
        }

        .footer-bottom {

            min-height: 70px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 20px;

            border-top:
                1px solid rgba(255,255,255,.10);

            color: rgba(255,255,255,.40);

            font-size: 10px;
        }

        .footer-bottom a {

            color: rgba(255,255,255,.55);
        }


        /* =========================================================
           VOLTAR AO TOPO
        ========================================================= */

        .back-to-top {

            position: fixed;

            right: 25px;
            bottom: 25px;

            z-index: 500;

            width: 45px;
            height: 45px;

            border: none;

            background: var(--primary);

            color: #FFFFFF;

            cursor: pointer;

            opacity: 0;

            visibility: hidden;

            transform: translateY(15px);

            transition:
                opacity .3s,
                visibility .3s,
                transform .3s;
        }

        .back-to-top.show {

            opacity: 1;

            visibility: visible;

            transform: translateY(0);
        }

        .back-to-top:hover {

            background: var(--primary-dark);
        }


        /* =========================================================
           RESPONSIVIDADE
        ========================================================= */

        @media (max-width: 1050px) {

            .nav {
                gap: 18px;
            }

            .nav-link {
                font-size: 12px;
            }

            .services-intro-grid,
            .budget-grid {
                gap: 60px;
            }

            .footer-main {
                grid-template-columns: repeat(2,1fr);
            }

            .advantages-grid {
                grid-template-columns: repeat(2,1fr);
            }
        }


        /* =========================================================
           TABLET
        ========================================================= */

        @media (max-width: 900px) {

            :root {
                --header-height: 72px;
            }

            .menu-button {
                display: flex;
            }

            .nav {

                position: absolute;

                top: 100%;
                left: 0;

                width: 100%;

                padding: 20px 24px 25px;

                display: none;

                flex-direction: column;

                align-items: flex-start;

                gap: 0;

                background: var(--white);

                border-top: 1px solid var(--border);

                box-shadow:
                    0 15px 30px rgba(0,0,0,.08);
            }

            .nav.open {
                display: flex;
            }

            .nav-link {

                width: 100%;

                padding: 14px 0;

                border-bottom: 1px solid var(--border);
            }

            .nav-link::after {
                display: none;
            }

            .contato-dropdown {

                width: 100%;

                margin-top: 12px;
            }

            .contato-btn {

                width: 100%;
            }

            .contato-menu {

                position: static;

                width: 100%;

                box-shadow: none;

                border-top: 1px solid var(--border);

                margin-top: 5px;
            }

            .services-intro-grid {

                grid-template-columns: 1fr;
            }

            .services-intro-image {

                height: 450px;
            }

            .service-block,
            .service-block.reverse {

                grid-template-columns: 1fr;
            }

            .service-content,
            .service-block:first-child .service-content,
            .service-block.reverse .service-content {

                padding: 70px 24px;
            }

            .service-image {

                min-height: 400px;
            }

            .service-block.reverse .service-image {

                order: -1;
            }

            .gallery-grid {

                grid-template-columns: repeat(2,1fr);
            }

            .gallery-item:nth-child(1),
            .gallery-item:nth-child(6) {

                grid-column: auto;
            }

            .budget-grid {

                grid-template-columns: 1fr;
            }
        }


        /* =========================================================
           MOBILE
        ========================================================= */

        @media (max-width: 650px) {

            .container {

                width: min(
                    calc(100% - 32px),
                    var(--container)
                );
            }

            .section {

                padding: 80px 0;
            }

            /* HERO */

            .hero {

                margin-top: var(--header-height);

                min-height: 650px;
            }

            .hero-container {

                min-height: 650px;

                align-items: flex-end;
            }

            .hero-overlay {

                background:
                    linear-gradient(
                        180deg,
                        rgba(20,45,34,.10),
                        rgba(20,45,34,.82)
                    );
            }

            .hero-content {

                padding:
                    0
                    16px
                    35px;
            }

            .hero-content h1 {

                font-size: 42px;

                letter-spacing: -1.5px;
            }

            .hero-content p {

                font-size: 14px;

                line-height: 1.7;

                margin-bottom: 25px;
            }

            .hero-buttons {

                flex-direction: column;

                align-items: stretch;

                gap: 10px;

                width: 100%;
            }

            .hero-buttons .btn {

                width: 100%;
            }

            /* INTRO */

            .services-intro-grid {

                gap: 45px;
            }

            .services-intro-image {

                height: 400px;
            }

            .services-intro-content h2 {

                font-size: 36px;
            }

            /* SERVIÇOS */

            .service-content,
            .service-block:first-child .service-content,
            .service-block.reverse .service-content {

                padding:
                    65px
                    16px;
            }

            .service-content h2 {

                font-size: 34px;
            }

            .service-content p {

                font-size: 14px;
            }

            .service-image {

                min-height: 330px;
            }

            /* VANTAGENS */

            .advantages {

                padding: 80px 0;
            }

            .advantages-grid {

                grid-template-columns: 1fr;
            }

            .advantage {

                min-height: auto;

                padding: 30px 24px;
            }

            /* GALERIA */

            .gallery-grid {

                grid-template-columns: 1fr;
            }

            .gallery-item {

                height: 260px;
            }

            /* FORM */

            .form-row {

                grid-template-columns: 1fr;
            }

            .contact-form-wrapper {

                padding: 25px 20px;
            }

            /* FOOTER */

            .footer-main {

                grid-template-columns: 1fr;

                gap: 35px;

                padding: 55px 0;
            }

            .footer-bottom {

                padding: 20px 0;

                flex-direction: column;

                align-items: flex-start;

                justify-content: center;
            }
        }


        /* =========================================================
           MOBILE PEQUENO
        ========================================================= */

        @media (max-width: 450px) {

            .hero {

                min-height: 620px;
            }

            .hero-container {

                min-height: 620px;
            }

            .hero-content {

                padding:
                    0
                    12px
                    25px;
            }

            .hero-content h1 {

                font-size: 37px;
            }

            .hero-buttons {

                gap: 8px;
            }

            .hero-buttons .btn {

                min-height: 46px;

                font-size: 12px;
            }

            .services-intro-image {

                height: 350px;
            }

            .service-image {

                min-height: 280px;
            }

            .gallery-item {

                height: 230px;
            }
        }