/* HERO - Premium with Watermark */
.hero {
    position: relative;
    height: 780px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("../images/hero/banner01.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Subtle AI Watermark */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.07;
    pointer-events: none;
    width: 65%;
    max-width: 620px;
}

.watermark img {
    width: 100%;
    height: auto;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h2 {
    font-size: 4.8rem;
    margin: 20px 0 24px;
    line-height: 1.1;
    font-family: 'Cinzel', serif;
}

.hero p {
    font-size: 1.35rem;
    max-width: 520px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(120, 0, 7, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   HERO CAROUSEL - Limpo (sem textos na imagem)
   Auto-slide a cada 4 segundos + integração Strapi/Admin
============================================ */
.hero-carousel {
    position: relative;
    height: 780px;
    overflow: hidden;
    background: #f8f7f5;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Controles elegantes */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    color: #780007;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn:hover {
    background: #780007;
    color: white;
    transform: translateY(-50%) scale(1.15);
}

.carousel-btn.prev { left: 30px; }
.carousel-btn.next { right: 30px; }

/* Dots / Indicadores */
.carousel-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 20;
}

.carousel-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #780007;
    transform: scale(1.4);
    border-color: #fff;
    box-shadow: 0 2px 8px rgba(120,0,7,0.4);
}

/* ============================================
   HERO TEXT ABAIXO DO CARROSSEL (movido para baixo conforme pedido)
============================================ */
.hero-text-section {
    padding: 90px 0 70px;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.hero-content-below {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-below .hero-subtitle {
    display: inline-block;
    background: rgba(120,0,7,0.08);
    color: #780007;
    padding: 10px 32px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 600;
}

.hero-content-below h2 {
    font-size: 3.9rem;
    line-height: 1.05;
    margin-bottom: 26px;
    color: #2A2A2A;
    font-family: 'Cinzel', serif;
}

.hero-content-below p {
    font-size: 1.38rem;
    max-width: 640px;
    margin: 0 auto 42px;
    color: #555;
    line-height: 1.65;
}
