/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da paleta */
    --color-pearl: #dfbdb9;
    --color-gold: #ae960a;
    --color-wine: #600e13;
    --color-castle: #676568;
    --color-cascade: #9cbfbe;
    
    /* Variações */
    --color-wine-dark: #4a0a0d;
    --color-wine-light: #8b1419;
    --color-pearl-light: #f5e8e6;
    --color-pearl-dark: #d4a8a3;
    --color-gold-light: #d4b72c;
    --color-gold-dark: #8a7608;
    --color-cascade-light: #c5dedd;
    --color-cascade-dark: #7ba5a4;
    
    /* Tipografia */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Sombras modernas */
    --shadow-sm: 0 2px 12px rgba(96, 14, 19, 0.08);
    --shadow-md: 0 8px 24px rgba(96, 14, 19, 0.12);
    --shadow-lg: 0 16px 40px rgba(96, 14, 19, 0.16);
    --shadow-xl: 0 24px 60px rgba(96, 14, 19, 0.2);
    --shadow-glow: 0 0 30px rgba(174, 150, 10, 0.3);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-castle);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #faf8f7 0%, #ffffff 50%, #faf8f7 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(96, 14, 19, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(96, 14, 19, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1002;
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(96, 14, 19, 0.1));
}

.logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-wine);
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-castle);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-wine));
    transition: var(--transition);
}

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

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

.nav-link-cta {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(174, 150, 10, 0.3);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(174, 150, 10, 0.4);
}

.nav-toggle,
.nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-wine);
    z-index: 1002;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-toggle:hover,
.nav-close:hover {
    transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #600e13 0%, #8b1419 50%, #600e13 100%);
    overflow: hidden;
    padding-top: 70px;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(174, 150, 10, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 191, 190, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(223, 189, 185, 0.08) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 2.5rem 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6), 0 2px 20px rgba(174, 150, 10, 0.4);
    letter-spacing: -1px;
    background: linear-gradient(180deg, #ffffff 0%, #f0e5d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: var(--color-pearl-light);
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-info {
    margin-top: 2rem;
    color: white;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, rgba(174, 150, 10, 0.9), rgba(138, 118, 8, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.hero-info strong {
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-size: 1.1em;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    top: 5%;
    left: -10%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--color-cascade);
    bottom: 10%;
    right: -8%;
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--color-pearl);
    top: 50%;
    left: 5%;
    animation: float 9s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large {
    padding: 1.4rem 3.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 25px rgba(174, 150, 10, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(174, 150, 10, 0.35), 0 2px 8px rgba(174, 150, 10, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(174, 150, 10, 0.45), 0 4px 12px rgba(174, 150, 10, 0.3), 0 0 30px rgba(174, 150, 10, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--color-wine);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

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

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(174, 150, 10, 0.1), rgba(174, 150, 10, 0.05));
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    color: var(--color-wine);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(96, 14, 19, 0.15);
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-wine), var(--color-gold), var(--color-cascade));
    margin: 0 auto;
    border-radius: 10px;
}

.section-description {
    text-align: center;
    color: var(--color-castle);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===== BENEFÍCIOS SECTION ===== */
.beneficios {
    background: linear-gradient(135deg, #fef5f1 0%, #fff9f5 50%, #ffffff 100%);
    position: relative;
    box-shadow: inset 0 10px 30px rgba(96, 14, 19, 0.05);
}

.beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(96, 14, 19, 0.03), transparent);
}

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

.beneficio-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(96, 14, 19, 0.2);
    transition: all 0.3s ease;
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-gold) 50%, var(--color-wine) 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.beneficio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(174, 150, 10, 0.1), transparent);
    transition: left 0.6s ease;
}

.beneficio-card:hover::before {
    opacity: 1;
}

.beneficio-card:hover::after {
    left: 100%;
}

.beneficio-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(96, 14, 19, 0.35);
}

.beneficio-card:hover::before {
    opacity: 1;
}

.beneficio-icon {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--color-wine), var(--color-gold));
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 30px rgba(96, 14, 19, 0.25);
}

.beneficio-card h3 {
    font-family: var(--font-display);
    color: var(--color-wine);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

.beneficio-card p {
    color: #444;
    line-height: 2;
    font-size: 1.15rem;
    font-weight: 500;
    opacity: 0.9;
}

.beneficios-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* ===== ENCONTROS SECTION ===== */
.encontros {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f5 100%);
    box-shadow: inset 0 -10px 30px rgba(96, 14, 19, 0.05);
}

