/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --accent-color: #f4e6d7;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seções ocupam tela inteira - Mobile First */
section[id] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

section[id] > .container {
    width: 100%;
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Mobile First - Ajustes para telas pequenas */
@media (max-width: 768px) {
    section[id] {
        padding-top: 70px;
        padding-bottom: 30px;
        min-height: 100vh;
    }
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 600;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header/Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/00 (5).jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: 100% auto;
}

.hero-content {
    z-index: 2;
    transform: translateY(-15vh);
    padding-top: 10vh;
}

.names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.bride-name,
.groom-name {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.heart {
    font-size: 2rem;
    color: var(--primary-color);
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.wedding-date {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.wedding-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
    cursor: pointer;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.2);
    color: var(--primary-color);
    filter: drop-shadow(0 4px 12px rgba(212, 165, 116, 0.8));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(-100%);
}

.navbar.show {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Nossa História */
.our-story {
    background: var(--light-gray);
    position: relative;
    z-index: 2;
}

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

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.story-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--accent-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 3px dashed var(--primary-color);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Contador */
.countdown-section {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.countdown-section .section-title {
    color: var(--white);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Detalhes do Evento */
.event-details {
    background: var(--white);
}

.event-single {
    display: flex;
    justify-content: center;
}

.event-main-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 25px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 15px 35px var(--shadow);
}

.event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
}

.event-date {
    text-align: center;
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
}

.date-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem 0;
}

.date-year {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.event-venue h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-venue p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.event-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: var(--text-light);
    font-style: italic;
}

.timeline-connector {
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: var(--primary-color);
    z-index: 1;
}

/* Localização */
.location {
    background: var(--accent-color);
}

.location-single {
    display: flex;
    justify-content: center;
}

.location-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.location-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.location-details {
    margin: 2rem 0;
    text-align: left;
}

.location-details p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.location-details i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.location-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Galeria */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px var(--shadow);
    max-width: 400px;
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-photo {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-item .image-placeholder {
    height: 100%;
    border-radius: 15px;
}

/* RSVP */
.rsvp {
    background: var(--light-gray);
}

.rsvp-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.rsvp-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    width: 100%;
    box-sizing: border-box;
}

/* Layout de duas colunas para desktop */
@media (min-width: 768px) {
    .rsvp-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Centralizar formulário no mobile */
@media (max-width: 767px) {
    .rsvp .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .rsvp-form {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Presentes / Lua de Mel */
.gifts {
    padding: 100px 0;
    background: var(--accent-color);
    text-align: center;
}

.gifts-message {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

.gifts-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.payment-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.payment-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    margin-top: 1.5rem;
}

.qrcode-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.payment-link {
    margin: 2rem 0;
}

.payment-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.payment-link .btn i {
    font-size: 1rem;
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.gifts-footer {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.gifts-thank-you {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.gifts-thank-you i {
    color: var(--primary-color);
    margin: 0 0.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-names h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-social p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.hashtag {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                    url('images/00 (5).jpg') center/contain;
        background-size: 325% auto;
        background-position: 90vh;
    }
    
    .hero-content {
        z-index: 2;
        transform: translateY(-15vh);
        padding-top: 0vh;
    }

    .names {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .bride-name,
    .groom-name {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown {
        gap: 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .event-main-card,
    .location-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .event-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .timeline-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qrcode-image {
        max-width: 200px;
    }
    
    .gifts-intro {
        font-size: 1rem;
    }
    
    .payment-card {
        padding: 2rem 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-photo {
        height: 250px;
    }
    
    .story-photo {
        height: 300px;
    }
    
    .rsvp-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .bride-name,
    .groom-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .event-card,
    .gift-option {
        padding: 2rem 1.5rem;
    }
    
    .rsvp-form {
        padding: 1.5rem;
    }
}

/* Modal/Lightbox para Galeria */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    background: rgba(212, 165, 116, 0.8);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 10001;
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.modal-caption {
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-close {
        top: -40px;
        font-size: 2.5rem;
    }
    
    .nav-btn {
        font-size: 1.2rem;
        padding: 12px 15px;
    }
    
    .modal-navigation {
        padding: 0 10px;
    }
    
    .modal-caption {
        font-size: 1rem;
        margin-top: 15px;
        padding: 0 20px;
    }
}

/* Estilos adicionais para Firebase */
/* Estilos para campos condicionais */
#guestsGroup,
#guestNamesGroup {
    transition: all 0.3s ease;
}

/* Notificação de erro */
.notification-error {
    background: #f44336 !important;
}

/* Loading state para botão */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Melhorias para mobile */
@media (max-width: 480px) {
    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
}

/* Dress Code & FAQ */
.dresscode {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.dresscode-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.dresscode-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.dresscode-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.dresscode-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dresscode-intro {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.dresscode-details {
    text-align: left;
}

.dresscode-details h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dresscode-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dresscode-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.dresscode-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.dresscode-list li:last-child {
    border-bottom: none;
}

.dresscode-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

.dresscode-note {
    background: var(--accent-color);
    padding: 1.2rem;
    border-radius: 10px;
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 1.5rem !important;
}

/* Cores a Evitar */
.colors-card {
    grid-column: span 1;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.color-box {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin: 0 auto 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

.color-white {
    background: #ffffff;
    border: 3px solid #ddd;
}

.color-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f9e79f 100%);
}

.color-emerald {
    background: linear-gradient(135deg, #50c878 0%, #2e8b57 100%);
}

.color-marsala {
    background: linear-gradient(135deg, #8b2e3f 0%, #964b5a 100%);
}

.color-champagne {
    background: linear-gradient(135deg, #f7e7ce 0%, #d4a574 100%);
}

.color-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.colors-note {
    background: #fff3cd;
    padding: 1.2rem;
    border-radius: 10px;
    color: #856404;
    border-left: 4px solid #ffc107;
    font-weight: 500;
    margin-top: 1.5rem !important;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.faq-item h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsividade Dress Code & FAQ */
@media (max-width: 768px) {
    .dresscode-content {
        grid-template-columns: 1fr;
    }
    
    .colors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .color-box {
        width: 60px;
        height: 60px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .dresscode-card {
        padding: 2rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .dresscode-icon {
        font-size: 2.5rem;
    }
    
    .dresscode-card h3 {
        font-size: 1.5rem;
    }
    
    .colors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .color-box {
        width: 50px;
        height: 50px;
    }
    
    .color-item span {
        font-size: 0.85rem;
    }
}

/* Galeria Simples e Responsiva */
.photo-gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.photo-gallery .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
    .photo-gallery .container {
        padding: 0 15px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
    }

    .photo-item {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .photo-gallery .container {
        padding: 0 10px;
    }

    .photo-grid {
        gap: 0.4rem;
    }
}

/* Lightbox Simples */
.photo-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.photo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.photo-lightbox-close:hover {
    background: var(--white);
    transform: scale(1.1);
}

.photo-lightbox-prev,
.photo-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.photo-lightbox-prev {
    left: 20px;
}

.photo-lightbox-next {
    right: 20px;
}

.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .photo-lightbox-prev,
    .photo-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .photo-lightbox-prev {
        left: 10px;
    }
    
    .photo-lightbox-next {
        right: 10px;
    }
    
    .photo-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

