:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B59020;
    --light-bg: #FFFFFF;
    --light-surface: #F9F9F9;
    --card-bg: #FFFFFF;
    --text-main: #333333;
    /* Cinza escuro para suavidade */
    --text-strong: #000000;
    /* Preto para titulos/destaques */
    --text-muted: #666666;
    --line-color: #000000;
    /* Linhas pretas finas */
    --line-gold: #D4AF37;
    --transition: all 0.3s ease;

    /* Navbar Solid for Light Theme */
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-border: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.8;
    /* Aumentado para elegancia */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-strong);
    margin-bottom: 1rem;
    font-weight: 400;
    /* Mais leve */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* Botões Estilo Outline Pretos e Dourados */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--text-strong);
    color: var(--text-strong);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--text-strong);
    color: var(--light-bg);
    border-color: var(--text-strong);
}

.btn-gold {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-gold:hover {
    background: var(--primary-gold);
    color: #fff;
}

/* Navbar Style - Aged Gold Request */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(181, 144, 32, 0.2);
    /* Ouro transparente inicial (para ver video) ou sólido? Usuario pediu "faixa ouro envelhecido". Vamos de solido/semi-solido */
    background: transparent;
    /* Começa transparente para o video passar por baixo */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 0;
    transition: var(--transition);
}

/* Quando rolar a página */
.navbar.scrolled {
    background: #000000;
    /* Preto Sólido */
    padding: 0.85rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    /* Texto Branco para contraste no video e no ouro */
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    /* Sombra leve para ler sobre video claro */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #FFFFFF;
    opacity: 0.8;
}

/* Ajuste do botão Loja e Login na navbar */
.navbar .btn {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.navbar .btn:hover {
    background: #FFFFFF;
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    /* Um pouco menor para mostrar conteudo abaixo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay mais claro para combinar com o tema */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    /* Bem leve */
    z-index: 0;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.9);
    /* Video mais claro */
}

/* Fallback */
.hero.no-video {
    background: url('../imag/background_placeholder.jpg') center/cover no-repeat;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.85);
    /* Box branca semi-transparente */
    border: 1px solid var(--primary-gold);
    /* Borda fina dourada */
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-strong);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-weight: 300;
}

/* Sections General */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
}

/* History Section */
.history-section {
    background-color: var(--light-surface);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text {
    padding-right: 2rem;
}

.history-text h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

/* Imagem decorativa com borda deslocada */
.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    z-index: -1;
}

/* Brands Section */
.brands-section {
    background-color: var(--light-bg);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.brand-card {
    padding: 2rem;
    border: 1px solid #eee;
    transition: var(--transition);
}

.brand-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.brand-card h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.brand-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials - Light Version */
.testimonials {
    background-color: var(--light-surface);
    border-top: 1px solid #eee;
    padding: 4rem 0;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid #eee;
    color: var(--text-main);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
    margin: 1rem;
}

.user-avatar {
    width: 80px;
    /* Tamanho reduzido */
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    flex-shrink: 0;
}

.testimonial-body {
    flex: 1;
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-header h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    color: var(--text-strong);
}

.testimonial-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.social-link-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-gold);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.social-link-btn:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
    color: #fff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 2px;
    /* Ajuste fino visual */
}

/* Footer Social Links */
.footer-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    text-align: center;
    border-radius: 50%;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .user-avatar {
        margin-bottom: 1rem;
    }
}

/* Footer Light/Clean */
footer {
    background: var(--light-bg);
    color: var(--text-main);
    padding: 2rem 0 1rem;
    border-top: 4px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.legal-info {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #999;
}

/* Media Queries */
@media (max-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* Em producao, substituir por menu hamburguer */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Philosophy Section Detailed Styling */
.philosophy-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.mv-card {
    background: #fff;
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: var(--transition);
    border-radius: 4px;
}

.mv-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.mv-card h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: left;
    padding: 2.5rem;
    background: #fff;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: var(--transition);
    border-radius: 0 8px 8px 0;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #fffae6;
    /* Leve tom dourado */
}

.value-item h4 {
    color: var(--text-strong);
    margin-bottom: 1rem;
    font-size: 0.7rem;
    font-family: 'Playfair Display', serif;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Noivas Landing Page Styles */
.noivas-hero {
    position: relative;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../imag/noivas_hero.jpg') center/cover no-repeat;
    color: #fff;
    background-color: var(--text-strong);
    background-blend-mode: overlay;
    overflow: hidden;
    /* Ensure video doesn't spill out */
}

.noivas-hero .video-bg {
    z-index: 0;
    /* Place video above the background color/image */
}

.noivas-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    /* Overlay escuro para legibilidade */
    z-index: 1;
    /* Garante que fique sobre o vídeo */
}

.noivas-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.noivas-hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.noivas-hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    color: #F0F0F0;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.1rem;
    background-color: #D4AF37;
    /* Dourado Metálico */
    color: #1a1a1a;
    /* Texto escuro para contraste */
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-weight: 700;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: #f9f9f9;
    color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.promise-section {
    padding: 6rem 0;
    background-color: #fff;
    text-align: center;
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
}

.promise-content h2 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.promise-text {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.9;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.pillar-card {
    background: var(--light-surface);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-strong);
}

.pillar-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hotsite-section {
    padding: 6rem 0;
    background-color: var(--light-surface);
}

.hotsite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hotsite-text h2 {
    color: var(--text-strong);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.hotsite-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hotsite-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 8px solid #fff;
}

.testimonial-simple {
    text-align: center;
    padding: 6rem 2rem;
    background-color: var(--primary-gold);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-simple blockquote {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.testimonial-simple cite {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-style: normal;
    display: block;
    font-weight: 700;
}

@media (max-width: 768px) {
    .noivas-hero-content h1 {
        font-size: 2.5rem;
    }

    .hotsite-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hotsite-text {
        order: 2;
    }

    .hotsite-image {
        order: 1;
        /* Imagem acima no mobile */
        margin-bottom: 2rem;
    }

    .testimonial-simple blockquote {
        font-size: 1.4rem;
    }
}