/* Base Styles */
:root {
    --color-black: #000000;
    --color-gold: #FFC30B; /* Nova cor dourada */
    --color-purple: #811f77; /* Nova cor roxa */
    --color-text: #ffffff;
    --color-text-secondary: #e0e0e0;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-style: italic;
    color: var(--color-gold);
}

h2 {
    font-size: 2.5rem;
    color: var(--color-gold);
}

h3 {
    font-size: 1.8rem;
    color: var(--color-gold);
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
    opacity: 0.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header e Navegação */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.header-scrolled {
    padding: 0.5rem 0;
    background-color: rgba(0, 0, 0, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-gold);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--color-gold);
    background-color: rgba(255, 195, 11, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    padding: 2rem;
}

.banner-container {
    flex: 0 0 30%;
    max-width: 300px;
    margin-right: 2rem;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1/1.414; /* Proporção A4 */
    object-fit: cover;
}

.banner-placeholder {
    width: 100%;
    aspect-ratio: 1/1.414; /* Proporção A4 */
    background-color: rgba(129, 31, 119, 0.3);
    border: 2px dashed var(--color-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-weight: bold;
    border-radius: 10px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-detail i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--color-gold);
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: rgba(129, 31, 119, 0.1);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-purple);
}

/* Sobre Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.grid-item {
    overflow: hidden;
    border-radius: 10px;
}

.about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.05);
}

/* Obra Section */
.obra-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.obra-cover {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.obra-text h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.obra-text h4 {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Local Section */
.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.local-info h3 {
    margin-bottom: 1rem;
}

.endereco {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.endereco i {
    color: var(--color-gold);
}

.local-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.local-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.local-detail i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.local-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Pagamento Section */
.pagamento-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.pagamento-text h3 {
    margin-bottom: 1.5rem;
}

.qrcode-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qrcode-container h3 {
    color: var(--color-purple);
    margin-bottom: 1.5rem;
}

.qrcode-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
}

.qrcode-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    background-color: #f0f0f0;
    border: 2px dashed var(--color-purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-purple);
    font-weight: bold;
}

.qrcode-caption {
    color: var(--color-purple);
    font-weight: 600;
}

/* Contato Section */
.contato-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contato-item i {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contato-item h3 {
    margin-bottom: 0.3rem;
}

.contato-item p {
    margin: 0;
    color: var(--color-text-secondary);
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--color-purple);
    color: white;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo a {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo p {
    color: var(--color-text-secondary);
}

.footer-event h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-event p {
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-text-secondary);
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-container {
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 250px;
    }
    
    .event-details {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .obra-content,
    .local-content,
    .pagamento-content,
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .obra-cover {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        z-index: 1000;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 0.8rem 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .event-details {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}