/* Reset e Base Styles Profissional */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

:root {
    /* Paleta de cores profissional */
    --primary-blue: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-blue: #64748b;
    --accent-gold: #f59e0b;
    --accent-orange: #ea580c;
    
    /* Cores neutras refinadas */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Cores funcionais */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Sistema tipográfico */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Espaçamento sistema */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Sistema de sombras */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    
    /* Sistema de bordas */
    --radius-none: 0;
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Sistema de transições */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index sistema */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

html {
    scroll-behavior: smooth;
}

/* Configuração base do documento */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

/* Sistema de containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Sistema tipográfico profissional */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
    letter-spacing: -0.025em;
    font-feature-settings: "kern" 1;
}

h1 { 
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
}

h2 { 
    font-size: var(--font-size-4xl);
    font-weight: 700;
}

h3 { 
    font-size: var(--font-size-3xl);
    font-weight: 600;
}

h4 { 
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

h5 { 
    font-size: var(--font-size-xl);
    font-weight: 600;
}

h6 { 
    font-size: var(--font-size-lg);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.lead {
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.6;
}

.text-small {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* Sistema de botões profissional */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.025em;
    min-height: 44px;
}

.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.6s;
}

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

.btn:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
    min-height: 56px;
}

.btn-small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    min-height: 36px;
}

/* Sistema de seções profissional */
.section {
    padding: var(--space-20) 0;
    position: relative;
}

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    background: var(--gray-900);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    margin: var(--space-6) auto 0;
    font-weight: 400;
}

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

.section-dark .section-subtitle {
    color: var(--gray-300);
}

/* Header e navegação profissional */
/* ==========================================================================
   HEADER PONTI - BASEADO NA REFERÊNCIA NAVBAR.PNG
   ========================================================================== */

:root {
    --header-height: 140px; /* Altura total do header (header-top + navbar) */
    --header-height-mobile: 70px; /* Altura do header no mobile (apenas navbar) */
}

.header-ponti {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Header Superior com Logo e Contato */
.header-top {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 60px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

/* Brand Section */
.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.ponti-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-subtitle {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.header-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Navbar Principal */
.navbar-ponti {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex: 1;
    display: flex;
    align-items: center;
    height: 80px;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s ease;
}

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

/* .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transition: width 0.3s ease;
    border-radius: 2px;
} */

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

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.btn-cta i {
    font-size: 0.85rem;
}

/* Mobile Toggle */
/* Ocultar elementos mobile no desktop */
.mobile-brand {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(30, 58, 138, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Header Scrolled State */
.header-ponti.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.header-ponti.scrolled .header-top {
    padding: var(--space-3) 0;
}

.header-ponti.scrolled .brand-title {
    font-size: 1.2rem;
}

.header-ponti.scrolled .ponti-logo {
    height: 50px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--info), var(--primary-blue));
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: currentColor;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Slider Section Premium */
/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: blur(1px);
    z-index: 0;
}

/* Fallback para navegadores que não suportam o vídeo */
.hero-bg-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(1px);
}

/* Otimizações para performance do vídeo */
.hero-bg-video {
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Pausa o vídeo quando não estiver visível (economia de bateria) */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-video {
        display: none;
    }
    
    .hero-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('assets/images/placeholder-2.jpg') center/cover no-repeat;
        opacity: 0.3;
        filter: blur(1px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(30, 58, 138, 0.85) 0%, 
        rgba(30, 64, 175, 0.75) 50%,
        rgba(59, 130, 246, 0.65) 100%
    );
    backdrop-filter: blur(0.5px);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    z-index: 2;
    padding: var(--space-8);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 0.5rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-10);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    text-align: center;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-8) 0;
    padding: var(--space-6);
    /* background: rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(10px); */
    border-radius: 20px;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}

.hero-feature-image {
    max-height: 300px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-feature-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

/* Hero Scroll Down Button */
.hero-scroll {
    display: flex;
    justify-content: center;
    margin-top: var(--space-8);
}

.scroll-down-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-down-btn:active {
    transform: translateY(0);
}

/* Animação de bounce para a seta */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Estilos específicos do segundo slide (Edital) */
.hero-overlay-edital {
    background: linear-gradient(
        135deg, 
        rgba(245, 158, 11, 0.9) 0%, 
        rgba(234, 88, 12, 0.8) 50%,
        rgba(194, 65, 12, 0.7) 100%
    ) !important;
}

.edital-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.hero-secondary-title {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--space-4);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 800px;
}

