/* ============================================
   HERO.CSS - CORES MARROM
   ============================================ */

/* ============================================
   DESKTOP - HERO ORIGINAL (AJUSTADO)
   ============================================ */

.hero-section {
    background-image: url('../img/bannerre2.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 40px 50px;
    min-height: auto; /* REMOVIDO o 100vh */
    height: 650px; /* ALTURA FIXA para não esticar */
    display: flex;
    align-items: center;
    position: relative;
}

/* Para telas muito grandes, aumentar altura */
@media (min-width: 1600px) {
    .hero-section {
        height: 750px;
    }
}

/* Para telas médias, diminuir altura */
@media (max-width: 1200px) {
    .hero-section {
        height: 600px;
        padding: 30px 40px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 550px;
        padding: 30px 30px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== TÍTULO ===== */
.hero-title {
    color: #fff;
    font-size: 48px;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-top: 0;
}

.hero-title span {
    color: #d6b88d;
}

/* ===== DESCRIÇÃO ===== */
.hero-description {
    color: #c9c9c9;
    font-size: 16px;
    line-height: 1.8;
    max-width: 550px;
    margin-top: 20px;
}

.hero-description strong {
    color: #d6b88d;
    font-weight: 700;
}

.hero-description span {
    color: #c9c9c9;
}

/* ===== BOTÕES ===== */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn-gold {
    background: #572b07;
    color: #d6b88d;
    padding: 10px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: #d6b88d;
    color: #572b07;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(87, 43, 7, 0.3);
}

/* ============================================
   MOBILE - HERO COM IMAGEM DE FUNDO 1080x1080
   ============================================ */

.hero-section-mobile {
    background-image: url('../img/bannermobile3.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section-mobile .container {
    position: relative;
    z-index: 1;
}

.hero-content-mobile {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== TÍTULO MOBILE ===== */
.hero-title-mobile {
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 16px;
}

.hero-title-mobile span {
    color: #d6b88d;
}

/* ===== DESCRIÇÃO MOBILE ===== */
.hero-description-mobile {
    color: #c9c9c9;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0 5px;
}

.hero-description-mobile strong {
    color: #d6b88d;
    font-weight: 700;
}

.hero-description-mobile span {
    display: block;
    margin-top: 6px;
    color: #c9c9c9;
}

/* ===== BOTÕES MOBILE ===== */
.hero-buttons-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.btn-gold-mobile {
    background: #572b07;
    color: #fff;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-gold-mobile:hover {
    background: #d6b88d;
    color: #572b07;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(87, 43, 7, 0.2);
}

/* ===== PROVA SOCIAL MOBILE ===== */
.hero-social-proof-mobile {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.hero-social-proof-mobile span {
    color: #aaa;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-social-proof-mobile span i {
    color: #d6b88d;
    font-size: 14px;
}

/* ============================================
   RESPONSIVIDADE MOBILE
   ============================================ */

@media (max-width: 767px) {
    .hero-section-mobile {
        padding: 50px 20px 60px 20px;
        min-height: 100vh;
        background-position: center !important;
        background-size: cover !important;
    }

    .hero-title-mobile {
        font-size: 26px;
    }

    .hero-description-mobile {
        font-size: 14px;
        padding: 0 5px;
    }

    .hero-description-mobile span {
        margin-top: 6px;
    }

    .btn-gold-mobile {
        padding: 12px 20px;
        font-size: 12px;
    }

    .hero-social-proof-mobile span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section-mobile {
        padding: 40px 15px 50px 15px;
        min-height: 100vh;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-title-mobile {
        font-size: 22px;
    }

    .hero-description-mobile {
        font-size: 13px;
        line-height: 1.6;
    }

    .btn-gold-mobile {
        padding: 10px 16px;
        font-size: 11px;
    }

    .hero-social-proof-mobile span {
        font-size: 11px;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}