/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Variáveis CSS */
:root {
    --primary-color: #c41e3a;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Hierarquia Tipográfica */
    --font-primary: 'Inter', sans-serif;
    --font-titles: 'Tilt Warp', sans-serif;
    --font-subtitles: 'Average Sans', sans-serif;
    --gradient-primary: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
    --gradient-secondary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* Hierarquia Tipográfica */
h1, h2 {
    font-family: var(--font-titles);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h3, h4, h5, h6 {
    font-family: var(--font-subtitles);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

h5 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

h6 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

/* Botões */
.btn-primary, .btn-secondary, .btn-plan {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    /* Fallback para navegadores que não suportam backdrop-filter */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('imagens/fundo-hero-01.png') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(44, 62, 80, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    margin-bottom: 20px;
    color: white;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle-main {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    margin-top: 10px;
    color: white;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: white;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.info-item i {
    color: var(--accent-color);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Sobre o Evento */
.about-event {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}



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

/* Por que Patrocinar */
.why-sponsor {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

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

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", FontAwesome;
    font-weight: 900;
    display: inline-block;
    line-height: 1;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-sponsor-cta {
    text-align: center;
}

/* Cotas de Patrocínio */
.sponsorship-plans {
    background: var(--light-gray);
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.plan-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.plan-card:nth-child(1) .plan-badge {
    background: linear-gradient(135deg, #C0C0C0, #E5E5E5);
    color: #333;
}

.plan-card:nth-child(2) .plan-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.plan-card:nth-child(3) .plan-badge {
    background: linear-gradient(135deg, #708090, #2F4F4F);
    color: white;
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features ul {
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
    list-style: none;
    list-style-type: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-availability {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.plan-cta {
    margin-top: auto;
}

.btn-plan {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    width: 100%;
    text-align: center;
}

.btn-plan:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.plans-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .plan-card {
        padding: 35px 25px;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .sponsorship-plans {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .plan-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .sponsorship-plans {
        padding: 50px 0;
    }
    
    .plans-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .plan-card {
        padding: 25px 15px;
    }
    
    .plan-header h3 {
        font-size: 1.4rem;
    }
    
    .btn-plan {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Resultados Anteriores */
.previous-results {
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.result-item {
    text-align: center;
    padding: 30px 20px;
}

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

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

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.result-label {
    color: var(--text-light);
    font-weight: 500;
}

.results-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.results-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    position: relative;
    padding: 30px;
}

.results-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 0;
    font-family: serif;
}

/* Formulário de Contato */
.contact-form {
    background: var(--primary-color);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-guarantee i {
    color: var(--primary-color);
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

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

/* Seção FAQ */
.faq-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Rodapé */
.footer {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-contact-evandro h3,
.footer-contact-suzana h3,
.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 2px 0;
    opacity: 0.9;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    margin-top: 10px;
    opacity: 0.8;
    font-style: italic;
}

.footer-agency {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--text-light);
}

.footer-agency a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-agency a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */

/* Desktop grande - acima de 1024px */
@media (min-width: 1025px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 1024px) {
}

/* Menu Mobile Responsivo */
.nav-menu.active {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 0 0 12px 12px;
    animation: slideDown 0.3s ease-out;
    z-index: 999;
}

.nav-menu.active ul {
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu.active a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.nav-menu.active a:hover {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet - 768px a 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu ul {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .header-cta .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 25px;
    }
}

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

    .header-content {
        position: relative;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle-main {
        font-size: 1.5rem;
    }

    .hero-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* Mobile pequeno - até 480px */
@media (max-width: 480px) {
    .header-fixed {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        width: 30px;
        height: 24px;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
    }
    
    .nav-menu.active {
        padding: 15px;
        margin: 0 10px;
        border-radius: 0 0 8px 8px;
    }
    
    .nav-menu.active a {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.2rem;
    }
}

/* Tablet menor - 481px a 767px */
@media (max-width: 767px) and (min-width: 481px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

/* Mobile - até 480px */
@media (max-width: 480px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile muito pequeno - até 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .header-fixed {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-menu.active {
        padding: 12px;
        margin: 0 5px;
    }
    
    .nav-menu.active a {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
        gap: 20px;
    }

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

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1, .hero-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.3rem;
    }

    h5 {
        font-size: 1.2rem;
    }

    h6 {
        font-size: 1.1rem;
    }

    .hero-subtitle-main {
        font-size: 1.3rem;
    }
}

/* Revista M&T */
.magazine-section {
    background: var(--light-gray);
}

.magazine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.magazine-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.magazine-cover,
.magazine-open {
    max-width: 260px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.magazine-cover:hover,
.magazine-open:hover {
    transform: translateY(-5px);
}

.magazine-benefits {
    display: grid;
    gap: 30px;
}

.magazine-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.magazine-benefit i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 24px;
}

.magazine-benefit h4 {
    margin-bottom: 8px;
}

.magazine-benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Programação do Evento */
.event-schedule {
    background: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.schedule-day {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.schedule-date {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.schedule-date h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.schedule-location {
    color: var(--text-light);
    font-weight: 500;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-time {
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
}

.timeline-content h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Call to Action Exclusivo */
.exclusive-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exclusive-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusive-cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Estudo de Mercado */
.market-study {
    background: var(--light-gray);
}

.study-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

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

.study-cover {
    max-width: 400px;
    height: 390px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.study-cover:hover {
    transform: translateY(-8px);
}

.study-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.study-highlight {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.study-highlight i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.study-highlight h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.study-highlight p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .magazine-content,
    .schedule-grid,
    .study-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .magazine-images {
        justify-content: center;
    }

    .magazine-cover,
    .magazine-open {
        max-width: 120px;
    }

    .schedule-day {
        padding: 30px 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .timeline-time {
        align-self: flex-start;
        min-width: auto;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .study-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .study-highlight {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .schedule-day {
        padding: 25px 15px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .magazine-cover,
    .magazine-open {
        max-width: 100px;
    }

    .study-cover {
        max-width: 200px;
    }
}

/* Estilos para o Símbolo da Marca Tendências */

/* Hero Section - Símbolo da Marca */
.hero-brand-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tendencias-logo {
    margin-top: 150px !important;
    width: 70%;
    max-width: 600px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.tendencias-logo:hover {
    transform: scale(1.05);
}

.hero-brand-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tendencias-symbol {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.tendencias-symbol:hover {
    transform: scale(1.05);
}

/* About Section - Símbolo da Marca */
.about-brand-symbol {
    text-align: center;
    margin-bottom: 30px;
}

.about-tendencias-symbol {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.about-tendencias-symbol:hover {
    transform: scale(1.05);
}

/* Footer - Símbolo da Marca */
.footer-tendencias-symbol {
    margin-top: 20px;
    text-align: center;
}

.footer-symbol-img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-symbol-img:hover {
    opacity: 1;
}

/* Responsividade para o Símbolo da Marca */
@media (max-width: 768px) {
    .hero-brand-section {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .tendencias-symbol {
        height: 60px;
    }
    
    .about-tendencias-symbol {
        height: 90px;
    }
    
    .footer-symbol-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-brand-section {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .tendencias-symbol {
        height: 50px;
    }
    
    .about-tendencias-symbol {
        height: 70px;
    }
    
    .footer-symbol-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
        min-width: 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* ===== SEÇÃO PALESTRANTES ===== */
.palestrantes {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.palestrante-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.palestrante-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.palestrante-foto {
    margin-bottom: 1.5rem;
}

.palestrante-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.palestrante-card:hover .palestrante-img {
    transform: scale(1.05);
}

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

.palestrante-nome {
    font-family: var(--font-subtitles);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.palestrante-cargo {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.palestrante-curriculo {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}

/* Responsividade para Palestrantes */
@media (max-width: 768px) {
    .palestrantes {
        padding: 60px 0;
    }
    
    .palestrantes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .palestrante-card {
        padding: 1.5rem;
    }
    
    .palestrante-img {
        width: 100px;
        height: 100px;
    }
    
    .palestrante-nome {
        font-size: 1.2rem;
    }
    
    .palestrante-cargo {
        font-size: 0.9rem;
    }
    
    .palestrante-curriculo {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .palestrantes {
        padding: 50px 0;
    }
    
    .palestrante-card {
        padding: 1.2rem;
    }
    
    .palestrante-img {
        width: 80px;
        height: 80px;
    }
    
    .palestrante-nome {
        font-size: 1.1rem;
    }
    
    .palestrante-cargo {
        font-size: 0.85rem;
    }
    
    .palestrante-curriculo {
        font-size: 0.85rem;
    }
}

/* Botão Ver Mais */
.btn-ver-mais {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-ver-mais:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ff6b35;
    text-decoration: none;
}

.modal-palestrante {
    display: flex;
    gap: 30px;
    padding: 40px;
}

.modal-foto {
    flex: 0 0 250px;
}

.modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-info {
    flex: 1;
}

.modal-info h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.modal-info h3 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.modal-curriculo h4 {
    color: #34495e;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 5px;
    display: inline-block;
}

.modal-curriculo p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.modal-curriculo ul {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-curriculo li {
    margin-bottom: 8px;
}

.modal-curriculo strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsividade dos Modais */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-palestrante {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .modal-foto {
        flex: none;
        align-self: center;
    }
    
    .modal-img {
        width: 200px;
        height: 240px;
    }
    
    .modal-info h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .modal-info h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .close {
        right: 15px;
        top: 10px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 10px;
    }
    
    .modal-palestrante {
        padding: 20px 15px;
    }
    
    .modal-img {
        width: 150px;
        height: 180px;
    }
    
    .modal-info h2 {
        font-size: 1.4rem;
    }
    
    .modal-info h3 {
        font-size: 1rem;
    }
    
    .modal-curriculo h4 {
        font-size: 1rem;
    }
    
    .modal-curriculo p,
    .modal-curriculo ul {
        font-size: 0.9rem;
    }
    
    .btn-ver-mais {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ===== SEÇÃO DE PATROCINADORES ===== */

.sponsors-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.sponsors-section .container {
    position: relative;
    z-index: 1;
}

.sponsors-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sponsors-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tiers de Patrocinadores */
.sponsors-tier {
    margin-bottom: 50px;
}

.tier-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.tier-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

/* Cores específicas para cada tier */
.sponsors-tier:nth-child(2) .tier-title {
    color: #8B7355; /* Cor platina */
}

.sponsors-tier:nth-child(2) .tier-title::after {
    background: linear-gradient(135deg, #E5E4E2, #C0C0C0);
}

.sponsors-tier:nth-child(3) .tier-title {
    color: #FFD700; /* Cor ouro */
}

.sponsors-tier:nth-child(3) .tier-title::after {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.sponsors-tier:nth-child(4) .tier-title {
    color: #C0C0C0; /* Cor prata */
}

.sponsors-tier:nth-child(4) .tier-title::after {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
}

/* Grid de Patrocinadores */
.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0;
}

/* Logo do Patrocinador */
.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sponsor-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.sponsor-logo:hover::before {
    left: 100%;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sponsor-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Tamanhos Proporcionais dos Logos */

/* Platina - 100% (tamanho base) */
.sponsors-platina .sponsor-logo {
    width: 280px;
    height: 160px;
}

.sponsors-platina .sponsor-logo img {
    max-height: 120px;
    max-width: 240px;
}

/* Ouro - 75% do tamanho da Platina */
.sponsors-ouro .sponsor-logo {
    width: 210px;
    height: 120px;
}

.sponsors-ouro .sponsor-logo img {
    max-height: 90px;
    max-width: 180px;
}

/* Prata - 60% do tamanho da Platina (15% menor que Ouro) */
.sponsors-prata .sponsor-logo {
    width: 168px;
    height: 96px;
}

.sponsors-prata .sponsor-logo img {
    max-height: 72px;
    max-width: 144px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .sponsors-grid {
        gap: 30px;
    }
    
    .sponsors-platina .sponsor-logo {
        width: 250px;
        height: 140px;
    }
    
    .sponsors-platina .sponsor-logo img {
        max-height: 100px;
        max-width: 210px;
    }
    
    .sponsors-ouro .sponsor-logo {
        width: 188px;
        height: 105px;
    }
    
    .sponsors-ouro .sponsor-logo img {
        max-height: 75px;
        max-width: 158px;
    }
    
    .sponsors-prata .sponsor-logo {
        width: 150px;
        height: 84px;
    }
    
    .sponsors-prata .sponsor-logo img {
        max-height: 60px;
        max-width: 126px;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 60px 0;
    }
    
    .sponsors-section .section-header {
        margin-bottom: 40px;
    }
    
    .tier-title {
        font-size: 1.5rem;
    }
    
    .sponsors-grid {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .sponsors-platina .sponsor-logo {
        width: 200px;
        height: 112px;
    }
    
    .sponsors-platina .sponsor-logo img {
        max-height: 80px;
        max-width: 168px;
    }
    
    .sponsors-ouro .sponsor-logo {
        width: 150px;
        height: 84px;
    }
    
    .sponsors-ouro .sponsor-logo img {
        max-height: 60px;
        max-width: 126px;
    }
    
    .sponsors-prata .sponsor-logo {
        width: 120px;
        height: 67px;
    }
    
    .sponsors-prata .sponsor-logo img {
        max-height: 48px;
        max-width: 101px;
    }
}

@media (max-width: 480px) {
    .sponsors-section {
        padding: 40px 0;
    }
    
    .tier-title {
        font-size: 1.3rem;
    }
    
    .sponsors-grid {
        gap: 15px;
    }
    
    .sponsors-platina .sponsor-logo {
        width: 160px;
        height: 90px;
    }
    
    .sponsors-platina .sponsor-logo img {
        max-height: 64px;
        max-width: 134px;
    }
    
    .sponsors-ouro .sponsor-logo {
        width: 120px;
        height: 68px;
    }
    
    .sponsors-ouro .sponsor-logo img {
        max-height: 48px;
        max-width: 101px;
    }
    
    .sponsors-prata .sponsor-logo {
        width: 96px;
        height: 54px;
    }
    
    .sponsors-prata .sponsor-logo img {
        max-height: 38px;
        max-width: 81px;
    }
}

/* ===== SEÇÃO DO LOCAL DO EVENTO ===== */

.venue-section {
    padding: 80px 0;
    background: var(--light-gray);
}



/* Grid de Informações do Local */
.venue-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Card do Endereço */
.venue-address-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.venue-address-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.venue-address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.address-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.address-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.address-header h3 {
    font-family: var(--font-subtitles);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.address-details {
    margin-bottom: 30px;
}

.address-main {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.address-district,
.address-city {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.address-cep {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    color: white;
    text-decoration: none;
}

.btn-directions i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Card da Imagem do Local */
.venue-image-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.venue-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.venue-image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-image-card:hover .venue-image {
    transform: scale(1.05);
}

.venue-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.venue-name h4 {
    font-family: var(--font-subtitles);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.venue-name p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Seção do Mapa */
.venue-map-section {
    margin-bottom: 60px;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h3 {
    font-family: var(--font-subtitles);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Informações Adicionais */
.venue-additional-info {
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-family: var(--font-subtitles);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Pontos de Referência */
.venue-landmarks h3 {
    font-family: var(--font-subtitles);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.landmark-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.landmark-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.landmark-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

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

/* Responsividade */
@media (max-width: 1200px) {
    .venue-info-grid {
        gap: 30px;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .venue-section {
        padding: 60px 0;
    }
    
    .venue-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .venue-address-card,
    .venue-image-card {
        padding: 30px;
    }
    
    .venue-image-container {
        height: 250px;
    }
    
    .map-header h3 {
        font-size: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .landmarks-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .venue-landmarks h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .venue-section {
        padding: 40px 0;
    }
    
    .venue-address-card,
    .venue-image-card {
        padding: 20px;
    }
    
    .venue-image-container {
        height: 200px;
    }
    
    .address-header h3 {
        font-size: 1.3rem;
    }
    
    .address-main {
        font-size: 1.1rem;
    }
    
    .btn-directions {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .map-header h3 {
        font-size: 1.3rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.3rem;
    }
    
    .info-content h4 {
        font-size: 1.1rem;
    }
    
    .landmark-item {
        padding: 15px;
    }
    
    .landmark-item span {
        font-size: 0.9rem;
    }
}

/* Seção de Cadastro de Convidados */
.guest-registration {
    background: var(--primary-color);
    padding: 100px 0;
}

.guest-registration .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.guest-registration .section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.guest-registration .section-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.guest-registration .section-line {
    width: 60px;
    height: 4px;
    background: var(--white);
    margin: 20px 0 30px 0;
}

.guest-registration .section-description {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
}



.registration-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.guest-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guest-form {
    display: grid;
    gap: 25px;
}

.guest-form .form-group {
    margin-bottom: 0;
}

.guest-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-subtitles);
}

.guest-form .form-group input,
.guest-form .form-group textarea,
.guest-form .form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.guest-form .form-group input:focus,
.guest-form .form-group textarea:focus,
.guest-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
    transform: translateY(-1px);
}

.guest-form .form-group input:hover,
.guest-form .form-group textarea:hover,
.guest-form .form-group select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.guest-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c41e3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.guest-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.guest-form .form-group textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.guest-form .form-submit {
    margin-top: 20px;
    text-align: center;
}

.guest-form .btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-subtitles);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.guest-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.guest-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    background: linear-gradient(135deg, #a01729 0%, #c41e3a 100%);
}

.guest-form .btn-primary:hover::before {
    left: 100%;
}

.guest-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

.guest-form .btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.3);
}

/* Estados de validação */
.guest-form .form-group input:invalid:not(:placeholder-shown),
.guest-form .form-group select:invalid:not([value=""]) {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Checkbox group styles */
.guest-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.guest-form .checkbox-group.checkbox-horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.guest-form .checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.guest-form .checkbox-item:hover {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.02);
}

.guest-form .checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
    border-radius: 4px;
}

.guest-form .checkbox-item label {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    flex: 1;
}

.guest-form .checkbox-item input[type="checkbox"]:checked + label {
    color: var(--primary);
    font-weight: 600;
}

.guest-form .checkbox-item:has(input[type="checkbox"]:checked) {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.05);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.1);
}

.guest-form .form-group input:valid,
.guest-form .form-group select:valid {
    border-color: #27ae60;
}

/* Responsividade para a seção de cadastro */
@media (max-width: 768px) {
    .guest-registration .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guest-registration {
        padding: 60px 0;
    }
    
    .registration-form-container {
        margin: 0 20px;
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .guest-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .guest-registration .section-header h2 {
        font-size: 2rem;
    }
    
    .guest-form .checkbox-group.checkbox-horizontal {
        flex-direction: column;
        gap: 12px;
    }
    
    .guest-form .form-group input,
    .guest-form .form-group textarea,
    .guest-form .form-group select {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .guest-form .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .registration-form-container {
        margin: 0 15px;
        padding: 25px 20px;
    }
    
    .guest-registration .section-header h2 {
        font-size: 1.8rem;
    }
    
    .guest-registration .section-subtitle {
        font-size: 1.1rem;
    }
    
    .guest-form .form-group label {
        font-size: 0.95rem;
    }
    
    .guest-form .form-group input,
    .guest-form .form-group textarea,
    .guest-form .form-group select {
        padding: 12px 14px;
        font-size: 16px;
    }
}