.hero-tertiary-title {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: var(--space-6);
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    max-width: 850px;
}

/* ===== EDITAIS SECTION ===== */
.editals {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: var(--space-12) 0;
}

.editals-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.editals-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(1px);
}

.editals-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(30, 58, 138, 0.8) 50%,
        rgba(79, 70, 229, 0.7) 100%
    );
    z-index: 1;
}

.editals-content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    z-index: 2;
    padding: var(--space-8);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.editals-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-4);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.editals-secondary-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: var(--space-3);
    line-height: 1.3;
    color: var(--accent-gold);
}

.editals-tertiary-title {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 500;
    margin-bottom: var(--space-4);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.editals-description {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    opacity: 0.9;
    max-width: 800px;
}

.editals-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

/* Animação de entrada do hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== ABOUT SECTION NEW - UPDATED ===== */
.about-new {
    background: var(--white);
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Header Section */
.about-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: var(--space-20) 0;
    text-align: left;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e3a8a' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='m0 60l60-60h-60v60zm60 0v-60h-60l60 60z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    animation: fadeInUp 0.8s ease-out;
}

/* New Grid Layout for Header Content */
.header-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.header-text-column {
    text-align: left;
}

.header-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-image-container:hover::before {
    opacity: 1;
}

.header-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-blue);
}

.header-feature-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

.header-image-container:hover .header-feature-img {
    transform: scale(1.05);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.section-tag:hover::before {
    left: 100%;
}

.section-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 2px;
    opacity: 0.3;
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
.about-content {
    padding: var(--space-20) 0;
    background: var(--white);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-20);
    padding: var(--space-10) 0;
    position: relative;
    z-index: 2;
}

.content-block:nth-child(even) {
    grid-template-columns: 220px 1fr;
}

.content-block:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.block-text {
    position: relative;
    padding: var(--space-6);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.block-text:hover {
    background: linear-gradient(145deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.6));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.block-number {
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(30, 58, 138, 0.08);
    line-height: 1;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.block-text h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--gray-900), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.block-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.block-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.visual-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.visual-circle:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.visual-circle:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mission-visual {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.vision-visual {
    background: linear-gradient(135deg, #4834d4, #686de0);
}

.objectives-visual {
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

/* Services Section */
.about-services-new {
    background: linear-gradient(135deg, var(--gray-50) 0%, #f1f5f9 100%);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.about-services-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.03) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.services-header-new {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
}

.services-header-new h3 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--gray-900), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header-new p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-10);
    position: relative;
    z-index: 2;
}

.service-card-new {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-10);
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    transition: height 0.3s ease;
}

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

.service-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.95);
}

.service-card-new:hover::before {
    height: 8px;
}

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

.card-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-8);
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card-new:hover .card-icon::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.service-card-new:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.incubation .card-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.acceleration .card-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.networking .card-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.innovation .card-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.service-card-new h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--gray-900), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-new p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Statistics Section */
.about-stats-new {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: var(--space-20) 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-stats-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 100V0h100'/%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-10);
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: var(--space-3);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--accent-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.about {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    z-index: 0;
}

/* Layout com 2 cards + imagem */
.about-layout-2x1 {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    position: relative;
    z-index: 1;
}

/* Primeira linha: 2 cards lado a lado */
.about-cards-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

/* Segunda linha: Card + Imagem lado a lado */
.about-second-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

/* Garantir que cards ocupem altura total disponível */
.about-cards-row-2 .about-item,
.about-second-row .about-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Garantir que o conteúdo do card se expanda */
.about-cards-row-2 .about-item p,
.about-second-row .about-item p {
    flex-grow: 1;
}

/* Container da imagem na linha abaixo */
.about-image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-8);
    position: relative;
    z-index: 1;
}

.about-item {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition-normal);
    position: relative;
}

