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

body {
    font-family: 'Inter', sans-serif;
    background: #f8f4ef;
    color: #222;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.topbar {
    background: #111;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #d4b17a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    letter-spacing: 3px;
}

.logo span {
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
}

.btn-whatsapp {
    background: #8b1e2d;
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* HERO */

.hero {
    padding: 100px 0;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.tag,
.section-tag {
    color: #d4b17a;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero h2 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1.1;
    margin: 20px 0;
}

.hero p {
    color: #f5f5f5;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: #8b1e2d;
    color: white;
}

.primary-btn:hover {
    background: #6e1622;
}

.secondary-btn {
    border: 1px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: #111;
}

.hero-image img {
    width: 100%;
    border-radius: 14px;
    border: 4px solid #d4b17a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* ABOUT */

.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
}

.about h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    margin: 15px 0 25px;
}

.about p {
    margin-bottom: 20px;
    font-size: 17px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid #8b1e2d;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.info-card h4 {
    margin-bottom: 25px;
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 16px;
    font-size: 16px;
}

/* ÁREAS */

.areas {
    padding: 100px 0;
    background: #f2ede7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.areas h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    margin-top: 15px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 35px;
    border-radius: 12px;
    border-bottom: 5px solid #8b1e2d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h4 {
    margin-bottom: 18px;
    font-size: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.card p {
    font-size: 16px;
}

/* NÚMEROS */

.numbers {
    background: #111;
    padding: 80px 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.numbers h3 {
    color: #d4b17a;
    margin-bottom: 15px;
    font-size: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.numbers p {
    color: white;
    font-size: 16px;
}

/* CONTATO */

.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
}

.contact h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    margin: 15px 0 25px;
}

.contact-info p {
    margin-bottom: 18px;
    font-size: 17px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    border: none;
    background: #8b1e2d;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #6e1622;
}

/* FOOTER */

footer {
    background: #0a0a0a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

footer h4 {
    margin-bottom: 10px;
    color: #d4b17a;
}

/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px 22px;
    border-radius: 100px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
}

/* RESPONSIVO */

@media(max-width: 900px) {

    .hero-content,
    .about-grid,
    .contact-grid,
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h2 {
        font-size: 42px;
    }

    .about h3,
    .areas h3,
    .contact h3 {
        font-size: 42px;
    }

    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .hero-image {
        order: -1;
    }

}