/* Box de Tema e Preletores */
.tema-preletores-box {
    background: linear-gradient(135deg, var(--color-wine) 0%, #8b1419 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    margin: 3rem auto 4rem;
    box-shadow: 0 20px 60px rgba(96, 14, 19, 0.4);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    border: 5px solid var(--color-gold);
}

.tema-preletores-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(174, 150, 10, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tema-section {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.tema-label {
    display: inline-block;
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

.tema-titulo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 0;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    font-style: italic;
}

.preletores-section {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    border-top: 3px solid rgba(174, 150, 10, 0.5);
}

.preletores-label {
    display: inline-block;
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.preletores-nomes {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.preletor {
    background: linear-gradient(135deg, var(--color-gold), #d4b72c);
    color: var(--color-wine);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.preletor:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.separador {
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 400;
    font-style: italic;
}

/* Responsivo */
@media (max-width: 768px) {
    .tema-preletores-box {
        padding: 3rem 2rem;
    }
    
    .tema-titulo {
        font-size: 2.2rem;
    }
    
    .preletores-nomes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .separador {
        transform: rotate(90deg);
    }
}

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

.encontros-card {
    background: linear-gradient(135deg, #600e13 0%, #8b1419 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(96, 14, 19, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(174, 150, 10, 0.3);
    position: relative;
    overflow: hidden;
}

.encontros-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.encontros-card:hover::before {
    transform: scale(3);
}

.encontros-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(96, 14, 19, 0.5), 0 0 40px rgba(174, 150, 10, 0.3);
    border-color: var(--color-gold);
}

.card-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(174, 150, 10, 0.6));
    color: var(--color-gold);
    display: inline-block;
    background: white;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.encontros-card h3 {
    font-family: var(--font-display);
    color: white;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.encontros-card p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.card-time {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-wine);
    font-weight: 800;
    font-size: 1.4rem;
    background: var(--color-gold);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(174, 150, 10, 0.4);
    border: 2px solid white;
}

/* ===== INSCRIÇÃO SECTION ===== */
.inscricao {
    background: linear-gradient(135deg, var(--color-pearl-light) 0%, #fff 50%, var(--color-cascade-light) 100%);
    padding: 5rem 0;
    position: relative;
}

.inscricao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(156, 191, 190, 0.1), transparent);
}

.inscricao-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.inscricao-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-destaque {
    background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-wine-dark) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    box-shadow: 0 6px 30px rgba(96, 14, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.info-destaque::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(174, 150, 10, 0.1);
    border-radius: 50%;
}

.info-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.info-text h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--color-pearl-light);
    font-weight: 700;
}

.info-data {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.info-hora {
    font-size: 1.05rem;
    color: var(--color-gold);
    font-weight: 600;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--color-gold);
    box-shadow: 0 4px 20px rgba(96, 14, 19, 0.08);
}

.info-box h4 {
    font-family: var(--font-display);
    color: var(--color-wine);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    color: var(--color-castle);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.inscricao-form {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(96, 14, 19, 0.2);
    border: 5px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.inscricao-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--color-wine) 0%, var(--color-gold) 50%, var(--color-wine) 100%);
}

.form-title {
    font-family: var(--font-display);
    color: var(--color-wine);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

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

.form-group label {
    display: block;
    color: var(--color-wine);
    font-weight: 700;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: 2px solid rgba(96, 14, 19, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(245, 232, 230, 0.3);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(174, 150, 10, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23600e13' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--color-castle);
    font-weight: 600;
    padding: 1rem;
    background: rgba(245, 232, 230, 0.3);
    border-radius: 12px;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: rgba(245, 232, 230, 0.5);
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--color-gold);
}

.form-note {
    text-align: center;
    color: var(--color-castle);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--color-wine-dark) 0%, var(--color-wine) 100%);
    color: white;
    padding: 3.5rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 0.8rem;
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-pearl-light);
    font-weight: 600;
}

.footer-text {
    color: var(--color-pearl-light);
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(174, 150, 10, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(174, 150, 10, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 40px rgba(96, 14, 19, 0.2);
        padding: 2.5rem;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        margin-top: 4rem;
        align-items: stretch;
    }
    
    .nav-list li {
        border-bottom: 1px solid rgba(96, 14, 19, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
    }
    
    .nav-link-cta {
        text-align: center;
        display: block;
        margin-top: 1rem;
        padding: 1rem 2rem;
    }
    
    .nav-toggle,
    .nav-close {
        display: flex;
    }
    
    .nav-close {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .encontros-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .inscricao-form {
        padding: 2rem;
    }
    
    .info-destaque {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .info-icon {
        font-size: 3rem;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }
    
    section {
        padding: 3.5rem 0;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .hero-info {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.05rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
        padding: 0.4rem 1.2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }
    
    .section-divider {
        width: 80px;
        height: 4px;
    }
    
    .section-description {
        font-size: 1.05rem;
    }
    
    .beneficio-card {
        padding: 2.5rem 1.8rem;
    }
    
    .beneficio-icon {
        font-size: 3.5rem;
    }
    
    .beneficio-card h3 {
        font-size: 1.4rem;
    }
    
    .beneficio-card p {
        font-size: 1rem;
    }
    
    .encontros-card {
        padding: 2.5rem 1.8rem;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .encontros-card h3 {
        font-size: 1.4rem;
    }
    
    .encontros-card p {
        font-size: 1.05rem;
    }
    
    .inscricao {
        padding: 3.5rem 0;
    }
    
    .inscricao-form {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .info-box h4 {
        font-size: 1.1rem;
    }
    
    .info-box li {
        font-size: 0.95rem;
    }
    
    .info-destaque {
        padding: 1.8rem;
    }
    
    .info-text h3 {
        font-size: 1.2rem;
    }
    
    .info-data {
        font-size: 1.15rem;
    }
    
    .info-hora {
        font-size: 0.95rem;
    }
    
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.3rem;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-logo p {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .btn-large {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .inscricao-form {
        padding: 1.2rem;
    }
}

/* ===== POP-UP DE SUCESSO MODERNO ===== */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.success-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-popup {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    box-shadow: 0 24px 60px rgba(96, 14, 19, 0.3);
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.success-popup-overlay.active .success-popup {
    transform: scale(1) translateY(0);
}

.success-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-wine), var(--color-gold), var(--color-wine));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-wine), var(--color-wine-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 8px 24px rgba(96, 14, 19, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(96, 14, 19, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(96, 14, 19, 0.4), 0 0 40px rgba(174, 150, 10, 0.3); }
}

.success-popup h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-wine);
    margin-bottom: 1rem;
    text-align: center;
}

.success-popup-content {
    text-align: center;
    margin-bottom: 2rem;
}

.success-popup-info {
    background: linear-gradient(135deg, #faf8f7, #ffffff);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid var(--color-pearl);
}

.success-popup-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-pearl-light);
}

.success-popup-info p:last-child {
    border-bottom: none;
}

.success-popup-info strong {
    color: var(--color-wine);
    font-weight: 600;
}

.success-popup-warning {
    background: linear-gradient(135deg, #fff9e6, #fffef5);
    border-left: 4px solid var(--color-gold);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.success-popup-warning strong {
    color: var(--color-gold-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.success-popup-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--color-wine), var(--color-wine-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(96, 14, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.success-popup-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.success-popup-btn:hover::before {
    width: 300px;
    height: 300px;
}

.success-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(96, 14, 19, 0.4), var(--shadow-glow);
}

.success-popup-btn:active {
    transform: translateY(0);
}

/* Animação de confete */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    opacity: 0;
    animation: confettiFall 3s ease-out infinite;
}

@keyframes confettiFall {
    0% { 
        opacity: 1; 
        transform: translateY(-100px) rotate(0deg);
    }
    100% { 
        opacity: 0; 
        transform: translateY(500px) rotate(720deg);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .success-popup {
        padding: 2rem;
        max-width: 90%;
    }
    
    .success-popup h2 {
        font-size: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Classe para bloquear scroll da página */
body.popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ===== POP-UP DE LOADING ===== */
.loading-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-popup {
    background: white;
    border-radius: 24px;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.loading-popup-overlay.active .loading-popup {
    transform: scale(1);
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
}

.loading-spinner-ring {
    width: 100%;
    height: 100%;
    border: 6px solid var(--color-pearl);
    border-top-color: var(--color-wine);
    border-right-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 4px solid transparent;
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite reverse;
}

.loading-popup h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-wine);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.loading-popup p {
    color: var(--color-castle);
    font-size: 1.05rem;
}

.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Efeito de partículas de fundo */
.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.loading-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.loading-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.loading-particle:nth-child(2) {
    left: 30%;
    animation-delay: 0.5s;
}

.loading-particle:nth-child(3) {
    left: 50%;
    animation-delay: 1s;
}

.loading-particle:nth-child(4) {
    left: 70%;
    animation-delay: 1.5s;
}

.loading-particle:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateX(-10px) scale(1);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

@media (max-width: 768px) {
    .loading-popup {
        padding: 2.5rem 3rem;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loading-popup h3 {
        font-size: 1.3rem;
    }
}
