/* ===============================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   BASE
================================ */

body {
    font-family: 'Montserrat', sans-serif;

    background: #faf7f8;
    color: #000000;

    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

section {
    width: 100%;
}

/* ===============================
   TIPOGRAFIA
================================ */

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
}

h3 {
    font-size: 1.3rem;
}

p {
    font-size: 1.05rem;
}

.section-subtitle {
    margin-top: 1rem;
    margin-bottom: 3rem;

    color: #383838;
}

/* ===============================
   BOTÕES
================================ */

.btn {
    padding: 0.9rem 2.3rem;

    border-radius: 30px;

    font-weight: 600;
    text-decoration: none;

    display: inline-flex;
    align-items: center;

    gap: 0.5rem;

    transition: all 0.3s ease;
}

.btn-primary {
    background: #f806bc;
    color: #ffffff;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: #570241;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: #ffffff;
    color: #f806bc;
}

/* ===============================
   HERO
================================ */

.hero {
    min-height: 100vh;

    background: url("../IMAGENS/hero.jpeg") center/cover no-repeat;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.55)
    );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1.5rem 0 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;

    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ===============================
   ABOUT
================================ */

.about {
    padding: 6rem 8%;

    background: linear-gradient(to right, #fbeaf2, #ffffff);

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: #383838;
}

.about-image img {
    border-radius: 20px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ===============================
   TEAM
================================ */

.team {
    padding: 6rem 8%;

    background: #ffffff;

    text-align: center;
}

.team-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 2.5rem;
}

.team-card {
    background: #faf7f8;

    border-radius: 20px;

    padding: 2.2rem 1.5rem;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 130px;
    height: 130px;

    object-fit: cover;
    border-radius: 50%;

    margin: 0 auto 1rem;

    border: 4px solid #f806bc;
}

.team-card span {
    font-size: 0.9rem;
    color: #383838;
}

/* ===============================
   CTA
================================ */

.cta {
    padding: 5rem 8%;

    background: #f806bc;

    color: #ffffff;

    text-align: center;
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 768px) {

    .about {
        text-align: center;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .section-subtitle {
        margin-top: 1rem;
    }
}
