/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f7f5f2;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

/* CONTAINER PADRÃO */
section {
    padding: 100px 20px;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 600px;

    animation: fadeUp 1.2s ease;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 3px;
}

.hero p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* BOTÃO HERO */
.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 32px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: white;
    color: black;
}

/* ================= VISUAL ================= */

.visual {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.visual-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= STATEMENT ================= */

.statement {
    background-color: #f0ece6;
}

.statement-content {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.statement h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 20px;
}

.statement p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ================= EDITORIAL ================= */

.editorial {
    padding-top: 120px;
}

.editorial-header {
    text-align: center;
    margin-bottom: 60px;
}

.editorial-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
}

.editorial-gallery {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.editorial-item img {
    width: 100%;
    display: block;
}

/* ================= CTA ================= */

.cta {
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: auto;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid black;
    text-decoration: none;
    color: black;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: black;
    color: white;
}

/* ================= FOOTER ================= */

.footer {
    padding: 60px 20px;
    text-align: center;
    background-color: #efeae4;
}

.instagram {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: black;
    font-size: 13px;
    letter-spacing: 1px;
}

.copy {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.dev {
    font-size: 11px;
    color: #aaa;
}

/* ================= WHATSAPP ================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float img {
    width: 22px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* ================= ANIMAÇÕES ================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVO ================= */

@media (max-width: 768px) {

    section {
        padding: 70px 20px;
    }

    .hero {
        height: 75vh;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 15px;
    }

    .visual {
        gap: 50px;
    }

    .editorial-gallery {
        grid-template-columns: 1fr;
    }

    .statement h2,
    .cta h2 {
        font-size: 26px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
    }

    .whatsapp-float img {
        width: 20px;
    }
}
<section class="cta">

    /* CTA DIVIDIDO CORRETO */
.cta-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LADO ESQUERDO */
.cta-about {
    text-align: left;
}

.cta-about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* LADO DIREITO */
.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 25px;
}
/* CTA REFINADO DE VERDADE */
.cta {
    padding: 120px 20px;
}

.cta-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* equilíbrio visual */
    gap: 100px;
    align-items: center;
}

/* ESQUERDA */
.cta-about {
    text-align: left;
    max-width: 420px; /* segura o bloco */
}

.cta-about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* DIREITA */
.cta-content {
    text-align: left; /* <-- ESSENCIAL */
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* BOTÃO */
.btn-secondary {
    display: inline-block;
    padding: 14px 34px;
    border: 1px solid black;
    text-decoration: none;
    color: black;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: black;
    color: white;
}
@media (max-width: 768px) {

    .cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-about {
        max-width: 100%;
        text-align: center;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}