body {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    background: #F5F6F8;
    color: #1A2A3A;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #fff;

    /* BACKGROUND */
    background: linear-gradient(
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.55)
            ),
            url('../img/images.jpg') center/cover no-repeat;
}

/* overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(15, 28, 44, 0.85),
        rgba(25, 25, 25, 0.75)
    );
    z-index: 1;
}

/* conteúdo do hero */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-title,
.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-subtitle,
.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 300;
}

/* botão hero */
.hero-cta,
.btn-primary {
    background: #C9A86A;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.2s;
    display: inline-block;
}

.hero-cta:hover,
.btn-primary:hover {
    background: #a98a55;
}

/* animação */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SEÇÕES GERAIS
============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* ============================================================
   ATUAÇÃO (CARDS)
============================================================ */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
    border-left: 5px solid #C9A86A;
    text-align: left;
}

.card h3 {
    margin-bottom: 10px;
}

/* ============================================================
   LISTA DESTAQUE
============================================================ */
.lista-destaque {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.lista-destaque li {
    background: #fff;
    padding: 12px 18px;
    margin-bottom: 10px;
    border-left: 5px solid #1A2A3A;
    border-radius: 4px;
}

/* ============================================================
   PERFIL
============================================================ */
.perfil {
    background: linear-gradient(
                rgba(26, 42, 58, 0.85),
                rgba(26, 42, 58, 0.85)
            ),
            url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2') center/cover no-repeat;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.perfil h2 {
    color: #C9A86A;
    font-size: 2rem;
    margin-bottom: 25px;
}

.perfil p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ============================================================
   SOBRE O SÓCIO
============================================================ */
.sobre-socio {
    background: linear-gradient(
                rgba(255, 255, 255, 0.92),
                rgba(255, 255, 255, 0.92)
            ),
            url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a') center/cover no-repeat;
    padding: 70px 20px;
    text-align: center;
    border-top: 5px solid #C9A86A;
    border-bottom: 5px solid #C9A86A;
}

.sobre-socio h2 {
    color: #1A2A3A;
    font-size: 2rem;
    margin-bottom: 25px;
}

.sobre-socio p {
    max-width: 850px;
    margin: 0 auto 15px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
}

/* ============================================================
   CONTATO
============================================================ */
.contato {
    background: #ffffff;
    border-top: 5px solid #C9A86A;
    border-bottom: 5px solid #C9A86A;
    padding: 60px 20px;
    text-align: center;
}

.contato h2 {
    color: #1A2A3A;
    font-size: 2rem;
}

.contato p,
.contato .email {
    font-size: 1.15rem;
    color: #444;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.whatsapp-btn:hover {
    background: #1eb458;
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    text-align: center;
    padding: 20px;
    background: #1A2A3A;
    color: white;
}

/* ============================================================
   RESPONSIVIDADE GERAL
============================================================ */

/* Tablets */
@media (max-width: 992px) {
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { font-size: 1.15rem; }
}

/* Celulares médios */
@media (max-width: 768px) {
    .hero { height: 70vh; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }

    .btn-primary,
    .hero-cta {
        padding: 12px 22px;
        font-size: 1rem;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .hero { height: 65vh; padding: 0 15px; }

    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }

    .hero-cta {
        width: 80%;
        padding: 12px 0;
    }

    .card { width: 90%; }
}

/* Celulares muito pequenos */
@media (max-width: 360px) {
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.9rem; }
}


/* REMOVE QUALQUER SCROLL LATERAL */
html, body {
    overflow-x: hidden !important;
}

/* EVITA QUE QUALQUER ELEMENTO ESTOURE A LARGURA */
* {
    box-sizing: border-box;
}

/* HERO NÃO PODE DEIXAR NADA VAZAR */
.hero {
    overflow: hidden;
}

/* CONTAINERS NÃO PODEM ULTRAPASSAR A TELA */
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* AJUSTE PARA EVITAR QUE O CARD VAZE NO MOBILE */
.card {
    max-width: 100%;
}

/* AJUSTE CRÍTICO: FLOATER DO WHATSAPP NO MOBILE */
@media (max-width: 480px) {
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}
