/* ==============================
   CONFIGURAÇÕES GERAIS
============================== */
body {
    padding-top: 70px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f3f3f34b;
}

a {
    text-decoration: none;
}

/* ==============================
   NAVBAR
============================== */
.navbar {
    background-color: #74026e; /* Tom elegante */
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    margin-left: 10px;
}

.nav-link:hover {
    color: #f1d6b8 !important;
}

/* ==============================
   HERO
============================== */
.hero {
    height: 70vh;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("../imagens/persianas/persiana-banner.jpg") center/cover no-repeat;
}

.hero h1 {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.15rem;
}

/* ==============================
   BOTÕES
============================== */
.btn-success {
    background-color: #25d366;
    border: none;
}

.btn-success:hover {
    background-color: #1ebe5d;
}

.btn-primary {
    background-color: #1ebe5d;
    border: none;
}

.btn-primary:hover {
    background-color: #1ebe5d;
}

/* ==============================
   SEÇÃO INFORMATIVA
============================== */
section h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

section ul {
    padding-left: 18px;
}

section ul li {
    margin-bottom: 8px;
}

/* ==============================
   IMAGEM DE DESTAQUE
============================== */
section img {
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ==============================
   GALERIA
============================== */
.galeria {
    background-color: #ede1ec;
}

.galeria-img {
    width: 100%;
    height: 360px;          /* MAIS ALTA */
    object-fit: cover;

    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.galeria-img:hover {
    transform: scale(1.06);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* ==============================
   CTA
============================== */
.cta {
    background-color: #f4f1f3;
    color: #e2dbdb;
}

.cta h2,
.cta p {
    color: #9c0676;
}

/* ==============================
   FOOTER
============================== */
footer {
    background-color: #74026e;
    font-size: 0.9rem;
}

/* ==============================
   RESPONSIVIDADE
============================== */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}



.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Vídeo em tela cheia real */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;

    /* Melhor renderização */
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    backface-visibility: hidden;
    will-change: transform;
}

/* Conteúdo acima do vídeo */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Overlay mais leve (não mata o vídeo) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(110, 110, 110, 0.45);
    z-index: 1;
}
