/* ==========================================================================
   RESET E CONFIGURAÇÕES GERAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PALETA DE CORES - Roxo/Bege */
    --roxo-escuro: #481C5B;
    --roxo-medio: #5D2B70;
    --roxo-claro: #7A3E93;
    --bege-claro: #FDFAF5;
    --bege-medio: #F8F4ED;
    --bege-escuro: #F0E9DF;
    --dourado-claro: #D4A96A;
    --dourado-medio: #E8C999;
    --verde-suave: #5B9A7C;
    
    /* Gradientes */
    --gradient-roxo: linear-gradient(135deg, var(--roxo-escuro), var(--roxo-medio));
    --gradient-bege: linear-gradient(135deg, var(--bege-claro), var(--bege-medio));
    --gradient-dourado: linear-gradient(135deg, var(--dourado-claro), var(--dourado-medio));
    --gradient-verde: linear-gradient(135deg, var(--verde-suave), #7AB89C);
    
    /* Sombras */
    --shadow-light: 0 5px 15px rgba(72, 28, 91, 0.08);
    --shadow-medium: 0 8px 25px rgba(72, 28, 91, 0.12);
    --shadow-dark: 0 10px 30px rgba(72, 28, 91, 0.15);
    
    /* Bordas */
    --border-radius: 12px;
    --border-radius-small: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--bege-claro);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */
h1, h2, h3, h4 {
    color: var(--roxo-escuro);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-dourado);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   HEADER E MENU
   ========================================================================== */
header {
    background: var(--gradient-roxo);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo a {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--dourado-medio);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--dourado-medio);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--dourado-medio);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* ==========================================================================
   BANNER HERO - ALTURA CORRIGIDA
   ========================================================================== */
.hero-banner {
    background: linear-gradient(rgba(72, 28, 91, 0.85), rgba(72, 28, 91, 0.75)),
                url('https://s1.static.brasilescola.uol.com.br/be/2022/11/vista-de-um-por-do-sol-sobre-as-nuvens-com-o-ceu-apresentando-varias-cores.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 75vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.banner-overlay {
    width: 100%;
    padding: 2rem 0;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    padding: 0 20px;
}

.banner-content h1 {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.5;
}

.btn-banner {
    display: inline-block;
    background: var(--gradient-dourado);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 169, 106, 0.4);
}

.btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 169, 106, 0.5);
    background: linear-gradient(135deg, #E8C999, #F2D9B8);
}

/* ==========================================================================
   SEÇÃO MISSÃO - ESPAÇAMENTO REDUZIDO
   ========================================================================== */
.mission-section {
    padding: 3rem 0;
    background: white;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bege-claro);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.mission-icon i {
    font-size: 4rem;
    color: var(--roxo-medio);
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--roxo-escuro);
    margin: 0;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--bege-medio);
}

.section-subtitle {
    text-align: center;
    color: var(--roxo-claro);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SEÇÃO SOBRE
   ========================================================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--roxo-escuro);
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bege-escuro);
}

.achievement {
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--roxo-medio);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.achievement-text {
    display: block;
    font-size: 1rem;
    color: var(--roxo-claro);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   SEÇÃO PROJETOS
   ========================================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-bottom-color: var(--dourado-claro);
}

.project-icon {
    margin-bottom: 1.5rem;
}

.project-icon i {
    font-size: 3.5rem;
    color: var(--roxo-medio);
}

/* ==========================================================================
   SEÇÃO GALERIA
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(72, 28, 91, 0.9));
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==========================================================================
   SEÇÃO TRANSPARÊNCIA - NOVO DESIGN
   ========================================================================== */
.transparency-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.project-info {
    padding-right: 2rem;
    border-right: 1px solid var(--bege-escuro);
}

.project-title {
    color: var(--roxo-escuro);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--roxo-claro);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image-viewer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    background: var(--bege-medio);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.01);
}

#transparencyImage {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(72, 28, 91, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-hint {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.zoom-hint i {
    font-size: 1.5rem;
}

.image-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.image-counter {
    color: var(--roxo-medio);
    font-weight: 500;
    font-size: 1rem;
}

/* Container do Excel ocupando 100% */
.excel-full-container {
    width: 100%;
    margin-top: 1rem;
}

.excel-full-card {
    background: var(--gradient-bege);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 5px solid var(--verde-suave);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-light);
}

.excel-full-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.excel-full-icon i {
    font-size: 3rem;
    color: #1d6f42;
}

