* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul: #0065a9;
    --azul-escuro: #001a2e;
    --azul-claro: #e6f2f8;
    --branco: #FFFFFF;
    --preto: #000000;
    --texto-cinza: #666666;
    --texto-cinza-claro: #999999;
    --bg-cinza: #F5F5F5;
    --bg-cinza-escuro: #E8E8E8;
    --sombra: 0 4px 20px rgba(0, 0, 0, 0.08);
    --sombra-hover: 0 8px 30px rgba(0, 101, 169, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--branco);
    background: var(--preto);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
header {
    position: fixed;
    top: 25px;
    width: calc(100% - 300px);
    left: 150px;
    right: 150px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
    border-radius: 20px;
}

header.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

header.scrolled {
    padding: 0.6rem 0;
}

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

.logo {
    height: 85px;
    transition: transform 0.3s;
    object-fit: contain;
}

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

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

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

.nav-menu a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--azul);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--preto) 0%, var(--azul-escuro) 50%, var(--preto) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    text-align: center;
    padding-top: 140px;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 101, 169, 0.4) 20%, 
        rgba(0, 101, 169, 0.6) 50%, 
        rgba(0, 101, 169, 0.4) 80%, 
        transparent 100%);
    z-index: 2;
    animation: lightBeam 8s ease-in-out infinite;
    transform: skewX(-20deg);
}

@keyframes lightBeam {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding: 2rem 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content-left {
    position: absolute;
    right: -5%;
    top: 60%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.5;
}

.hero-logo {
    width: 700px;
    height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-logo-bg {
    display: none;
}

.hero-logo-letter {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-letter img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-content-right .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 2.2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--branco);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-content-right h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.8px;
}

.hero-content-right h1 br {
    display: block;
    margin-bottom: 0.3em;
}

.hero-line {
    display: block;
    white-space: nowrap;
}

.hero-content-right .highlight {
    color: var(--azul);
    display: inline;
    position: relative;
    font-weight: 900;
}

.hero-content-right .highlight::after {
    display: none;
}

.hero-content-right {
    text-align: left;
    width: 100%;
    order: 1;
    position: relative;
    z-index: 1;
}

.hero-content-right p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
    color: var(--branco);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 101, 169, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 101, 169, 0.5);
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul) 100%);
}

.btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 101, 169, 0.4);
}

.btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn i {
    font-size: 1.1rem;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--branco);
}

/* Sections */
section {
    padding: 7rem 0;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--branco);
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 1.5rem;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5rem;
    max-width: 750px;
    font-weight: 400;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--preto) 0%, var(--azul-escuro) 100%);
    color: var(--branco);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-item .number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--branco);
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.stat-item .label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Auditorio Section */
.auditorio-section {
    background: var(--preto);
}

.auditorio-image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auditorio-info h3 {
    font-size: 2rem;
    color: var(--azul);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.auditorio-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.auditorio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.auditorio-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--azul);
    transition: all 0.4s;
}

.auditorio-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 101, 169, 0.4);
}

.auditorio-image::before {
    content: 'Imagem do Auditório';
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.auditorio-image img {
    display: none;
}

.auditorio-info {
    padding: 2rem;
}

.auditorio-info h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--branco);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.auditorio-info p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s;
}

.features-list li:hover {
    padding-left: 1rem;
}

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

.features-list i {
    color: var(--azul);
    font-size: 1.6rem;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list span {
    color: var(--branco);
    font-weight: 400;
    font-size: 1.05rem;
}

/* Layouts Section */
.layouts-section {
    background: var(--azul-escuro);
}

.layouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    justify-items: center;
}

.layout-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.layout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azul), var(--azul-escuro));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.layout-card:hover::before {
    transform: scaleX(1);
}

.layout-card:hover {
    transform: translateY(-12px);
    border-color: var(--azul);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 101, 169, 0.4);
}

.layout-card .image-placeholder {
    width: 417.6px !important;
    height: 250px !important;
    min-width: 417.6px !important;
    min-height: 250px !important;
    max-width: 417.6px !important;
    max-height: 250px !important;
    border-radius: 16px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-sizing: border-box;
    flex-shrink: 0;
}

.layout-card:hover .image-placeholder {
    border-color: var(--azul);
    background: rgba(0, 101, 169, 0.2);
}

.layout-card img {
    display: none;
}

.layout-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--branco);
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.layout-card .capacity {
    font-size: 4rem;
    font-weight: 800;
    color: var(--azul);
    margin: 1.2rem 0;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.layout-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

/* Layouts Personalizados Section */
.layouts-personalizados-section {
    background: var(--preto);
    color: var(--branco);
    padding: 75px 150px;
}

.layouts-personalizados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 100%;
    padding: 0 1rem;
}

.layout-personalizado-card {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    border: none;
    transition: all 0.4s;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.layout-personalizado-card:hover {
    transform: translateY(-5px);
}

.layout-badge {
    display: none;
}

.layout-personalizado-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--branco);
    margin-bottom: 2rem;
    width: 100%;
}

