/* ============================================
   VARIÁVEIS E RESET
   ============================================ */
:root {
    --primary-blue: #0a2463;
    --secondary-blue: #1e3a8a;
    --dark-blue: #051139;
    --gold: #d4af37;
    --light-gold: #f4d88b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #333333;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px; /* Reduzido de 40px para 30px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* Espaçamento mínimo entre elementos */
}

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

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--light-gold));
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

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

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

/* ============================================
   HEADER
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#header.scrolled {
    padding: 15px 0;
    background: rgba(5, 17, 57, 0.98);
}

.logo img {
    height: 50px; /* Reduzido de 60px para 50px */
    width: auto;
}

/* Menu Desktop */
.nav-desktop ul {
    display: flex;
    gap: 18px; /* Reduzido de 35px para 18px para idiomas com textos longos */
    flex-wrap: wrap; /* Permite quebra de linha */
    align-items: center;
    justify-content: center;
}

.nav-desktop a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem; /* Reduzido de 0.95rem para 0.85rem */
    position: relative;
    padding: 5px 0;
    white-space: nowrap; /* Impede quebra dentro do item */
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px; /* Reduzido de 15px para 10px */
    align-items: center;
    margin-left: 10px; /* Espaço mínimo do menu */
}

.flag-link {
    opacity: 0.7;
    transition: var(--transition);
}

.flag-link:hover,
.flag-link.active {
    opacity: 1;
    transform: scale(1.1);
}

.flag-link img {
    width: 28px; /* Reduzido de 30px para 28px */
    height: 19px; /* Reduzido de 20px para 19px */
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.linkedin-icon {
    color: var(--gold);
    font-size: 1.6rem; /* Reduzido de 1.8rem para 1.6rem */
    opacity: 0.9;
    transition: var(--transition);
    margin-left: 10px; /* Reduzido de 15px para 10px */
}

.linkedin-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--light-gold);
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
}

/* ============================================
   SIDEBAR MOBILE
   ============================================ */
.sidebar-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-blue);
    z-index: 2000;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.sidebar-mobile.active {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
}

