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

html {
    scroll-behavior: smooth;
}

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

/* Variáveis CSS - Paleta de Cores */
:root {
    --azul-escuro: #006FBA;
    --azul-medio: #0094E0;
    --azul-claro: #00AEEF;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #E0E0E0;
    --cinza-escuro: #666666;
    --preto: #333333;
    --sombra: rgba(0, 111, 186, 0.1);
    --sombra-hover: rgba(0, 111, 186, 0.2);
}

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

/* Header Fixo */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: 0 2px 20px var(--sombra);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--azul-escuro);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--azul-escuro);
    transition: width 0.3s ease;
}

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

.btn-cta-header {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--sombra);
}

.btn-cta-header:hover {
    background: var(--azul-medio);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--sombra-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--azul-escuro);
    transition: all 0.3s ease;
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 111, 186, 0.8), rgba(0, 174, 239, 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-hero {
    display: inline-block;
    background: var(--azul-claro);
    color: var(--branco);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 174, 239, 0.3);
}

.btn-cta-hero:hover {
    background: var(--azul-medio);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.4);
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-escuro), var(--azul-claro));
    border-radius: 2px;
}

/* Diferenciais */
.diferenciais {
    background: var(--cinza-claro);
}

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

.diferencial-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--sombra);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.diferencial-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--sombra-hover);
}

.diferencial-icon {
    margin-bottom: 20px;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azul-escuro);
    margin-bottom: 15px;
}

.diferencial-card p {
    color: var(--cinza-escuro);
    line-height: 1.6;
}

/* Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--sombra);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.servico-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: var(--azul-claro);
    box-shadow: 0 20px 40px var(--sombra-hover);
}

.servico-icon {
    margin-bottom: 25px;
}

.servico-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--azul-escuro);
    margin-bottom: 15px;
}

.servico-card p {
    color: var(--cinza-escuro);
    line-height: 1.6;
}

/* Thermo Premium */
.thermo-premium {
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
    color: var(--branco);
}

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

.thermo-premium-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--azul-claro);
}

.thermo-premium-text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.premium-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.premium-benefits li {
    padding: 8px 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.btn-cta-premium {
    display: inline-block;
    background: var(--azul-claro);
    color: var(--branco);
    padding: 16px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 174, 239, 0.3);
}

.btn-cta-premium:hover {
    background: var(--branco);
    color: var(--azul-escuro);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

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

/* Depoimentos */
.depoimentos {
    background: var(--cinza-claro);
}

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

.depoimento-card {
    background: var(--branco);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--sombra);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.depoimento-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--sombra-hover);
}

.aspas {
    font-size: 4rem;
    color: var(--azul-claro);
    line-height: 1;
    margin-bottom: 15px;
}

.depoimento-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cinza-escuro);
    margin-bottom: 25px;
    font-style: italic;
}

.autor-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--azul-escuro);
    margin-bottom: 5px;
}

.autor-info span {
    color: var(--cinza-escuro);
    font-size: 0.95rem;
}

/* Por que escolher */
.por-que-escolher {
    background: var(--branco);
}

.escolher-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.escolher-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 30px;
}

.escolher-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cinza-escuro);
    margin-bottom: 25px;
}

.numeros {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.numero-item {
    text-align: center;
}

.numero {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

.label {
    font-size: 1rem;
    color: var(--cinza-escuro);
    font-weight: 500;
}

/* Mapa */
.mapa {
    background: var(--cinza-claro);
}

.mapa-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.mapa-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--sombra);
}

.mapa-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--azul-escuro);
    margin-bottom: 20px;
}

.mapa-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cinza-escuro);
    margin-bottom: 30px;
}

.btn-cta-mapa {
    display: inline-block;
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 16px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--sombra);
}

.btn-cta-mapa:hover {
    background: var(--azul-medio);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--sombra-hover);
}

/* Footer */
.footer {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h4,
.footer-contato h4,
.footer-redes h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--azul-claro);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--azul-claro);
}

.contato-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contato-item a {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contato-item a:hover {
    opacity: 1;
    color: var(--azul-claro);
}

.redes-sociais {
    display: flex;
    gap: 15px;
}

.rede-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
}

.rede-social:hover {
    background: var(--azul-claro);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .thermo-premium-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thermo-premium-text {
        order: 2;
    }
    
    .thermo-premium-image {
        order: 1;
    }
    
    .mapa-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .numeros {
        flex-direction: column;
        gap: 30px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .btn-cta-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .diferencial-card,
    .servico-card {
        padding: 30px 20px;
    }
    
    .depoimento-card {
        padding: 25px;
    }
    
    .thermo-premium-text h2 {
        font-size: 2.2rem;
    }
}