.layout-icon {
    width: 100%;
    max-width: 417.6px;
    height: 250px;
    margin: 0 auto 2rem;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
}

.layout-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.layout-capacity {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: block;
    color: var(--branco);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 100%;
}

/* CTA Section */
.cta-section {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-headline-1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--branco);
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-headline-2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 3rem 0 2rem;
    line-height: 1.2;
}

.cta-headline-2 .highlight {
    color: var(--azul);
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
    color: var(--branco);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
    box-shadow: 0 10px 35px rgba(0, 101, 169, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 101, 169, 0.6);
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul) 100%);
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 101, 169, 0.4);
}

/* Entregáveis Section */
.entregaveis-section {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 5rem 0;
}

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

.entregavel-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.entregavel-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: var(--azul);
}

.entregavel-item i {
    font-size: 1.5rem;
    color: var(--azul);
    min-width: 30px;
}

.entregavel-item span {
    color: var(--branco);
    font-weight: 500;
}

/* Nossos Serviços Section */
.servicos-section {
    background: var(--preto);
    color: var(--branco);
    padding: 5rem 0;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center;
}

.servico-card {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    border: none;
    transition: all 0.4s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-logo {
    max-width: 250px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Comparação Section */
.comparacao-section {
    background: var(--preto);
    color: var(--branco);
    padding: 5rem 0;
}

.comparacao-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparacao-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparacao-table thead {
    background: rgba(0, 101, 169, 0.3);
}

.comparacao-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--branco);
    border-bottom: 2px solid var(--azul);
}

.comparacao-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--texto-cinza);
}

.comparacao-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparacao-table tbody tr:last-child td {
    border-bottom: none;
}

.comparacao-table td:first-child {
    font-weight: 600;
    color: var(--branco);
}

.comparacao-table td:nth-child(2) {
    text-align: center;
}

.comparacao-table td:nth-child(3) {
    text-align: center;
}

.comparacao-table td i {
    font-size: 1.5rem;
}

/* Eventos Section */
.eventos-section {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 5rem 0;
}

.eventos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.eventos-text h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--branco);
    margin-bottom: 1.5rem;
}

.eventos-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.eventos-video {
    width: 100%;
    height: auto;
    display: block;
}

.eventos-video-desktop {
    display: block;
}

.eventos-video-mobile {
    display: none;
}

.eventos-img-fallback {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 968px) {
    .eventos-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Fundadores Section */
.fundadores-section {
    background: var(--preto);
    color: var(--branco);
}

.fundadores-section .section-title {
    color: var(--branco);
}

.fundadores-section .section-title::after {
    background: var(--branco);
}

.fundadores-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.fundadores-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.fundador-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: none;
    backdrop-filter: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.fundador-image-placeholder {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 101, 169, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.fundador-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.fundador-image-placeholder:has(img) {
    background: transparent;
    border: none;
}

.fundador-image-placeholder:has(img) .placeholder-label,
.fundador-image-placeholder:has(img) .placeholder-icon {
    display: none;
}

.placeholder-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.icon-head {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.icon-body {
    width: 80px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: none;
    border-radius: 0 0 40px 40px;
    background: rgba(255, 255, 255, 0.1);
}

.fundador-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.fundador-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 0;
}

.fundador-bottom .fundador-content {
    gap: 2rem;
}

.fundador-top .fundador-content {
    flex-direction: row;
}

.fundador-bottom .fundador-content {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
}

.fundador-bottom .fundador-text {
    margin-top: 6rem;
}

.fundador-image-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    flex-shrink: 0;
}

.fundador-image-section .fundador-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.fundador-title-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    align-self: flex-start;
    min-width: 180px;
}

.fundador-top .fundador-title-mobile {
    display: none;
    margin-top: 0;
}

.fundador-title-box .fundador-name {
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.fundador-title-box .fundador-role {
    color: #0065A9;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.fundador-image-container {
    position: relative;
    flex-shrink: 0;
    width: 300px;
    height: 400px;
}

.fundador-image-container .fundador-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


.fundador-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.fundador-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.fundador-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fundador-title-wrapper .fundador-name {
    margin-bottom: 0;
    font-size: 2rem;
}

.fundador-title-wrapper .fundador-role {
    margin-bottom: 0;
    font-size: 1rem;
}

.fundador-top .fundador-image {
    margin-top: 0;
}

.fundador-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}



.info-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.info-line {
    height: 12px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.info-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: wave 2s ease-in-out infinite;
}

.info-line:nth-child(1) { width: 95%; }
.info-line:nth-child(2) { width: 85%; }
.info-line:nth-child(3) { width: 90%; }
.info-line:nth-child(4) { width: 80%; }
.info-line:nth-child(5) { width: 88%; }

