
:root {
  color-scheme: light;
  --force-bg: #0C2340;
  --force-text: #ffffff;
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    width: 150px;
    height: 60px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #6c757d;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: #0C2340;
    color: #0C2340;
}

/* Botões */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, #0C2340 0%, #1a3a5c 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(12, 35, 64, 0.2);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d4f78 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(12, 35, 64, 0.3);
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #0C2340 0%, #1a3a5c 50%, #2d4f78 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Main Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn:hover {
    color: #0C2340;
    background-color: #f8f9fa;
}

.nav-btn.active {
    color: #0C2340;
    border-bottom-color: #0C2340;
    background-color: #f8f9fa;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: 60vh;
}

/* Content Sections */
.content-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.content-section.active {
    display: block;
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0C2340;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 40px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-section.hidden {
    display: none !important;
}

.form-embed-area {
    background: white;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.form-placeholder {
    color: #6c757d;
    font-style: italic;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card--clickable {
    cursor: pointer;
}

.card__body {
    padding: 30px;
}

.card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Materials Navigation */
.materials-nav {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 40px 0;
    text-align: center;
}

.materials-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.materials-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.materials-btn:hover {
    color: #0C2340;
    background-color: #e9ecef;
}

.materials-btn.active {
    color: #0C2340;
    background-color: white;
    border-bottom-color: #0C2340;
}

/* Material Content */
.material-content {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.material-content.active {
    display: block;
}

.material-content h3 {
    font-size: 1.8rem;
    color: #0C2340;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* Placeholder Content */
.placeholder-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    color: #6c757d;
    margin-top: 40px;
}

/* Accordion */
.accordion-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 24px 30px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #0C2340;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header.active {
    background-color: #0C2340;
    color: #ffffff;
}

.accordion-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #ffffff;
}

.accordion-content.active {
    max-height: 2000px;
    padding: 30px;
    border-top: 1px solid #e9ecef;
    overflow: visible;
}

/* Comparative Section */
.comparative-section {
    margin-top: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.comparative-header {
    width: 100%;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0C2340;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.comparative-header:hover {
    background-color: #e9ecef;
}

.comparative-header.active {
    background-color: #0C2340;
    color: #ffffff;
}

.comparative-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.comparative-header.active .comparative-icon {
    transform: rotate(180deg);
}

.comparative-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #ffffff;
}

.comparative-content.active {
    max-height: 1000px;
    padding: 20px;
    overflow-x: auto;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.comparative-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    font-size: 14px;
    min-width: 800px;
}

.comparative-table thead {
    background: linear-gradient(135deg, #0C2340 0%, #1a3a5c 100%);
    color: #ffffff;
}

.comparative-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.comparative-table th:last-child {
    border-right: none;
}

.comparative-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    vertical-align: top;
    line-height: 1.5;
    color: #495057;
}

.comparative-table td:last-child {
    border-right: none;
}

.comparative-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0C2340 0%, #1a3a5c 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #e9ecef;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section strong {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #adb5bd;
}

/* Media Queries para Responsividade */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .banner {
        padding: 60px 0;
    }

    .banner-title {
        font-size: 2rem;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        border-bottom: none;
        border-right: 3px solid transparent;
    }

    .nav-btn.active {
        border-right-color: #0C2340;
        border-bottom-color: transparent;
    }

    .main-content {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card__body {
        padding: 25px;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .materials-nav-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .materials-btn {
        width: 100%;
        border-radius: 8px;
        border-bottom: none;
    }

    .materials-btn.active {
        background-color: #0C2340;
        color: white;
        border-bottom-color: transparent;
    }

    .material-content {
        padding: 20px;
    }

    .accordion-header {
        padding: 20px;
        font-size: 16px;
    }

    .accordion-content.active {
        padding: 20px;
    }

    .comparative-content.active {
        padding: 15px;
    }

    .comparative-table {
        font-size: 12px;
        min-width: 600px;
    }

    .comparative-table th,
    .comparative-table td {
        padding: 12px 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .placeholder-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-placeholder {
        width: 120px;
        height: 50px;
        font-size: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .banner {
        padding: 40px 0;
    }

    .banner-title {
        font-size: 1.6rem;
    }

    .nav-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .card__body {
        padding: 20px;
    }

    .card__icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .material-content h3 {
        font-size: 1.5rem;
    }

    .accordion-header {
        padding: 15px;
        font-size: 15px;
    }

    .accordion-content.active {
        padding: 15px;
    }

    .comparative-table {
        font-size: 11px;
        min-width: 500px;
    }

    .comparative-table th,
    .comparative-table td {
        padding: 10px 6px;
    }

    .form-embed-area {
        padding: 30px 20px;
    }

    .placeholder-content {
        padding: 30px 15px;
    }

    .footer {
        padding: 40px 0 15px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section.active {
    animation: fadeIn 0.5s ease;
}

/* Estados de foco para acessibilidade */
.nav-btn:focus,
.materials-btn:focus,
.accordion-header:focus,
.comparative-header:focus,
.btn:focus {
    outline: 2px solid #0C2340;
    outline-offset: 2px;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias visuais */
.accordion-item:last-child {
    margin-bottom: 0;
}

/* Loading states */
body.loading * {
    pointer-events: none;
}

body.loading::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
}

/* === GT 2025 STYLES === */
/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Estilos principais da aplicação */
.app {
    min-height: 100vh;
    background: #ffffff;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header da página */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #adadad;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.25rem;
    color: #718096;
    font-weight: 400;
}

/* Grid da equipe */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Configurações específicas por linha */
.row-1 {
    justify-content: center;
}

.row-2 {
    justify-content: center;
}

.row-3 {
    justify-content: center;
}

.row-4,
.row-5,
.row-6 {
    justify-content: center;
}

/* Card do membro da equipe */
.team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgb(224, 224, 224);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    max-width: 250px;
}

.team-member-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgb(159, 168, 208);
}

/* Foto do membro */
.member-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-photo img {
    transform: scale(1.1);
}

/* Informações do membro */
.member-info {
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-position {
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
    margin: 0;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 2rem;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Conteúdo do modal */
.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

/* Botão de fechar */
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #718096;
    z-index: 10;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #2d3748;
    transform: scale(1.1);
}

/* Corpo do modal */
.modal-body {
    display: flex;
    padding: 3rem;
    gap: 3rem;
    align-items: flex-start;
}

/* Foto no modal */
.modal-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Informações no modal */
.modal-info {
    flex: 1;
    color: #ffffff;
}

.modal-info p {
  margin-top: 10px;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}

.modal-info p strong {
  font-weight: 600;
  color: #ffffff;
}

/* Links de e-mail e telefone */
.modal-info a {
  color: #b8c8e0; /* tom claro derivado do cargo */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.modal-info a:hover {
  color: #e2ecff; /* tom mais claro para hover */
  border-bottom: 1px solid #e2ecff;
}

/* Botão "Ver página oficial" */
.modal-info .btn--primary {
  background: linear-gradient(135deg, #b0c3dd 0%, #93afd1 100%);
  color: #0C2340 !important;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 18px;
  transition: all 0.3s ease;
}
.modal-info .btn--primary:hover {
  background: linear-gradient(135deg, #c3d6f0 0%, #a6c0e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Ajuste do botão de fechar (para contraste) */
.close-button {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
.modal-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-info h3 {
    font-size: 1.25rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 2rem;
}

.bio {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.bio p {
    margin-bottom: 1rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .team-row {
        gap: 1.5rem;
    }
    
    .team-member-card {
        min-width: 180px;
        max-width: 220px;
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .team-row {
        gap: 1rem;
    }
    
    .team-member-card {
        min-width: 160px;
        max-width: 200px;
        padding: 1.25rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-position {
        font-size: 0.9rem;
    }
    
    /* Modal responsivo */
    .modal-body {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    
    .modal-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .modal-info h2 {
        font-size: 1.75rem;
    }
    
    .modal-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .team-grid {
        gap: 2rem;
    }
    
    .team-row {
        gap: 0.75rem;
    }
    
    .team-member-card {
        min-width: 140px;
        max-width: 180px;
        padding: 1rem;
    }
    
    .member-photo {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-position {
        font-size: 0.85rem;
    }
    
    /* Ajustar linhas para telas muito pequenas */
    .row-4,
    .row-5,
    .row-6 {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-photo {
        width: 120px;
        height: 120px;
    }
}

/* Animações adicionais */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Melhorias de acessibilidade */
.team-member-card:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.close-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* ===== Correção modal no mobile (texto invisível) ===== */
.modal-content {
  background: linear-gradient(135deg, #0C2340 0%, #1a3a5c 100%) !important;
  color: #ffffff !important;
}

.modal-content p,
.modal-content a,
.modal-content strong,
.modal-content h2,
.modal-content h3 {
  color: #ffffff !important;
}

/* Botão de fechar visível no fundo azul */
#close-modal {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
}
#close-modal:hover {
  background: rgba(255,255,255,0.3);
}

/* Links de email e telefone */
.modal-info a {
  color: #b0c3dd !important;
}
.modal-info a:hover {
  color: #e2ecff !important;
}

.timeline-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            padding: 40px 0;
        }
        .timeline-path {
            position: absolute;
            left: 50%;
            width: 4px;
            background: #e9ecef;
            height: 100%;
            transform: translateX(-50%);
            z-index: 1;
        }
        .timeline-item {
            padding: 20px 40px;
            position: relative;
            background: inherit;
            width: 50%;
            box-sizing: border-box;
            z-index: 2;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 60px;
            text-align: right;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 60px;
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -14px;
            background-color: white;
            border: 4px solid #007bff;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even):after {
            left: -12px;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .timeline-content:hover {
            transform: translateY(-5px);
        }
        .timeline-content h2 {
            margin-top: 0;
            color: #007bff;
        }
        .timeline-content p {
            margin: 10px 0 0;
            font-size: 1rem;
            line-height: 1.6;
        }
        .date {
            font-weight: bold;
            color: #dc3545;
            margin-bottom: 10px;
            display: inline-block;
        }
        .future-step .timeline-content {
            background-color: #f8f9fa;
            border: 2px dashed #6c757d;
        }
        .future-step .timeline-item:after {
            border-color: #6c757d;
        }
        .future-step h2 {
            color: #6c757d;
        }

        @media screen and (max-width: 768px) {
            .timeline-path {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
                left: 0;
                text-align: left;
            }
            .timeline-item:after {
                left: 18px;
            }
        