.about-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-item h3 {
    color: var(--primary-blue);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.about-item h3::before {
    content: '→';
    font-size: var(--font-size-lg);
    color: var(--accent-gold);
}

.about-item p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -var(--space-4);
    right: -var(--space-4);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.8;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    position: relative;
    z-index: 1;
}

.about-img:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Leadership Section */
.leadership {
    padding: 3rem 0;
    background-color: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.leader-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-blue);
}

.leader-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-description {
    margin-bottom: 3rem;
    text-align: center;
}

.services-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

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

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-blue);
    border-radius: 50%;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    background-color: var(--gray-50);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.team-member:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-blue);
}

.member-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Projects Section */
.projects {
    background-color: var(--white);
}

.trilogy-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius-xl);
}

.trilogy-section h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.status-description {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-highlight {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-blue);
    border-radius: var(--border-radius-xl);
}

.project-highlight h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.status-boards h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

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

.board-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.board-item img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Editals Section */
.editals {
    background-color: var(--gray-50);
    padding: 4rem 0;
}

.edital-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.edital-content h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.edital-content h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.edital-content h5 {
    color: var(--secondary-blue);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.edital-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}





/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-ponti {
        height: var(--header-height-mobile);
        padding: 0;
    }
    
    .header-top {
        display: none;
    }
    
    .navbar-ponti {
        padding: 0 1.5rem;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
        position: relative;
        height: var(--header-height-mobile);
        flex: none;
    }
    
    .navbar-content {
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 0;
    }
    
    .hero {
        height: calc(100vh - var(--header-height-mobile));
        margin-top: var(--header-height-mobile);
    }
    
    /* Mostrar apenas logo e hamburger no mobile */
    .header-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .ponti-logo {
        height: 40px;
        width: auto;
    }
    
    .brand-text {
        color: var(--white);
    }
    
    .brand-text p {
        font-size: 0.9rem;
        margin: 0;
        font-weight: 500;
    }
    
    /* Mostrar logo mobile */
    .mobile-brand {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
    }
    
    /* Ocultar elementos desnecessários no mobile */
    .nav-cta {
        display: none;
    }
    
    /* Menu mobile dropdown */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.98), rgba(30, 64, 175, 0.95));
        backdrop-filter: blur(20px);
        transition: max-height 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 0;
        list-style: none;
        padding: 2rem 0;
        margin: 0;
    }
    
    .nav-link {
        color: var(--white) !important;
        font-size: 1.2rem;
        font-weight: 500;
        text-decoration: none;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-gold) !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    /* Botão hamburger mobile */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger-line {
        width: 100%;
        height: 3px;
        background: var(--white);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .mobile-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
        color: inherit;
    }
    
    .hero {
        min-height: 100vh;
    }

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

    .scroll-down-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .editals {
        min-height: 60vh;
        padding: var(--space-8) 0;
    }
    
    .editals-title {
        font-size: 2rem;
    }
    
    .editals-secondary-title {
        font-size: 1.3rem;
    }
    
    .editals-tertiary-title {
        font-size: 1rem;
    }
    
    .editals-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* About New Mobile */
    .about-header {
        padding: var(--space-16) 0;
        min-height: 300px;
        text-align: center;
    }
    
    .header-content {
        padding: 1.5rem 1rem;
    }
    
    /* Grid Layout Responsivo */
    .header-content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .header-text-column {
        text-align: center;
        order: 2;
    }
    
    .header-image-column {
        order: 1;
        margin-bottom: var(--space-6);
    }
    
    .header-image-container {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .header-image-container:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .section-main-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-content {
        padding: var(--space-16) 0;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
        margin-bottom: var(--space-16);
        padding: var(--space-8) 0;
    }
    
    .content-block:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .content-block:hover {
        transform: none;
    }
    
    .visual-circle {
        width: 140px;
        height: 140px;
        font-size: 2.75rem;
        margin-bottom: var(--space-6);
    }
    
    .visual-circle:hover {
        transform: scale(1.05);
    }
    
    .block-text {
        order: 2;
    }
    
    .block-visual {
        order: 1;
    }
    
    .block-number {
        font-size: 5rem;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .block-text h3 {
        font-size: 1.85rem;
    }
    
    .block-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .services-header-new h3 {
        font-size: 2.25rem;
    }
    
    .services-header-new p {
        font-size: 1.1rem;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .service-card-new {
        padding: var(--space-8);
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: var(--space-6);
    }
    
    .service-card-new h4 {
        font-size: 1.5rem;
    }
    
    .service-card-new p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
    
    .stat-card {
        padding: var(--space-6);
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }

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

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

    .edital-highlight {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }
    
    /* Otimização do vídeo para mobile */
    .hero-bg-video {
        opacity: 0.2;
        filter: blur(2px);
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(30, 58, 138, 0.9) 0%, 
            rgba(30, 64, 175, 0.85) 50%,
            rgba(59, 130, 246, 0.8) 100%
        );
    }
    
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }

    .leader-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .member-image img,
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-info {
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* ==========================================================================
   SEÇÃO SOBRE (ABOUT) 
   ========================================================================== */

.about {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(50%, -50%);
}

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

.about-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-item.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.about-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* ==========================================================================
   SEÇÃO LIDERANÇA
   ========================================================================== */

.leadership {
    background: white;
}

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

.leader-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.leader-card.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.leader-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.leader-info {
    padding: 2rem;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.leader-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   SEÇÃO SERVIÇOS
   ========================================================================== */

.services {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.service-card.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO EQUIPE
   ========================================================================== */

.team {
    background: #f8fafc;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    text-align: left;
}

.team-member:hover {
    transform: translateX(5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-member.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.member-info {
    flex: 1;
    text-align: left;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ==========================================================================
   SEÇÃO PROJETOS
   ========================================================================== */

.projects {
    background: white;
}

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

.project-card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    border-bottom: 1px solid #e2e8f0;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gold);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
}

/* ==========================================================================
   SEÇÃO EDITAIS
   ========================================================================== */

.editals {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.edital-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.edital-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.edital-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.edital-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.edital-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.edital-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #10b981;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 15px;
}

.edital-status.closed {
    background: #ef4444;
}

/* ==========================================================================
   SEÇÃO GALERIA
   ========================================================================== */

.gallery {
    background: white;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* ==========================================================================
   SEÇÃO CONTATO
   ========================================================================== */

.contact {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.contact-item.animate-fade-in-up {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

/* ==========================================================================
   LIGHTBOX E NOTIFICAÇÕES
   ========================================================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    font-weight: 500;
}

.notification.show {
    transform: translateX(0);
}

/* ==========================================================================
   ANIMAÇÕES AVANÇADAS
   ========================================================================== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   LOADING E ESTADOS
   ========================================================================== */

.loading {
    opacity: 0.7;
    filter: blur(2px);
    transition: all 0.3s ease;
}

.loaded {
    opacity: 1;
    filter: blur(0);
}

body.loaded {
    opacity: 1;
}

/* ==========================================================================
   MELHORIAS RESPONSIVAS ADICIONAIS
   ========================================================================== */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        padding: var(--space-4);
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .section {
        padding: var(--space-12) var(--space-4);
    }
    
    /* Slider responsivo */
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-secondary-title {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .hero-tertiary-title {
        font-size: 0.9rem;
        margin-bottom: var(--space-4);
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image-container {
        margin: var(--space-6) 0;
        padding: var(--space-4);
    }
    
    .hero-feature-image {
        max-height: 250px;
    }
    
    .edital-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .leader-grid,
    .services-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Section responsivo */
    .about-layout-2x1 {
        gap: var(--space-8);
    }
    
    .about-cards-row-2 {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .about-second-row {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        text-align: center;
    }
    
    /* Header responsivo */
    .header-top .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-brand {
        justify-content: center;
        text-align: center;
    }
    
    .brand-text {
        align-items: center;
    }
    
    .brand-title {
        font-size: 1.1rem;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-cta {
        margin-left: auto;
    }
    
    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Team responsivo */
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .member-info {
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Footer responsivo */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-credits {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-secondary-title {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-tertiary-title {
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image-container {
        margin: var(--space-4) 0;
        padding: var(--space-3);
    }
    
    .hero-feature-image {
        max-height: 200px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .edital-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
    
    /* Header mobile pequeno */
    .ponti-logo {
        height: 45px;
    }
    
    .brand-title {
        font-size: 1rem;
    }
    
    .brand-subtitle {
        font-size: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .btn-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}