/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Flutuante para Hero */
.floating-header.hero-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    background: transparent;
    opacity: 1;
    transform: translateY(0);
}

.floating-header.hero-header .logo {
    margin-left: 2rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease;
}

.hero-logo:hover {
    transform: scale(1.1);
}

/* Header Escuro para Scroll */
.dark-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(44, 62, 80, 0.95);
    background-image: url('assets/nav-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: all 0.5s ease;
}

.dark-header.active {
    transform: translateY(0);
}

.dark-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

/* Fallback para quando a imagem não carrega */
.dark-logo.error {
    display: none;
}

.dark-header .logo-text {
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: block;
}

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

.logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}

/* Melhorias para o logo no servidor */
.logo-img {
    display: block;
    max-width: 100%;
    height: auto;
}

.logo-img.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease;
}

.logo-img.dark-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

/* Fallback para quando o logo não carrega */
.logo-img[src*="logo.png"]:not([src*="data:"]):not([src*="blob:"]) {
    min-width: 120px;
    min-height: 40px;
}

/* Fallback com texto quando imagem falha */
.logo::after {
    content: "Linea Design";
    display: none;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    margin-left: 10px;
}

.logo-img.error + .logo::after,
.logo-img[src*="logo.png"]:not([src*="data:"]):not([src*="blob:"]):not([src*="?"]) + .logo::after {
    display: block;
}

/* Menu Hamburguer */
.menu-toggle {
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

/* Menu Hamburguer para Hero */
.hero-header .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    position: absolute;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Menu Hamburguer para Header Escuro */
.dark-header .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Menu Ativo */
.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Menu de Navegação */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #2c3e50;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
}

/* Ícone de Fechar Menu */
.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.menu-close:hover {
    color: #3498db;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.menu-close i {
    pointer-events: none;
}

.menu.active {
    right: 0;
}

