/* ==========================================================
   VARIÁVEIS
========================================================== */

:root {

    --primary: #C96B4F;
    --primary-dark: #A95139;

    --secondary: #4E6A55;

    --text: #4A403D;
    --text-light: #6D645F;

    --background: #F8F4EE;
    --white: #FFFFFF;

    --shadow-sm: 0 8px 25px rgba(0, 0, 0, .08);
    --shadow-md: 0 20px 45px rgba(0, 0, 0, .12);

    --radius: 22px;

    --transition: .30s ease;

}

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

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

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    margin: 0;

    font-family: 'Inter', sans-serif;

    background: var(--background);

    color: var(--text);

    overflow-x: hidden;

    line-height: 1.7;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    transition: var(--transition);

}

section {

    position: relative;

}

/* ==========================================================
   TIPOGRAFIA
========================================================== */

body{
    font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
.section-title{
    font-family: "Bree Serif", serif;
}

p {

    color: var(--text-light);

    font-size: 1.05rem;

}

/* ==========================================================
   BOTÕES
========================================================== */

.btn-primary {

    background: var(--primary);

    border: none;

    border-radius: 50px;

    padding: 16px 34px;

    font-weight: 600;

    font-size: 1rem;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow: var(--shadow-md);

}

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

.hero {

    display: flex;

    align-items: center;

    min-height: 90vh;

    background-image: url('images/hero-bg.webp');

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    overflow: hidden;

}

.hero .container {

    position: relative;

    z-index: 2;

}

.hero-row {

    min-height: 100vh;

    align-items: flex-start;

    padding-top: 90px;

}

.hero-logo {

    display: inline-block;

    margin-bottom: 3rem;

}

.hero-logo img {

    max-width: 220px;

}

.hero-title {

    margin-bottom: 1.8rem;

    font-family: "Bree Serif", serif;

    font-size: 4rem;

    font-weight: 700;

    line-height: 1.01;

    color: #51443D;

}

.hero-description{

    display:inline-block;

    padding:18px 24px;

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

    backdrop-filter:blur(4px);

    border-radius:18px;

}

.hero-button {

    padding: 16px 34px;

    border: none;

    border-radius: 999px;

    background: #C96A4B;

    font-weight: 600;

    font-size: 1rem;

    transition: .30s;

}

.hero-button:hover {

    background: #B85A3D;

    transform: translateY(-3px);

}

.hero-image {

    max-width: 580px;

    width: 100%;

}

/* ==========================================
RESPONSIVO
========================================== */

@media (max-width:991.98px) {

    .hero {

        padding: 10px 0 40px;

        text-align: center;

        min-height: auto;

    }

    .hero-logo {

        margin-bottom: 2rem;

    }

    .hero-logo img {

        max-width: 180px;

    }

    .hero-title {

        font-size: 2.8rem;

    }

    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }

    .hero-button {

        width: 100%;

        max-width: 340px;

    }

    .hero-image {

        max-width: 420px;

        margin-top: 3rem;

    }

}

@media (max-width:576px) {

    .hero {

        background-position: center top;

    }

    .hero-title {

        font-size: 2.2rem;

    }

    .hero-description {

        font-size: 1rem;

    }

    .hero-image {

        max-width: 320px;

    }

}



/* ==========================================
CADERNOS
========================================== */

.products {

    padding: 110px 0;

    background: #FFFFFF;

}

.section-badge {

    display: inline-block;

    margin-bottom: 1rem;

    padding: 8px 18px;

    border-radius: 50px;

    background: #F3ECE4;

    color: var(--primary);

    font-size: .90rem;

    font-weight: 600;

    letter-spacing: .5px;

}

.section-title {

    margin-bottom: 1.5rem;

    font-size: clamp(2rem, 4vw, 3.4rem);

    line-height: 1.2;

}

.section-description {

    max-width: 700px;

    margin: 0 auto;

    font-size: 1.05rem;

}

/* ==========================================
CARD
========================================== */

.product-card {

    display: flex;

    flex-direction: column;

    height: 100%;

    overflow: hidden;

    border-radius: 24px;

    background: #FFFFFF;

    box-shadow: 0 20px 45px rgba(0,0,0,.08);

    transition: .35s;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 35px 70px rgba(0,0,0,.12);

}

.product-image {

    display: block;

    overflow: hidden;

}

.product-image img {

    width: 100%;

    aspect-ratio: 3 / 4;

    object-fit: cover;

    transition: .45s;

}

.product-card:hover .product-image img {

    transform: scale(1.05);

}

.product-body {

    flex: 1;

    padding: 26px;

}

.product-title {

    margin-bottom: 1rem;

    font-size: 1.35rem;

    line-height: 1.3;

}

.product-description {

    margin-bottom: 0;

    font-size: .98rem;

}

.product-footer {

    padding: 0 26px 26px;

}

.product-footer .btn {

    border-radius: 50px;

    padding: 14px;

}



/* ==========================================
CURSO
========================================== */

.course {

    padding: 110px 0;

    background: #F8F4EE;

}

.course-image {

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0,0,0,.10);

}

.course-image img {

    width: 100%;

    transition: .45s;

}

.course-image:hover img {

    transform: scale(1.03);

}

.course p {

    margin-bottom: 1.5rem;

}

.course-features {

    margin: 2rem 0;

    padding: 0;

    list-style: none;

}

.course-features li {

    display: flex;

    align-items: center;

    gap: .75rem;

    margin-bottom: 1rem;

    color: var(--text);

    font-weight: 500;

}

.course-features i {

    color: var(--primary);

    font-size: 1.1rem;

}


/* ==========================================
QUEM SOU
========================================== */

.about {

    padding: 110px 0;

    background: #FFFFFF;

}

.about-photo {

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(0,0,0,.10);

}

.about-photo img {

    width: 100%;

}

.about p {

    margin-bottom: 1.5rem;

}

.about .btn {

    margin-top: 1rem;

}



/* ==========================================
RODAPÉ
========================================== */

.footer {

    padding: 90px 0 50px;

    background: #EFE7DE;

    border-top: 1px solid #E3D8CC;

}

.footer-logo {

    width: 150px;

    margin: 0 auto 30px;

}

.footer-title {

    margin-bottom: .4rem;

}

.footer-subtitle {

    margin-bottom: 2.5rem;

    color: var(--text-light);

}

.footer-social {

    display: flex;

    justify-content: center;

    gap: 18px;

}

.footer-social a {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #FFFFFF;

    color: var(--primary);

    font-size: 1.25rem;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);

    transition: .30s;

}

.footer-social a:hover {

    background: var(--primary);

    color: #FFFFFF;

    transform: translateY(-4px);

}

.footer-divider {

    width: 120px;

    height: 1px;

    margin: 45px auto 30px;

    background: #D6C9BC;

}

.footer-copy {

    margin: 0;

    font-size: .95rem;

    color: var(--text-light);

}


