/* CBENC - Congresso Brasileiro de Enfermagem - Styles Otimizado ✨ */
/* Design Moderno com Gradientes, Animações e Glassmorphism */

:root {
    --primary-green: #10b981;
    --secondary-light-green: #34d399;
    --accent-dark-green: #047857;
    --medical-white: #FFFFFF;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #f9fafb;
    --background-light: #f0fdf4;
    --background-white: #FFFFFF;
    --border-gray: #d1d5db;
    --emerald-100: #d1fae5;
    --emerald-900: #064e3b;
    
    --shadow-sm: 0 2px 8px rgba(16, 185, 129, 0.1);
    --shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    --shadow-hover: 0 20px 60px rgba(16, 185, 129, 0.25);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--accent-dark-green);
    transform: translateY(-1px);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animações Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.6); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header com Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: var(--shadow);
}

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

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

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

.logo p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-light-green));
    opacity: 0;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav a:hover::before {
    opacity: 0.1;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-light-green));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav a:hover::after,
.nav a.active::after {
    width: 80%;
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-light-green));
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Espetacular */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        #064e3b 0%, 
        #047857 25%, 
        #10b981 50%, 
        #34d399 75%, 
        #6ee7b7 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: var(--text-light);
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    animation: slide-in-up 1s ease-out;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slide-in-up 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slide-in-up 1s ease-out 0.4s both;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: slide-in-up 1s ease-out 0.6s both;
}

.info-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.info-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slide-in-up 1s ease-out 0.8s both;
}

/* Buttons - Premium */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-light-green), #6ee7b7);
    color: var(--accent-dark-green);
    box-shadow: 0 10px 30px rgba(52, 211, 153, 0.4);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(52, 211, 153, 0.5);
    background: linear-gradient(135deg, #6ee7b7, var(--secondary-light-green));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-green);
    border-color: var(--text-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Sections Melhoradas */
.section {
    padding: 6rem 0;
    position: relative;
}

.section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-light-green));
    border-radius: 2px;
}

.section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 2rem auto 0;
}

.programacao {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.inscricoes {
    background: var(--background-white);
}

.submissao {
    background: linear-gradient(135deg, #d1fae5 0%, #f0fdf4 100%);
}

.about {
    background: var(--background-white);
}

.contact {
    background: linear-gradient(135deg, var(--accent-dark-green), var(--primary-green));
    color: var(--text-light);
}

.content-section {
    background: var(--background-white);
    padding: 5rem 0;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.content-section h3 {
    margin: 3rem 0 1.5rem 0;
    font-size: 2rem;
}

.content-section p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0 2.5rem 2.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Programação Grid - Elegante */
.programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.dia-programacao {
    background: var(--background-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 5px solid transparent;
    background-image: linear-gradient(var(--background-white), var(--background-white)),
                      linear-gradient(135deg, var(--primary-green), var(--secondary-light-green));
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dia-programacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-green), var(--secondary-light-green));
    transition: height 0.4s ease;
}

.dia-programacao:hover::before {
    height: 100%;
}

.dia-programacao:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.dia-programacao h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.dia-programacao h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-light-green));
    border-radius: 2px;
}

.atividade {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.atividade:hover {
    padding-left: 1rem;
    background: rgba(16, 185, 129, 0.02);
    border-radius: 10px;
}

.atividade:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hora {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 130px;
    font-size: 1rem;
}

.conteudo h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--accent-dark-green);
}

.conteudo p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Inscrições Grid - Premium */
.inscricoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.plano-inscricao {
    background: var(--background-white);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.plano-inscricao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-light-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.plano-inscricao:hover::before {
    transform: scaleX(1);
}

.plano-inscricao:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.plano-inscricao.destaque {
    background: linear-gradient(135deg, #ecfdf5, var(--background-white));
    border-color: var(--primary-green);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
    transform: scale(1.05);
}

.plano-inscricao.destaque:hover {
    transform: translateY(-10px) scale(1.07);
}

.badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-light-green));
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.plano-inscricao h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.preco {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.plano-inscricao ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plano-inscricao li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.plano-inscricao li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Submissão Section */
.submissao-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.prazo,
.categorias,
.temas {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-green);
}

.prazo:hover,
.categorias:hover,
.temas:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.prazo {
    text-align: center;
}

.prazo h3,
.categorias h3,
.temas h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.prazo .destaque {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-top: 1rem;
}

.categorias ul,
.temas ul {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.categorias li,
.temas li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.categorias li::before,
.temas li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.submissao-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text h2 {
    margin-bottom: 2rem;
    text-align: left;
    transform: none;
    position: relative;
    left: 0;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, #ecfdf5, var(--emerald-100));
    padding: 2rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-green);
    box-shadow: var(--shadow);
}

.stat h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

.about-image {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-light-green) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.3rem;
    text-align: center;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '🏥';
    font-size: 10rem;
    opacity: 0.1;
    position: absolute;
}

/* Contact Section */
.contact h2,
.contact h3 {
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-light-green);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse-glow 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--emerald-900), var(--accent-dark-green));
    color: var(--text-light);
    padding: 4rem 0 1.5rem;
}

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

.footer-section h3 {
    color: var(--secondary-light-green);
    -webkit-text-fill-color: var(--secondary-light-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-light-green);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom a {
    color: var(--secondary-light-green);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .programacao-grid,
    .inscricoes-grid,
    .submissao-info {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}