.sidebar-content {
    padding: 30px 20px;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-logo img {
    height: 50px;
    margin: 0 auto;
}

.sidebar-flags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav a {
    display: block;
    color: var(--white);
    padding: 15px 10px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-nav a:hover {
    color: var(--gold);
    padding-left: 20px;
}

/* ============================================
   BANDEIRAS FLUTUANTES
   ============================================ */
.floating-flags {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-flags.visible {
    opacity: 1;
    visibility: visible;
}

.flag-floating {
    opacity: 0.7;
    transition: var(--transition);
}

.flag-floating:hover,
.flag-floating.active {
    opacity: 1;
    transform: scale(1.15);
}

.flag-floating img {
    width: 40px;
    height: 27px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Bandeiras Fixas Mobile */
.mobile-fixed-flags {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    gap: 20px;
    z-index: 900;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: bottom 0.3s ease;
}

.mobile-fixed-flags.hide-on-footer {
    bottom: -100px;
    opacity: 0;
    pointer-events: none;
}

.flag-mobile {
    opacity: 0.7;
    transition: var(--transition);
}

.flag-mobile:hover,
.flag-mobile.active {
    opacity: 1;
    transform: scale(1.1);
}

.flag-mobile img {
    width: 35px;
    height: 23px;
    object-fit: cover;
    border-radius: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--secondary-blue) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px 20px 50px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BIOGRAFIA
   ============================================ */
.section-biografia {
    padding: 20px 0;
    background: var(--white);
}

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

.biografia-image {
    position: relative;
}

.biografia-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    z-index: -1;
}

.biografia-image img {
    width: 100%;
    /*border-radius: 10px;*/
    /*box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);*/
}

.biografia-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.biografia-text p {
    margin-bottom: 20px;
}

/* ============================================
   SERVIÇOS
   ============================================ */
.section-servicos {
    padding: 20px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold), var(--light-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.service-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   CARREIRA (TIMELINE)
   ============================================ */
.section-carreira {
    padding: 20px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--light-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* Ímpar (1, 3, 5...) - Lado ESQUERDO */
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

/* Par (2, 4, 6...) - Lado DIREITO */
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.2);
}

.timeline-content {
    width: 45%;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Conteúdo do lado ESQUERDO (ímpar) */
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

/* Conteúdo do lado DIREITO (par) */
.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.timeline-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-description {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   CERTIFICADOS
   ============================================ */
.section-certificados {
    padding: 20px 0;
    background: var(--light-gray);
}

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

.certificate-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.certificate-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.certificate-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 36, 99, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.certificate-image .image-overlay i {
    font-size: 3rem;
    color: var(--gold);
}

.certificate-image:hover .image-overlay {
    opacity: 1;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.1);
}

.certificate-info {
    padding: 25px;
}

.certificate-info h3 {
    font-family: var(--font-secondary);
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.certificate-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.certificate-year {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   OBRAS
   ============================================ */
.section-obras {
    padding: 20px 0;
    background: var(--white);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.work-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.work-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 36, 99, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.work-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.work-overlay .zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.2rem;
    transition: var(--transition);
}

.work-card:hover .zoom-icon {
    transform: rotate(90deg) scale(1.1);
}

/* ============================================
   PUBLICAÇÕES
   ============================================ */
.section-publicacoes {
    padding: 20px 0;
    background: var(--light-gray);
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.publication-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.publication-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.publication-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publication-info {
    padding: 25px;
}

.publication-info h3 {
    font-family: var(--font-secondary);
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.publication-info p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.publication-year {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   EVENTOS
   ============================================ */
.section-eventos {
    padding: 20px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    gap: 30px;
}

.event-card {
    display: flex;
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.event-date {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-info {
    padding: 30px;
    flex: 1;
}

.event-info h3 {
    font-family: var(--font-secondary);
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.event-location {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-description {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
    padding: 20px 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-question i {
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   GALERIA
   ============================================ */
.section-galeria {
    padding: 20px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

/* ============================================
   CONTATO
   ============================================ */
.section-contato {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

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

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

.contact-telegram {
    text-align: center;
}

.contact-telegram h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.telegram-qrcode-contact {
    background: rgba(0, 136, 204, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.telegram-qrcode-contact img {
    max-width: 100%;
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 10px;
    margin: 0 auto 15px;
    display: block;
}

.telegram-qrcode-contact a {
    display: inline-block;
    transition: var(--transition);
}

.telegram-qrcode-contact a:hover img {
    transform: scale(1.05);
}

.telegram-qrcode-contact p {
    color: var(--gold);
    font-weight: 600;
    margin: 0;
}

.contact-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.5rem;
    width: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.5rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

/* Ícones específicos de redes sociais */
.social-link-whatsapp:hover {
    background: #25D366 !important;
    color: white !important;
}

.social-link-telegram:hover {
    background: #0088cc !important;
    color: white !important;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   TELEGRAM SECTION
   ============================================ */
.section-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    padding: 20px 20px;
    color: var(--white);
    text-align: center;
}

.telegram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.telegram-text {
    text-align: center;
}

.telegram-text h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.telegram-text h2 i {
    color: #ffd700;
    margin-right: 15px;
}

.telegram-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: #0088cc;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-telegram:hover {
    background: #ffd700;
    color: #0066aa;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-telegram i {
    font-size: 1.5rem;
}

.telegram-qrcode {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.telegram-qrcode img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.telegram-qrcode img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.telegram-qrcode p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

@media (max-width: 768px) {
    .section-telegram {
        padding: 20px 20px;
    }
    
    .telegram-content {
        gap: 30px;
    }
    
    .telegram-text h2 {
        font-size: 2rem;
    }
    
    .telegram-text p {
        font-size: 1rem;
    }
    
    .telegram-qrcode {
        padding: 30px 20px;
    }
    
    .telegram-qrcode img {
        max-width: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 50px 20px 30px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.developer-credit span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.developer-logo-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.developer-logo-link:hover {
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .footer-bottom {
        gap: 12px;
    }
    
    .developer-credit {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .developer-logo {
        height: 18px;
        max-width: 70px;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
}

#lightboxImage {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* ============================================
   ÁREAS DE EXPERTISE
   ============================================ */
.section-expertise {
    padding: 20px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.section-expertise::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 50%;
}

.expertise-grid {
    display: grid;
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 350px;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--light-gold));
    transition: var(--transition);
    z-index: 2;
}

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

.expertise-card:hover::before {
    height: 100%;
}

.expertise-image {
    width: 40%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    order: 2;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

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

.expertise-content {
    padding: 30px;
    flex: 1;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.expertise-content h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.expertise-description {
    color: var(--gray);
    line-height: 1.8;
}

.expertise-description p {
    margin-bottom: 15px;
}

.expertise-description ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.expertise-description li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: flex-start;
}

.expertise-description li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.85rem;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

/* ============================================
   CONTRIBUIÇÕES ACADÊMICAS
   ============================================ */
.section-academic {
    padding: 20px 0;
    background: var(--white);
}

.academic-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.academic-intro strong {
    color: var(--primary-blue);
}

.academic-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.academic-topic {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.academic-topic:hover {
    background: var(--white);
    border-left-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.3);
}

.topic-content h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.4;
}

.topic-content p {
    color: var(--gray);
    font-style: italic;
    font-size: 0.95rem;
}

.academic-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.academic-footer p {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-style: italic;
}

/* ============================================
   CONQUISTAS NA CARREIRA
   ============================================ */
.section-achievements {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
}

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

.section-achievements .title-divider {
    background: linear-gradient(to right, var(--gold), var(--white));
}

.achievements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-content {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.achievement-content strong {
    color: var(--gold);
}

.achievement-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* ============================================
   FORMAÇÃO ACADÊMICA
   ============================================ */
.section-formation {
    padding: 20px 0;
    background: var(--white);
}

.formation-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.formation-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--light-gold));
}

.formation-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.formation-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(10, 36, 99, 0.3);
    position: relative;
    z-index: 2;
}

.formation-content {
    flex: 1;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    transition: var(--transition);
}

.formation-content:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.formation-degree {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formation-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.formation-content p {
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   OBJETIVOS PROFISSIONAIS
   ============================================ */
.section-objectives {
    padding: 20px 0;
    background: var(--light-gray);
}

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

.objective-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.objective-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold), var(--light-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.objective-item:hover::before {
    transform: scaleX(1);
}

.objective-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
}

.objective-item p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container-header {
        padding: 0 15px; /* Reduzido de 20px para 15px */
    }
    
    .nav-desktop ul {
        gap: 12px; /* Reduzido de 20px para 12px */
    }
    
    .nav-desktop a {
        font-size: 0.8rem; /* Reduzido de 0.9rem para 0.8rem */
    }
    
    .logo img {
        height: 45px; /* Logo menor em tablets */
    }
    
    .flag-link img {
        width: 25px;
        height: 17px;
    }
    
    .linkedin-icon {
        font-size: 1.4rem;
        margin-left: 8px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        margin-bottom: 40px;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-start !important;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

@media (max-width: 768px) {
    /* Espaçamento Geral Mobile */
    section {
        padding: 50px 0 !important;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .nav-desktop,
    .language-switcher {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* Bandeiras */
    .floating-flags {
        display: none !important;
    }
    
    .mobile-fixed-flags {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2rem;
    }
    
    /* Biografia */
    .biografia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .biografia-image::before {
        top: -10px;
        left: -10px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contato */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-telegram,
    .contact-info,
    .contact-form {
        order: 0;
    }
    
    .telegram-qrcode-contact img {
        width: 180px;
    }
    
    /* Works */
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    /* Publications */
    .publications-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* Certificates */
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    /* Events */
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: 100%;
        padding: 20px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .container-header {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .publications-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Novas Seções - Mobile */
    .expertise-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .expertise-image {
        width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        order: 1;
        position: relative;
    }
    
    .expertise-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: relative;
    }
    
    .expertise-content {
        order: 2;
        padding: 20px;
        display: flex !important;
        flex-direction: column;
        width: 100%;
    }
    
    .expertise-content h3 {
        font-size: 1.3rem;
        color: var(--primary-blue);
    }
    
    .expertise-content h4 {
        font-size: 1rem;
        color: var(--gold);
    }
    
    .expertise-description {
        display: block !important;
        color: var(--gray);
    }
    
    .expertise-description li {
        padding-left: 28px;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .expertise-description li::before {
        content: '✓';
        color: var(--gold);
        font-size: 0.9rem;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
    
    .academic-topics {
        grid-template-columns: 1fr;
    }
    
    .topic-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .topic-item i {
        margin-bottom: 10px;
    }
    
    .achievements-list {
        grid-template-columns: 1fr;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .achievement-item i {
        margin-bottom: 10px;
    }
    
    .formation-timeline::before {
        left: 40px;
    }
    
    .formation-year {
        width: 60px;
        height: 60px;
        font-size: 0.95rem;
    }
    
    .formation-content {
        padding: 20px;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HERO MODERNO
   ============================================ */

.hero-modern {
    background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 50%, #0a2463 100%);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-modern-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-modern-left {
    color: white;
}

.hero-modern-name {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-modern-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-modern-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-modern-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-modern-right img {
    width: 100%;
    max-width: 400px;
    /*border-radius: 20px;*/
    /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);*/
}

.hero-modern-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.hero-stat i {
    font-size: 2.5rem;
    color: var(--gold);
    min-width: 50px;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 80px 0 40px;
    }
    
    .hero-modern {
        padding: 120px 0 60px !important;
    }
    
    .hero-modern-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-modern-right {
        order: -1;
    }
    
    .hero-modern-right img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-modern-name {
        font-size: 2rem;
        color: var(--gold);
    }
    
    .hero-modern-subtitle {
        font-size: 1.1rem;
        color: white;
    }
    
    .hero-modern-description {
        font-size: 0.95rem;
        color: white;
    }
    
    .hero-modern-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-modern-buttons {
        flex-direction: column !important;
        width: 100%;
    }
    
    .hero-modern-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-modern-stats {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-top: 30px;
    }
    
    .hero-stat {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        justify-content: flex-start;
        padding: 0 20px;
    }
    
    .hero-stat i {
        color: var(--gold);
        font-size: 1.5rem;
        flex-shrink: 0;
        width: 40px;
    }
    
    .hero-stat-content {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    
    .hero-stat-number {
        color: white;
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    .hero-stat-text {
        color: white;
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* ============================================
   DOWNLOADS
   ============================================ */

.section-downloads {
    padding: 80px 0;
    background: white;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.download-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.15);
    border-color: var(--gold);
}

.download-card:hover::before {
    opacity: 1;
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.download-icon i {
    font-size: 2.5rem;
    color: white;
}

.download-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.download-info h3 {
    font-size: 1rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.download-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.download-action {
    margin-top: 15px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.download-action i {
    color: white;
    font-size: 1.2rem;
}

.download-card:hover .download-action {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 1200px) {
    /* Ajustes para menu com textos longos (ex: russo) */
    .nav-desktop ul {
        gap: 15px;
    }
    
    .nav-desktop a {
        font-size: 0.82rem;
    }
    
    .container-header {
        padding: 0 25px;
    }
    
    .logo img {
        height: 48px;
    }
    
    .flag-link img {
        width: 26px;
        height: 18px;
    }
    
    .downloads-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .downloads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-downloads {
        padding: 60px 0;
    }
    
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .download-card {
        padding: 20px;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .download-icon i {
        font-size: 2rem;
    }
    
    .download-info h3 {
        font-size: 0.9rem;
    }
    
    .download-info p {
        font-size: 0.75rem;
    }
}

/* ============================================
   PARCEIROS E RECONHECIMENTO
   ============================================ */

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

.section-partners::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.section-partners .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.partner-item {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-item a,
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animação de entrada */
.partner-item {
    animation: fadeInUp 0.6s ease backwards;
}

.partner-item:nth-child(1) { animation-delay: 0.1s; }
.partner-item:nth-child(2) { animation-delay: 0.2s; }
.partner-item:nth-child(3) { animation-delay: 0.3s; }
.partner-item:nth-child(4) { animation-delay: 0.4s; }
.partner-item:nth-child(5) { animation-delay: 0.5s; }
.partner-item:nth-child(6) { animation-delay: 0.6s; }
.partner-item:nth-child(n+7) { animation-delay: 0.7s; }

/* Responsivo */
@media (max-width: 768px) {
    .section-partners {
        padding: 60px 0;
    }
    
    .section-partners .section-subtitle {
        font-size: 1rem;
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .partner-item {
        height: 100px;
        padding: 15px;
    }
    
    .partner-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .partner-item {
        height: 80px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .partner-item img {
        max-height: 50px;
    }
}

/* ============================================
   FORM MESSAGE - MENSAGEM DO FORMULÁRIO
   ============================================ */
.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.4s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-message.success {
    background: linear-gradient(135deg, #d4f1d4, #a8e6a8);
    color: #1b5e20;
    border-left: 4px solid #2e7d32;
}

.form-message.error {
    background: linear-gradient(135deg, #ffe0e0, #ffb3b3);
    color: #b71c1c;
    border-left: 4px solid #d32f2f;
}

.form-message i {
    margin-right: 8px;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .form-message {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