.excel-full-text h4 {
    color: var(--roxo-escuro);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.excel-full-text p {
    color: var(--roxo-claro);
    margin: 0;
    font-size: 0.95rem;
}

.excel-full-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-verde);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.excel-full-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, #4a8a6c, #5B9A7C);
}

.excel-btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.excel-file-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.excel-file-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Informações Adicionais */
.additional-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bege-claro);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--dourado-medio);
}

.additional-info h4 {
    color: var(--roxo-escuro);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.additional-info h4 i {
    color: var(--dourado-claro);
}

.additional-info p {
    color: var(--roxo-claro);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cnpj-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bege-escuro);
}

.cnpj-info p {
    color: var(--roxo-escuro);
    font-weight: 500;
    margin: 0;
}

/* Modal de Visualização */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--roxo-escuro);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.modal-close:hover {
    background: var(--roxo-medio);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 60px);
    object-fit: contain;
}

.modal-caption {
    background: var(--bege-claro);
    padding: 1rem;
    text-align: center;
    color: var(--roxo-escuro);
    font-weight: 500;
}

/* ==========================================================================
   CONTATO EM 2 COLUNAS
   ========================================================================== */
.contact-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-column,
.map-column {
    display: flex;
    flex-direction: column;
}

.contact-card,
.map-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-card h3,
.map-card h3 {
    color: var(--roxo-escuro);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bege-escuro);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bege-escuro);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-bege);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--roxo-medio);
}

.contact-details h4 {
    color: var(--roxo-escuro);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--roxo-claro);
    margin: 0;
    font-size: 1rem;
}

/* Mapa Atualizado */
.map-container {
    margin: 1rem 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--bege-escuro), var(--bege-medio));
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
}

/* Marcadores no mapa */
.map-marker {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s;
}

.map-marker:hover {
    transform: scale(1.2);
}

.map-marker i {
    font-size: 2rem;
}

.institute-marker {
    top: 50%;
    left: 45%;
    color: var(--roxo-medio);
}

.reference-marker {
    top: 40%;
    left: 60%;
    color: var(--verde-suave);
}

.marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-light);
    font-size: 0.9rem;
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

/* Legenda do mapa */
.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.institute-color {
    background: var(--roxo-medio);
}

.reference-color {
    background: var(--verde-suave);
}

.map-instructions {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bege-claro);
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    color: var(--roxo-claro);
}

.map-instructions i {
    color: var(--dourado-claro);
    margin-right: 0.5rem;
}

.contact-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--bege-escuro);
    color: var(--roxo-claro);
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-btn i {
    font-size: 2.2rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--roxo-escuro);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-small);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: var(--shadow-light);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--roxo-escuro);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* ==========================================================================
   FOOTER - DESIGN MELHORADO
   ========================================================================== */
.footer {
    background: var(--gradient-roxo);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-dourado);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo i {
    color: var(--dourado-medio);
}

.footer-mission {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-small);
    border-left: 3px solid var(--dourado-medio);
}

.footer-certifications p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.footer-certifications i {
    color: var(--dourado-medio);
    margin-right: 0.5rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--dourado-medio);
}

/* Links de Navegação */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--dourado-medio);
    transform: translateX(5px);
}

.footer-links i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Informações de Contato */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--dourado-medio);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--roxo-escuro);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.social-btn:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 8px);
}

.social-btn.facebook:hover {
    background: #1877F2;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-btn.youtube:hover {
    background: #FF0000;
}

.social-btn.linkedin:hover {
    background: #0077B5;
}

/* Divisória */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--dourado-medio);
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-roxo);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(72, 28, 91, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--roxo-medio);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(72, 28, 91, 0.4);
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1200px) {
    .transparency-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--bege-escuro);
        padding-bottom: 2rem;
    }
    
    .excel-full-card {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .excel-full-btn {
        align-self: center;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--gradient-roxo);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: var(--shadow-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .hero-banner {
        min-height: 70vh;
        margin-top: 70px;
        background-attachment: scroll;
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .excel-full-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .excel-file-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-btn i {
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .transparency-container {
        padding: 1.5rem;
    }
    
    .additional-info {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 60px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .transparency-container {
        padding: 1rem;
    }
    
    .mission-icon i {
        font-size: 3.5rem;
    }
    
    .mission-text p {
        font-size: 1.1rem;
    }
    
    .map-legend {
        display: none;
    }
    
    .social-btn::after {
        display: none;
    }
}