:root {

    --primary: #337944;
    --primary-dark: #2b3e2b;

    --dark: #2b3e2b;
    --text: #154731;

    --cream: #f7f2ed;
    --cream-dark: #eee5dc;

    --white: #ffffff;

    --border: #ded4ca;

    --container: 1180px;

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;

}


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


html {
    scroll-behavior: smooth;
}


body {

    font-family: var(--sans);

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

}


img {

    width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font: inherit;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


.section {

    padding: 100px 0;

}


.eyebrow {

    display: block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


h1,
h2,
h3 {

    font-family: var(--serif);

    color: var(--dark);

    line-height: 1.15;

}


h2 {

    font-size: clamp(
        36px,
        5vw,
        56px
    );

}


.section-title {

    max-width: 700px;

    margin-bottom: 55px;

}


.section-title p {

    margin-top: 18px;

    max-width: 560px;

    color: #766e68;

}


/* HEADER */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    background: rgba(
        255,
        255,
        255,
        .94
    );

    backdrop-filter: blur(12px);

    border-bottom: 1px solid
        rgba(0,0,0,.05);

}


.header-content {

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-family: var(--serif);

    font-size: 23px;

    color: var(--dark);

}


.logo span {

    color: var(--primary);

}


.nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav a {

    font-size: 14px;

    color: #4d4641;

    transition: .3s;

}


.nav a:hover {

    color: var(--primary);

}


.nav-button {

    padding: 12px 20px;

    color: white !important;

    background: var(--dark);

    border-radius: 3px;

}


.menu-btn {

    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.menu-btn span {

    display: block;

    width: 25px;

    height: 2px;

    margin: 5px;

    background: var(--dark);

}


/* HERO */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            90deg,
            rgba(35,29,25,.85),
            rgba(35,29,25,.25)
        ),

        url("../assets/img/hero.jpg")
        center/cover no-repeat;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-text {

    max-width: 680px;

    padding-top: 80px;

    color: white;

}


.hero .eyebrow {

    color: #e5cbb5;

}


.hero h1 {

    color: white;

    font-size: clamp(
        48px,
        8vw,
        82px
    );

}


.hero h1 strong {

    display: block;

    color: #d8b596;

    font-weight: 500;

}


.hero p {

    max-width: 550px;

    margin: 25px 0 35px;

    font-size: 18px;

    color: rgba(255,255,255,.88);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


/* BOTÕES */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    border-radius: 3px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}


.btn-primary {

    color: white;

    background: var(--primary);

}


.btn-primary:hover {

    background: var(--primary-dark);

}


.btn-outline {

    color: white;

    border-color: rgba(
        255,255,255,.6
    );

}


.btn-outline:hover {

    background: white;

    color: var(--dark);

}


.btn-dark {

    color: white;

    background: var(--dark);

}


.btn-dark:hover {

    background: var(--primary);

}


.btn-light {

    color: var(--dark);

    background: white;

}


.center {

    margin-top: 50px;

    text-align: center;

}


/* INTRO */

.intro {

    padding: 110px 0;

    background: var(--cream);

    text-align: center;

}


.intro-content {

    max-width: 850px;

}


.intro h2 {

    max-width: 760px;

    margin: auto;

}


.intro p {

    max-width: 620px;

    margin: 25px auto 0;

    color: #706861;

}


/* FEATURES */

.features {

    display: grid;

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

    border-top: 1px solid var(--border);

}


.feature {

    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;

    padding: 35px 20px;

    border-bottom: 1px solid var(--border);

}


.feature:nth-child(odd) {

    border-right: 1px solid var(--border);

}


.feature-number {

    color: var(--primary);

    font-family: var(--serif);

    font-size: 20px;

}


.feature h3 {

    margin-bottom: 10px;

    font-size: 27px;

}


.feature p {

    color: #756e68;

}


/* SOBRE */

.about {

    background: var(--cream);

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.about-image {

    position: relative;

}


.about-image img {

    aspect-ratio: 4 / 5;

    object-fit: cover;

}


.about-badge {

    position: absolute;

    right: -25px;

    bottom: 30px;

    padding: 20px;

    background: white;

    box-shadow: 0 15px 40px
        rgba(0,0,0,.1);

}


.about-badge strong {

    display: block;

    color: var(--primary);

    font-family: var(--serif);

    font-size: 35px;

}


.about-content p {

    margin-top: 20px;

    color: #6f6760;

}


.credentials {

    display: grid;

    gap: 15px;

    margin: 35px 0;

}


.credentials div {

    display: flex;

    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 1px solid var(--border);

}


.credentials strong {

    color: var(--dark);

}


.credentials span {

    text-align: right;

    color: #776e67;

}


.text-link {

    color: var(--primary);

    font-weight: 600;

}


/* PROCEDIMENTOS */

.procedures {

    background: #fff;

}


.procedure-grid {

    display: grid;

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

    gap: 25px;

}


.procedure-card {

    background: var(--cream);

    overflow: hidden;

}


.procedure-image {

    overflow: hidden;

}


.procedure-image img {

    aspect-ratio: 16 / 10;

    object-fit: cover;

    transition: transform .6s;

}


.procedure-card:hover img {

    transform: scale(1.05);

}


.procedure-content {

    padding: 30px;

}


.procedure-content > span {

    color: var(--primary);

    font-size: 12px;

}


.procedure-content h3 {

    margin: 10px 0;

    font-size: 30px;

}


.procedure-content p {

    color: #706963;

}


.procedure-content a {

    display: inline-block;

    margin-top: 20px;

    color: var(--primary);

    font-weight: 600;

}


/* CTA */

.cta {

    padding: 110px 0;

    color: white;

    text-align: center;

    background:

        linear-gradient(
            rgba(47, 85, 67, 0.9),
            rgba(47, 85, 67, 0.9)
        ),

        url("../assets/img/cta.jpg")
        center/cover;

}


.cta .eyebrow {

    color: #dfc0a4;

}


.cta h2 {

    color: white;

}


.cta p {

    max-width: 550px;

    margin: 20px auto 30px;

    color: rgba(255,255,255,.8);

}


/* DEPOIMENTOS */

.testimonials {

    background: var(--cream);

    text-align: center;

}


.testimonial-slider {

    position: relative;

    max-width: 800px;

    min-height: 260px;

    margin: auto;

}


.testimonial {

    display: none;

}


.testimonial.active {

    display: block;

    animation: fade .4s;

}


@keyframes fade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.stars {

    margin-bottom: 20px;

    color: #b78c4e;

    letter-spacing: 5px;

}


.testimonial blockquote {

    margin-bottom: 25px;

    font-family: var(--serif);

    font-size: clamp(
        25px,
        4vw,
        38px
    );

    line-height: 1.35;

    color: var(--dark);

}


.testimonial strong {

    color: var(--primary);

}


.slider-controls {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 30px;

}


.slider-controls button {

    width: 45px;

    height: 45px;

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

    background: white;

    cursor: pointer;

}


/* NÚMEROS */

.numbers {

    padding: 70px 0;

    background: var(--dark);

    color: white;

}


.numbers-grid {

    display: grid;

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

}


.number-item {

    padding: 20px;

    text-align: center;

    border-right: 1px solid
        rgba(255,255,255,.15);

}


.number-item:last-child {

    border: 0;

}


.number-item strong {

    display: block;

    font-family: var(--serif);

    font-size: 55px;

    color: #d3aa87;

}


.number-item span {

    text-transform: uppercase;

    font-size: 12px;

    letter-spacing: 2px;

}


/* CURSOS */

.course-grid {

    display: grid;

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

    gap: 25px;

}


.course-card {

    padding: 40px;

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

    transition: .3s;

}


.course-card:hover {

    border-color: var(--primary);

    transform: translateY(-5px);

}


.course-card > span {

    color: var(--primary);

}


.course-card h3 {

    margin: 15px 0;

    font-size: 30px;

}


.course-card p {

    color: #706963;

}


.course-card a {

    display: inline-block;

    margin-top: 25px;

    color: var(--primary);

    font-weight: 600;

}


/* CONTATO */

.contact {

    background: var(--cream);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

}


.contact-info p {

    max-width: 450px;

    margin: 20px 0 35px;

}


.contact-whatsapp {

    display: inline-flex;

    flex-direction: column;

    gap: 4px;

    padding: 20px 25px;

    background: white;

    border-left: 3px solid
        var(--primary);

}


.contact-whatsapp span {

    font-size: 12px;

    color: var(--primary);

    text-transform: uppercase;

    letter-spacing: 1px;

}


.contact-whatsapp strong {

    color: var(--dark);

}


.contact-form {

    padding: 40px;

    background: white;

}


.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 600;

}


.form-group input,
.form-group textarea {

    width: 100%;

    padding: 15px;

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

    outline: none;

    background: #fafafa;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--primary);

}


.form-group textarea {

    resize: vertical;

}


/* FOOTER */

.footer {

    padding-top: 60px;

    background: #1b351f;

    color: #bcb3ac;

}


.footer-content {

    display: flex;

    justify-content: space-between;

    gap: 40px;

    padding-bottom: 50px;

}


.footer-logo {

    color: white;

}


.footer-links {

    display: flex;

    gap: 25px;

}


.footer-links a:hover {

    color: white;

}


.copyright {

    padding: 20px 0;

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

    font-size: 12px;

}


/* WHATSAPP */

.floating-whatsapp {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 90;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 62px;

    height: 62px;

    border-radius: 50%;

    color: white;

    background: #25d366;

    box-shadow:
        0 8px 30px rgba(0,0,0,.2);

}


.floating-whatsapp span {

    font-size: 0;

}


.floating-whatsapp span::before {

    content: "◉";

    font-size: 25px;

}


/* MOBILE */

@media (max-width: 850px) {


    .section {

        padding: 75px 0;

    }


    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );

    }


    .menu-btn {

        display: block;

        z-index: 102;

    }


    .nav {

        position: fixed;

        top: 80px;

        left: 0;

        width: 100%;

        padding: 25px;

        display: flex;

        align-items: stretch;

        flex-direction: column;

        gap: 0;

        background: white;

        box-shadow:
            0 15px 30px rgba(0,0,0,.08);

        transform: translateY(-150%);

        transition: .4s;

    }


    .nav.open {

        transform: translateY(0);

    }


    .nav a {

        padding: 15px 0;

        border-bottom: 1px solid
            #eee;

    }


    .nav-button {

        margin-top: 15px;

        text-align: center;

        border: 0 !important;

    }


    .hero {

        min-height: 780px;

    }


    .hero-text {

        padding-top: 100px;

    }


    .hero h1 {

        font-size: 50px;

    }


    .hero p {

        font-size: 16px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .features {

        grid-template-columns: 1fr;

    }


    .feature:nth-child(odd) {

        border-right: 0;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .about-badge {

        right: 15px;

    }


    .procedure-grid {

        grid-template-columns: 1fr;

    }


    .course-grid {

        grid-template-columns: 1fr;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .numbers-grid {

        grid-template-columns: 1fr;

    }


    .number-item {

        border-right: 0;

        border-bottom: 1px solid
            rgba(255,255,255,.15);

    }


    .number-item:last-child {

        border-bottom: 0;

    }


    .footer-content {

        flex-direction: column;

    }


    .footer-links {

        flex-wrap: wrap;

    }

}