.menu li {
    margin: 1rem 0;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.cta-button:hover {
    background: transparent;
    color: #3498db;
    transform: translateY(-2px);
}

/* Seção Sobre o Trabalho */
.about-work {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.learn-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #2980b9;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Seção Trabalhos Recentes */
.recent-work {
    padding: 100px 0;
    background: white;
}

.recent-work h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    height: 400px; /* Altura fixa para evitar espaços em branco */
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    line-height: 0; /* Remove espaços verticais */
    font-size: 0; /* Remove espaços entre elementos inline */
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Evita que o slide encolha */
    line-height: 0; /* Remove espaços verticais */
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block; /* Remove espaços em branco */
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.slide-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Carrossel vazio */
.carousel-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.empty-message {
    text-align: center;
    color: #6c757d;
}

.empty-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.empty-message p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Seção Inspiração */
.inspiration {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.inspiration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inspiration-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.4;
}

.inspiration-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.inspiration-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 2rem;
}

.inspiration-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.7;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Frase Inspiradora Flutuante */
.hero-quote {
    position: fixed;
    bottom: 30px;
    right: 150px;
    z-index: 1000;
    text-align: right;
    max-width: 350px;
}

.hero-quote p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Estilos para Página de Cases */
.cases-hero {
    padding: 120px 0 80px;
    background: rgba(44, 62, 80, 0.95);
    background-image: url('assets/nav-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: left;
}

.cases-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cases-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 1000px;
    margin: 0;
    line-height: 1.5;
}

/* Header Fixo para Cases */
.cases-header {
    transform: translateY(0) !important;
    background: rgba(44, 62, 80, 0.95);
    background-image: url('assets/nav-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
}



.cases-grid {
    padding: 60px 0;
    background: white;
}

/* Grid Dinâmico e Não Simétrico */
.cases-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 200px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Tamanhos dos Cases */
.case-large {
    grid-column: span 6;
    grid-row: span 4;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-medium {
    grid-column: span 4;
    grid-row: span 3;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-small {
    grid-column: span 3;
    grid-row: span 2;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Posicionamento Específico para Layout Dinâmico */
.case-item:nth-child(1) { /* Grande */
    grid-column: 1 / 7;
    grid-row: 1 / 5;
}

.case-item:nth-child(2) { /* Médio */
    grid-column: 7 / 11;
    grid-row: 1 / 4;
}

.case-item:nth-child(3) { /* Pequeno */
    grid-column: 11 / 14;
    grid-row: 1 / 3;
}

.case-item:nth-child(4) { /* Médio */
    grid-column: 7 / 11;
    grid-row: 4 / 7;
}

.case-item:nth-child(5) { /* Pequeno */
    grid-column: 11 / 14;
    grid-row: 3 / 5;
}

.case-item:nth-child(6) { /* Grande */
    grid-column: 1 / 7;
    grid-row: 5 / 9;
}

.case-item:nth-child(7) { /* Médio */
    grid-column: 7 / 11;
    grid-row: 7 / 10;
}

.case-item:nth-child(8) { /* Pequeno */
    grid-column: 11 / 14;
    grid-row: 5 / 7;
}

.case-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.case-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.case-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 15px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    transform-origin: center;
}

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(3px);
}

.case-item:hover .case-overlay {
    opacity: 1;
}

/* Painel de Referência com Ícones */
.case-reference-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px 20px 0 0;
    padding: 2rem;
    margin-bottom: 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 100%;
    position: relative;
}

.case-item:hover .case-reference-panel {
    transform: translateY(0);
}

/* Título e Localização */
.case-title {
    margin-bottom: 2rem;
}

.case-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: none;
    line-height: 1.2;
}

.case-location {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ícones de Referência */
.case-icons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.icon-img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.icon-item:hover .icon-img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}







.cases-cta {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .inspiration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2,
    .recent-work h2 {
        font-size: 2rem;
    }
    
    .inspiration-text h2 {
        font-size: 1.8rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .menu {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
         .cases-hero-content h1 {
         font-size: 2.2rem;
     }
    
    .cases-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .case-large,
    .case-medium,
    .case-small {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 300px;
    }
    
         .case-reference-panel {
         max-width: 280px;
         padding: 2rem 1.5rem;
     }
    
    .case-title h3 {
        font-size: 1.4rem;
    }
    
    .case-location {
        font-size: 0.9rem;
    }
    
         .icon-img {
         width: 30px;
         height: 30px;
     }
     

    
    
    
    .contato-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contato-hero-content h1,
    .sobre-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .missao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .valores-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Estilos para Página Sobre Nós */
.sobre-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.sobre-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sobre-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.missao-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.missao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.missao-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.missao-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.missao-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.valores-section {
    padding: 100px 0;
    background: white;
}

.valores-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.valor-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-10px);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.valor-icon i {
    font-size: 2rem;
    color: white;
}

.valor-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.valor-item p {
    color: #666;
    line-height: 1.6;
}

.equipe-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.equipe-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.membro {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.membro:hover {
    transform: translateY(-10px);
}

.membro-foto {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.membro:hover .membro-foto img {
    transform: scale(1.1);
}

.membro-info {
    padding: 2rem;
    text-align: center;
}

.membro-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.cargo {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.descricao {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.membro .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.membro .social-links a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.membro .social-links a:hover {
    color: #3498db;
}

.stats-section {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.sobre-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.sobre-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sobre-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Estilos para Página de Contato */
.contato-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contato-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contato-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contato-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contato-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.contato-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contato-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contato-icon i {
    color: white;
    font-size: 1.2rem;
}

.contato-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contato-details p {
    color: #666;
    line-height: 1.5;
}

.social-contato {
    margin-top: 2rem;
}

.social-contato h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.social-link {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #3498db;
}

.social-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contato-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contato-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

.mapa-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.mapa-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .floating-header.hero-header {
        padding: 1.5rem 1rem;
    }
    
    .dark-header {
        padding: 0.8rem 1rem;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .dark-logo {
        height: 35px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .hero-quote {
        bottom: 20px;
        right: 120px;
        max-width: 200px;
    }
    
    .hero-quote p {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .menu-close {
        top: 20px;
        right: 20px;
        font-size: 1.3rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