@keyframes wave {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.fundador-card::before,
.fundador-card::after {
    display: none;
}


.fundador-image {
    width: 300px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: -2.5rem;
}

.fundador-left .fundador-image {
    margin-left: -2.5rem;
    margin-right: 0;
    border-radius: 20px 0 0 20px;
}

.fundador-right .fundador-image {
    margin-right: -2.5rem;
    margin-left: 0;
    border-radius: 0 20px 20px 0;
}

.fundador-image::before {
    content: '';
    display: none;
}

.fundador-image::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 50%, var(--azul) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    filter: blur(8px);
}


.fundador-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.fundador-left .fundador-image img {
    border-radius: 20px 0 0 20px;
}

.fundador-right .fundador-image img {
    border-radius: 0 20px 20px 0;
}


.fundador-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--branco);
    margin-bottom: 1rem;
    text-transform: uppercase;
    transition: none;
}

.fundador-role {
    font-size: 1.1rem;
    color: var(--azul);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: none;
}

.fundador-bio {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    transition: none;
    text-align: left;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--preto) 0%, #001a2e 50%, var(--preto) 100%);
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    color: var(--branco);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--preto) 0%, 
        rgba(0, 20, 35, 0.5) 30%, 
        rgba(0, 30, 50, 0.3) 50%, 
        rgba(0, 20, 35, 0.5) 70%, 
        var(--preto) 100%);
    background-size: 300% 300%;
    animation: gradientFlow 18s ease infinite;
    opacity: 0.4;
    z-index: 0;
}

footer > * {
    position: relative;
    z-index: 1;
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-logo img {
    height: 100px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--azul);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--azul);
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--azul);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--branco);
    font-size: 1.5rem;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--azul);
    border-color: var(--azul);
    color: var(--branco);
}

@media (max-width: 1200px) {
    .layouts-personalizados-section {
        padding: 75px 50px;
    }
    
    .layouts-personalizados-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .fundador-card {
        padding: 2rem !important;
    }

    .fundador-content {
        flex-direction: column !important;
        align-items: center;
        gap: 2rem;
    }

    .fundador-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 3/4;
    }

    .fundador-text {
        text-align: center;
        width: 100%;
    }

    .fundador-bio {
        text-align: center;
    }

    header {
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        border-radius: 0;
        padding: 0.5rem 0;
    }

    nav {
        padding: 0 15px;
    }

    .logo {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
        background: transparent;
        border: 2px solid var(--branco);
        color: var(--branco);
        width: 45px;
        height: 45px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.5rem;
        transition: all 0.3s;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }

    .mobile-menu-toggle:hover {
        background: var(--azul);
        border-color: var(--azul);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

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

    .nav-menu li {
        margin: 0;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .hero {
        padding-top: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 20px;
        gap: 2rem;
    }

    .hero-content-left {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-content-right {
        order: 2;
        text-align: center;
    }

    .hero-content-right h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
    }

    .hero-content-right .highlight::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-logo {
        margin: 0 auto 1rem;
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .layouts-personalizados-section {
        padding: 75px 20px;
    }
    
    .layouts-grid,
    .layouts-personalizados-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .layout-icon {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 0.8rem;
    }
    
    .layout-icon img {
        max-height: 200px;
    }
    
    .layout-personalizado-card {
        padding: 1.5rem;
    }

    .fundadores-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-logo img {
        height: 90px;
        max-width: 280px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }

    .auditorio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auditorio-image-placeholder {
        height: 300px;
    }

    .auditorio-info h3 {
        font-size: 1.5rem;
    }

    .auditorio-description {
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

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

    .stat-item .number {
        font-size: 3.5rem;
    }

    .video-container {
        height: auto;
        min-height: 200px;
        width: 100%;
        position: relative;
    }
    
    .eventos-video {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }
    
    .eventos-video-desktop {
        display: none;
    }
    
    .eventos-video-mobile {
        display: block;
    }
    
    .eventos-img-fallback {
        display: none;
    }

    .fundador-image-section {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .fundador-title-box {
        width: 100%;
        max-width: 300px;
    }

    .fundador-image-container {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 3/4;
    }

    .fundador-image-container .fundador-image {
        width: 100%;
        height: 100%;
    }

    .fundador-bottom .fundador-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .fundador-bottom .fundador-text {
        margin-top: 0;
    }
    
    .fundador-bottom .fundador-image-section {
        order: 1;
    }
    
    .fundador-bottom .fundador-text {
        order: 2;
    }
    
    /* Pablo Marçal - igual ao Marcus no mobile */
    .fundador-top .fundador-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .fundador-top .fundador-image-section {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .fundador-top .fundador-text {
        order: 2;
    }
    
    .fundador-top .fundador-title-mobile {
        display: block;
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .fundador-top .fundador-name-desktop,
    .fundador-top .fundador-role-desktop {
        display: none;
    }
    
    .fundador-title-box .fundador-name {
        font-size: 1.5rem;
    }
    
    .fundador-title-box .fundador-role {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--azul);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--azul-escuro);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

