/*
Theme Name: Seminário de Saúde e Segurança no Audiovisual
Description: Tema personalizado para o evento Seminário de Saúde e Segurança no Audiovisual
Author: Seu Nome
Version: 1.0
Text Domain: seminario-av
*/

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

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFA500;
    --primary-black: #0d0d0d;
    --light-black: #2d2d2d;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #333333;
    --accent-yellow: #FFED4A;
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

/* ====================================
   ELEMENTOR COMPATIBILITY
==================================== */

/* Reset Elementor containers to use theme width */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1400px;
}

/* Elementor page content styling */
.elementor-page-content {
    padding-top: 100px; /* Account for fixed header */
}

/* Remove padding for canvas template */
.elementor-page.elementor-page-canvas .elementor-page-content {
    padding-top: 0;
}

/* Ensure Elementor inherits theme colors */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
    color: inherit;
}

/* Elementor button styling */
.elementor-widget-button .elementor-button {
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.elementor-widget-button .elementor-button.elementor-button-primary {
    background: var(--gradient-yellow);
    color: var(--primary-black);
}

.elementor-widget-button .elementor-button.elementor-button-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

/* Elementor icon styling */
.elementor-widget-icon .elementor-icon {
    color: var(--primary-yellow);
}

/* Full width support */
.elementor-page .container,
.elementor-page .elementor-container {
    max-width: 1400px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .elementor-page-content {
        padding-top: 80px;
    }
}

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

/* WordPress Specific Styles */
.wp-block-group {
    margin: 0;
}

.alignwide {
    max-width: 1200px;
    margin: 0 auto;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Header Styles */
.header {
    background: var(--primary-black);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo i {
    font-size: 1.8rem;
}

/* Logo image styles */
.logo-image {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img {
    max-height: 80px;
    max-width: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

/* Remover Archives e Categories do footer */
.footer .widget_archive,
.footer .widget_categories,
.footer-section .widget_archive,
.footer-section .widget_categories,
aside[class*="widget_archive"],
aside[class*="widget_categories"] {
    display: none !important;
}

/* Remover qualquer elemento que contenha Archives ou Categories */
.footer *:has-text("Archives"),
.footer *:has-text("Categories"),
.footer *:has-text("Uncategorized"),
.footer *:has-text("September 2025") {
    display: none !important;
}

/* Remover listas específicas */
.footer ul:has(li:contains("September 2025")),
.footer ul:has(li:contains("Uncategorized")) {
    display: none !important;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.btn-cadastro {
    background: var(--gradient-yellow);
    color: var(--primary-black) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-cadastro:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-cadastro-header {
    background: var(--gradient-yellow);
    color: var(--primary-black) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-decoration: none;
    display: inline-block !important;
    transition: all 0.3s ease;
    margin-right: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cadastro-header::before,
.btn-cadastro-header::after {
    display: none !important;
}

.btn-cadastro-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

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

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

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--text-white);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-yellow);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.info-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-yellow);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

/* Sindcine Logo in Hero Section */
.sindcine-hero-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
}

.sindcine-logo-hero {
    max-height: 320px;
    max-width: 800px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.sindcine-logo-hero:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Logo text styles */
.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient-yellow);
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text img {
    display: block !important;
    width: 100% !important;
    max-width: 800px !important;
    height: auto !important;
    margin-bottom: 2rem !important;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Program Section */
.program {
    background: var(--primary-black);
    color: var(--text-white);
}

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

.program-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-yellow);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-black), 0 0 0 6px var(--primary-yellow);
}

.timeline-time {
    min-width: 150px;
    font-weight: 600;
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-left: 60px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.timeline-content ul {
    margin: 12px 0;
    padding-left: 20px;
    color: var(--text-gray);
}

.timeline-content ul li {
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.timeline-item.highlight {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
}

.timeline-item.highlight .timeline-content h3 {
    color: var(--primary-yellow);
}

.timeline-item.highlight .timeline-content p {
    color: #e0e0e0;
}

.timeline-item.highlight .timeline-content ul,
.timeline-item.highlight .timeline-content li {
    color: #e0e0e0;
}

/* Dual Timeline Layout */
.program-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.program-day {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 204, 2, 0.2);
}

.day-title {
    font-size: 1.5em;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
    font-weight: 700;
}

.program-header {
    background: rgba(255, 215, 0, 0.08);
    padding: 20px;
    border-left: 4px solid var(--primary-yellow);
    border-radius: 8px;
    margin-bottom: 30px;
}

.program-header p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .program-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .program-day {
        padding: 20px;
    }
    
    .day-title {
        font-size: 1.3em;
    }
    
    .timeline-time {
        min-width: 120px;
        font-size: 1rem;
        margin-left: 50px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

/* Speakers Section */
.speakers {
    background: #f8f9fa;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.speaker-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-yellow);
}

.speaker-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 1rem 0 0.8rem 0;
    line-height: 1.3;
}

.speaker-title {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
    text-align: left;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.speaker-bio {
    color: #666;
    line-height: 1.6;
}

/* Estilos removidos - não usados mais:
.speaker-photo, .speaker-photo i, .speaker-photo img */

/* Registration Section */
.registration {
    background: var(--gradient-dark);
    color: var(--text-white);
    position: relative;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.registration .container {
    position: relative;
    z-index: 2;
}

.registration .section-title {
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.registration .section-subtitle {
    color: var(--text-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

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

.registration .benefits-list {
    margin-top: 2rem;
}

.registration .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.benefit-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    width: 20px;
}

.registration-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-black);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Palestras Group Styles */
.palestras-group {
    background: #f8f9fa;
    padding: 0;
    border-radius: 0;
    border: none;
}

.palestras-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    display: block;
}

/* Dropdown Toggle Button */
.palestras-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.palestras-dropdown-toggle:hover {
    border-color: var(--primary-yellow);
    background: #fffbf0;
}

.palestras-dropdown-toggle:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

.palestras-dropdown-toggle.open {
    border-color: var(--primary-yellow);
    background: #fffbf0;
    border-radius: 8px 8px 0 0;
}

.palestras-dropdown-toggle.open i {
    transform: rotate(180deg);
}

.palestras-dropdown-toggle i {
    color: var(--primary-yellow);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Count Badge */
.dropdown-count {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0.5rem;
}

.dropdown-text {
    flex: 1;
}

/* Dropdown Panel */
.palestras-dropdown-panel {
    background: white;
    border: 2px solid var(--primary-yellow);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0;
    margin-top: -2px;
    animation: slideDown 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
}

/* Palestras Options Container */
.palestras-options {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
}

/* Individual Checkbox Item */
.palestra-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    user-select: none;
}

.palestra-checkbox-item:hover {
    background: #fffbf0;
    border-color: var(--primary-yellow);
}

.palestra-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 0.15rem;
    cursor: pointer;
    accent-color: var(--primary-yellow);
}

/* Text Container for Palestra Info */
.palestra-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.palestra-option-text strong {
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.palestra-title {
    color: var(--dark-yellow);
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
}

.palestra-speakers {
    display: none;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .palestras-dropdown-toggle {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }

    .dropdown-count {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        margin: 0 0.35rem;
    }

    .palestra-checkbox-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .palestra-option-text strong {
        font-size: 0.85rem;
    }

    .palestra-title {
        font-size: 0.8rem;
    }

    .palestras-dropdown-panel {
        max-height: 300px;
    }
}

.terms-link {
    color: var(--dark-yellow);
    text-decoration: underline;
}

.submit-button {
    background: var(--gradient-yellow);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-yellow);
    width: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links p {
    margin: 0;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-links i {
    color: var(--primary-yellow);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--light-black);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.developer-credit {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

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

.developer-credit a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

/* WordPress Form Styles */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.wpcf7-submit {
    background: var(--gradient-yellow);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        padding: 1.5rem 1rem;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .speaker-card {
        padding: 1.5rem;
        border-radius: 8px;
        min-height: auto;
    }
    
    .speaker-name {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }
    
    .speaker-title {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-time {
        margin-left: 60px;
        min-width: auto;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-form-container {
        padding: 2rem 1.5rem;
    }
    
    .sindcine-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sindcine-links {
        position: static;
    }
    
    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .speaker-card {
        padding: 2rem 1.5rem;
    }
    
    /* Header logo image adjustments for small screens */
    .logo-img {
        max-height: 55px;
        max-width: 180px;
    }
    
    /* Mobile map image */
    .map-image {
        height: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.about-content,
.timeline-item,
.speaker-card,
.registration-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Form validation states */
.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.success,
.form-group select.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.success-message {
    color: #27ae60;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

/* Custom checkbox styling */
.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--gradient-yellow);
    border-color: var(--primary-yellow);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-weight: bold;
    font-size: 12px;
}

/* ====================================
   EXPOSITORES SECTION
==================================== */
.exhibition {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive grid para tablets */
@media (max-width: 1024px) {
    .exhibitors-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

/* Responsive grid para mobile */
@media (max-width: 768px) {
    .exhibitors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .exhibitors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.exhibitor-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

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

.exhibitor-logo {
    width: 70px;
    height: 70px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--primary-black);
    overflow: hidden;
    flex-shrink: 0;
}

.expositor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.exhibitor-logo img.expositor-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

.exhibitor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    text-align: center;
}

.exhibitor-description {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.6;
}

.exhibitor-booth {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.exhibitor-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd54f 100%);
    color: var(--primary-black);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exhibitor-link:hover {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.exhibitor-link-icon {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

/* Legacy font-awesome icon support */
.exhibitor-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.exhibitor-link:hover i {
    transform: translateX(3px);
}

.exhibition-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.exhibition-cta h3 {
    color: var(--primary-black);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.exhibition-cta p {
    color: var(--text-dark);
    margin-bottom: 25px;
}

.cta-button-secondary {
    background: white;
    color: var(--primary-black);
    border: 2px solid var(--primary-yellow);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* ====================================
   APOIADORES SECTION
==================================== */
.supporters {
    padding: 100px 0;
    background: white;
    position: relative;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.supporter-card {
    background: var(--gradient-dark);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.supporter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.supporter-logo {
    width: 70px;
    height: 70px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--primary-black);
    overflow: hidden;
    flex-shrink: 0;
}

.apoiador-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.supporter-logo img.apoiador-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

.supporter-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.supporter-description {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.supporter-category {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.supporter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd54f 100%);
    color: var(--primary-black);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.supporter-link:hover {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.supporter-link-icon {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

/* Responsive grid para apoiadores */
@media (max-width: 1024px) {
    .supporters-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .supporters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .supporters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ====================================
   HOW TO GET THERE SECTION
==================================== */
.how-to-get-there {
    padding: 100px 0;
    background: white;
    position: relative;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.address-card {
    background: var(--gradient-dark);
    color: white;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.address-icon {
    background: var(--primary-yellow);
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.address-details h3 {
    color: var(--primary-yellow);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.venue-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.full-address {
    opacity: 0.9;
    line-height: 1.6;
}

.transport-options h3 {
    color: var(--primary-black);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.transport-grid {
    display: grid;
    gap: 25px;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
}

.transport-item i {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.transport-item h4 {
    color: var(--primary-black);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.transport-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.map-container {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

/* Static Map Styles */
.static-map {
    width: 100%;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border: none;
    transition: transform 0.3s ease;
}

.map-image:hover {
    transform: scale(1.02);
}

.map-actions {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
}

.map-link {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-link:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
}

.arrival-tips {
    margin-top: 60px;
}

.arrival-tips h3 {
    color: var(--primary-black);
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

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

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tip-item i {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.tip-item h4 {
    color: var(--primary-black);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tip-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ====================================
   ABOUT SINDCINE SECTION
==================================== */
.about-sindcine {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
}

/* Força todos os textos da seção Sindcine a serem brancos */
.about-sindcine,
.about-sindcine p,
.about-sindcine div,
.about-sindcine span,
.about-sindcine li {
    color: var(--text-white) !important;
}

/* Exceções para elementos que devem ter cores específicas */
.about-sindcine h1,
.about-sindcine h2,
.about-sindcine h3,
.about-sindcine h4,
.about-sindcine h5,
.about-sindcine h6 {
    color: var(--primary-yellow) !important;
}

.about-sindcine .section-title {
    color: var(--primary-yellow) !important;
}

.about-sindcine .section-subtitle {
    color: var(--text-white) !important;
    opacity: 0.9;
}

.about-sindcine .stat-number {
    color: var(--primary-yellow) !important;
}

.about-sindcine i {
    color: var(--primary-yellow) !important;
}

/* Botões na seção Sindcine */
.about-sindcine .cta-button {
    background: var(--gradient-yellow) !important;
    color: var(--primary-black) !important;
}

.about-sindcine .cta-button:hover {
    color: var(--primary-black) !important;
}

.about-sindcine .cta-button-secondary {
    background: transparent !important;
    color: var(--text-white) !important;
    border: 2px solid var(--primary-yellow) !important;
}

.about-sindcine .cta-button-secondary:hover {
    background: var(--primary-yellow) !important;
    color: var(--primary-black) !important;
}

/* Logo do Sindcine */
.sindcine-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.sindcine-logo {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.sindcine-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.sindcine-content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.sindcine-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.sindcine-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-white);
    opacity: 0.9;
}

.sindcine-links {
    padding: 40px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    width: 100%;
}

.sindcine-links h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.25);
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-yellow);
}

.social-link span {
    flex: 1;
}

/* ====================================
   SPONSORSHIP PAGE STYLES
==================================== */
.sponsorship-page {
    padding-top: 100px;
}

.sponsorship-hero {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.sponsorship-levels {
    padding: 100px 0;
    background: #f8f9fa;
}

.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sponsorship-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.sponsorship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.sponsorship-card.gold {
    border-top: 5px solid #FFD700;
}

.sponsorship-card.silver {
    border-top: 5px solid #C0C0C0;
}

.sponsorship-card.bronze {
    border-top: 5px solid #CD7F32;
}

.sponsorship-header {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sponsorship-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.sponsorship-card.gold .sponsorship-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.sponsorship-card.silver .sponsorship-icon {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #1a1a1a;
}

.sponsorship-card.bronze .sponsorship-icon {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: white;
}

.sponsorship-title {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.sponsorship-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.sponsorship-benefits {
    padding: 30px;
}

.sponsorship-benefits h4 {
    color: var(--primary-black);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefits-list i {
    color: #27ae60;
    margin-top: 2px;
    flex-shrink: 0;
}

.sponsorship-cta {
    padding: 30px;
    background: #f8f9fa;
}

.sponsor-button {
    width: 100%;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.gold-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--primary-black);
}

.silver-button {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: var(--primary-black);
}

.bronze-button {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: white;
}

.sponsor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-sponsor {
    padding: 100px 0;
    background: white;
}

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

.reason-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-black);
}

.reason-item h3 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.event-numbers {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
}

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

.number-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.number-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.sponsorship-contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    color: var(--primary-black);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--primary-black);
    font-size: 1.1rem;
}

.contact-item small {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.sponsor-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sponsor-form h3 {
    color: var(--primary-black);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

/* ====================================
   RESPONSIVE DESIGN - NEW SECTIONS
==================================== */

/* Large screens - maintain 3 columns */
@media (min-width: 1200px) {
    .exhibitors-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

/* Medium screens - 2 columns */
@media (max-width: 1199px) and (min-width: 769px) {
    .exhibitors-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .exhibitors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .address-card {
        flex-direction: column;
        text-align: center;
    }

    .transport-grid {
        gap: 20px;
    }

    .transport-item {
        flex-direction: column;
        text-align: center;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .sindcine-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sindcine-logo {
        max-height: 50px;
        max-width: 120px;
    }
    
    /* Sindcine hero logo adjustments */
    .sindcine-logo-hero {
        max-height: 200px;
        max-width: 400px;
    }
    
    .sindcine-hero-logo {
        margin-bottom: 1.5rem;
        padding-top: 0.5rem;
        justify-content: flex-start;
    }
    
    /* Header logo text adjustments */
    .logo-text {
        font-size: 0.9rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sponsorship-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .map-actions {
        flex-direction: column;
    }
}

/* ====================================
   ADDITIONAL HEADER RESPONSIVENESS
==================================== */

/* Large screens */
@media (min-width: 1400px) {
    .nav-links {
        gap: 2rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Medium to large screens */
@media (max-width: 1200px) and (min-width: 769px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .container {
        max-width: 1100px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .logo-image {
        max-height: 50px;
        max-width: 160px;
    }
    
    .sindcine-logo {
        max-height: 60px;
        max-width: 150px;
    }
    
    /* Sindcine hero logo adjustments */
    .sindcine-logo-hero {
        max-height: 240px;
        max-width: 600px;
    }
    
    .sindcine-hero-logo {
        margin-bottom: 2rem;
        padding-top: 0.8rem;
        justify-content: flex-start;
    }
    
    /* Header logo text adjustments */
    .logo-text {
        font-size: 1rem;
    }
    
    /* Header logo image adjustments */
    .logo-img {
        max-height: 65px;
        max-width: 220px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Tablet portrait and small laptops */
@media (max-width: 900px) and (min-width: 769px) {
    .nav-links {
        gap: 0.6rem;
    }
    
    .nav-link {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    
    .btn-cadastro {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile transition point */
@media (max-width: 768px) {
    .nav {
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .logo {
        flex-shrink: 0;
        min-width: auto;
        max-width: calc(100% - 120px);
    }
    
    .logo-text {
        font-size: 0.75rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .btn-cadastro-header {
        z-index: 1001;
        flex-shrink: 0;
        margin-right: 0 !important;
        margin-left: auto;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.65rem !important;
        white-space: nowrap;
    }
    
    .header.scrolled {
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .logo-image {
        max-height: 40px;
        max-width: 120px;
    }
}

/* ====================================
   ADDITIONAL ELEMENTOR STYLES
==================================== */

/* Elementor widgets color inheritance */
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-widget-text-editor div {
    color: inherit;
}

/* Elementor sections with theme backgrounds */
.elementor-section.elementor-section-height-full {
    min-height: 100vh;
}

/* Theme color classes for Elementor */
.elementor-yellow-text {
    color: var(--primary-yellow) !important;
}

.elementor-black-text {
    color: var(--primary-black) !important;
}

.elementor-white-text {
    color: var(--text-white) !important;
}

.elementor-yellow-bg {
    background: var(--gradient-yellow) !important;
}

.elementor-dark-bg {
    background: var(--gradient-dark) !important;
}

/* Elementor form styling */
.elementor-widget-form .elementor-field-group > label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.elementor-widget-form .elementor-field {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.elementor-widget-form .elementor-field:focus {
    border-color: var(--primary-yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.elementor-widget-form .elementor-button {
    background: var(--gradient-yellow);
    color: var(--primary-black);
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.elementor-widget-form .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Elementor heading styles */
.elementor-widget-heading .elementor-heading-title {
    line-height: 1.2;
}

/* Elementor divider with theme colors */
.elementor-widget-divider .elementor-divider-separator {
    border-color: var(--primary-yellow);
}

/* Elementor icon list with theme colors */
.elementor-widget-icon-list .elementor-icon-list-icon {
    color: var(--primary-yellow);
}

/* Elementor counter with theme colors */
.elementor-widget-counter .elementor-counter-number-wrapper {
    color: var(--primary-yellow);
}

/* Elementor testimonial styling */
.elementor-widget-testimonial .elementor-testimonial-content {
    color: inherit;
}

.elementor-widget-testimonial .elementor-testimonial-name {
    color: var(--primary-yellow);
}

/* Elementor social icons */
.elementor-widget-social-icons .elementor-social-icon {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.elementor-widget-social-icons .elementor-social-icon:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
}

/* Fix Elementor popup z-index issues */
.elementor-popup-modal {
    z-index: 999999;
}

/* Elementor container spacing */
.elementor-container {
    padding-left: 20px;
    padding-right: 20px;
}

/* ====================================
   TERMS MODAL
==================================== */

.terms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    padding: 20px;
}

.terms-modal {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terms-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #f0f0f0;
    background: var(--gradient-yellow);
    border-radius: 15px 15px 0 0;
}

.terms-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
}

.terms-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-black);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    font-weight: 300;
    font-family: Arial, sans-serif;
}

.terms-modal-close:hover {
    transform: rotate(90deg);
    color: #666;
}

.terms-modal-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.terms-modal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-modal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.terms-modal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
    text-align: justify;
}

.terms-modal-content p strong {
    color: var(--primary-black);
    font-weight: 600;
}

.terms-modal-content a {
    color: var(--dark-yellow);
    text-decoration: none;
    font-weight: 500;
}

.terms-modal-content a:hover {
    text-decoration: underline;
}

.terms-date {
    margin-top: 2rem;
    text-align: right;
    font-style: italic;
    color: #666;
}

.terms-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: center;
}

.terms-accept-btn {
    background: var(--gradient-yellow);
    color: var(--primary-black);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.terms-accept-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .terms-modal {
        max-height: 95vh;
        margin: 10px;
    }
    
    .terms-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .terms-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .terms-modal-content {
        padding: 1.5rem;
    }
    
    .terms-modal-content h3 {
        font-size: 1.1rem;
    }
    
    .terms-modal-content h4 {
        font-size: 1rem;
    }
    
    .terms-modal-content p {
        font-size: 0.9rem;
    }
    
    .terms-accept-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .elementor-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Responsive map image */
    .map-image {
        height: 300px;
    }
}

/* ====================================
   NOVOS ESTILOS PARA FORMULÁRIO AMPLIADO
==================================== */

/* Fieldset Styles */
.form-fieldset {
    border: none;
    padding: 1.5rem 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.form-fieldset:last-of-type {
    border-bottom: none;
}

.fieldset-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.2rem;
    display: block;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-yellow);
    width: fit-content;
}

/* Radio Group Styles */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
}

.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    margin: 0;
    padding: 0;
}

.radio-label input[type="radio"]:hover {
    border-color: var(--primary-yellow);
}

.radio-label input[type="radio"]:checked {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    box-shadow: inset 0 0 0 4px white;
}

.radio-label input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.radio-checkmark {
    display: none;
}

/* Radio Button Group Styles */
.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

/* Radio Label Styling */
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-label .radio-checkmark {
    display: flex;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-checkmark {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.radio-label input[type="radio"]:checked + .radio-checkmark::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-black);
    display: block;
}

.radio-label input[type="radio"]:focus + .radio-checkmark {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.radio-label:hover .radio-checkmark {
    border-color: var(--primary-yellow);
}

/* Inline Checkbox Styling (for Newsletter and Terms) */
.checkbox-inline-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

.checkbox-inline-label input[type="checkbox"] {
    display: none;
}

.checkbox-inline-label .checkbox-inline-mark {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.checkbox-inline-label input[type="checkbox"]:checked + .checkbox-inline-mark {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.checkbox-inline-label input[type="checkbox"]:checked + .checkbox-inline-mark::after {
    content: '✓';
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkbox-inline-label input[type="checkbox"]:focus + .checkbox-inline-mark {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.checkbox-inline-label:hover .checkbox-inline-mark {
    border-color: var(--primary-yellow);
}

/* Checkbox with Radio Style (square checkbox appearance) */
.radio-label input[type="checkbox"] + .radio-checkmark {
    display: flex;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.radio-label input[type="checkbox"]:checked + .radio-checkmark {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.radio-label input[type="checkbox"]:checked + .radio-checkmark::after {
    content: '✓';
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 700;
}

.radio-label input[type="checkbox"]:focus + .radio-checkmark {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* Enhanced Checkbox Styles */
.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* Select Styling Improvements */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFD700' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select::-ms-expand {
    display: none;
}

/* Placeholder styling for inputs */
.form-group input::placeholder,
.form-group select > option:first-child {
    color: #999;
}

/* Error and Success States */
.form-group.error input,
.form-group.error select {
    border-color: #e74c3c;
    background: #ffe6e6;
}

.form-group.error input:focus,
.form-group.error select:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.success input,
.form-group.success select {
    border-color: #27ae60;
    background: #e8f8f5;
}

.form-group.success input:focus,
.form-group.success select:focus {
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Error and Success Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.error-message::before {
    content: '⚠';
    font-weight: bold;
}

.success-message {
    color: #27ae60;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.success-message::before {
    content: '✓';
    font-weight: bold;
}

/* Conditional Show/Hide Transitions */
[style*="display: none"] {
    animation: slideUp 0.3s ease-out !important;
}

[style*="display"]:not([style*="display: none"]) {
    animation: slideDown 0.3s ease-out !important;
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
    }
    to {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .registration-form-container {
        padding: 1.5rem;
    }

    .form-fieldset {
        padding: 1rem 0;
    }

    .fieldset-title {
        font-size: 1rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}