/* ============================================
   RESET E CONFIGURAÇÕES GERAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1A1A2E;
    background-color: #F8F9FA;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h1 span {
    color: #1A2B4C;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #1A2B4C;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-principal, .btn-destaque {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn-principal {
    background-color: #1A2B4C;
    color: white;
    box-shadow: 0 4px 15px rgba(26, 43, 76, 0.3);
}

.btn-principal:hover {
    background-color: #0D1B2A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 43, 76, 0.4);
}

.btn-destaque {
    background-color: transparent;
    color: #1A2B4C;
    border: 2px solid #1A2B4C;
    padding: 10px 24px;
}

.btn-destaque:hover {
    background-color: #1A2B4C;
    color: white;
    transform: translateY(-2px);
}

.btn-destaque i, .btn-principal i {
    margin-right: 8px;
}

.btn-destaque-light {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-destaque-light:hover {
    background-color: white;
    color: #1A2B4C;
    border-color: white;
    transform: translateY(-2px);
}
/* ============================================
   CABEÇALHO
   ============================================ */
header {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 8px 0;
}

nav a:not(.btn-destaque):not(.btn-loja):hover {
    color: #1A2B4C;
}

/* ===== BOTÃO LOJA ===== */
.btn-loja {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f7971e, #ffd200);
    color: #1A1A2E;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 151, 30, 0.3);
    white-space: nowrap;
}

.btn-loja:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 151, 30, 0.4);
}

.btn-loja i {
    font-size: 1rem;
}

/* ===== BOTÃO FALE COM ESPECIALISTA ===== */
.btn-destaque {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #1A2B4C;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    color: #1A2B4C;
    white-space: nowrap;
}

.btn-destaque:hover {
    background-color: #1A2B4C;
    color: white;
    transform: translateY(-2px);
}

.btn-destaque i {
    font-size: 1rem;
    margin-right: 0;
}

/* ============================================
   SEÇÃO HERO COM VÍDEO DE FUNDO
   ============================================ */
.hero-video-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #1A1A2E;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.hero-video-bg .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-video-bg .hero-texto {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: white;
}

.hero-video-bg .hero-texto h1 {
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-video-bg .hero-texto h1 span {
    color: #6C9BD2;
}

.hero-video-bg .hero-texto p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-botoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-estatisticas-bg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-estatisticas-bg .stat-item .numero {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 3rem;
}

.hero-estatisticas-bg .stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ============================================
   SEÇÃO SOLUÇÕES
   ============================================ */
.solucoes {
    padding: 80px 0;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card-solucao {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.card-solucao:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 43, 76, 0.1);
    border-color: #1A2B4C;
}

.card-solucao i {
    font-size: 2.5rem;
    color: #1A2B4C;
    margin-bottom: 15px;
    display: block;
}

.card-solucao h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1A2B4C;
}

.card-solucao p {
    color: #6C757D;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.card-solucao ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.card-solucao ul li {
    color: #495057;
    font-size: 0.9rem;
    padding: 4px 0;
}

/* ============================================
   SEÇÃO ARQUITETURA
   ============================================ */
.arquitetura {
    padding: 80px 0;
    background: white;
}

.fluxo-arquitetura {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.passo {
    background: #F8F9FA;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
    position: relative;
}

.passo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 43, 76, 0.1);
    border-color: #1A2B4C;
}

.numero-passo {
    display: inline-block;
    background: #1A2B4C;
    color: white;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.passo i {
    font-size: 2.5rem;
    color: #1A2B4C;
    display: block;
    margin-bottom: 15px;
}

.passo h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.passo p {
    font-size: 0.9rem;
    color: #6C757D;
}

.seta {
    font-size: 2rem;
    color: #1A2B4C;
    font-weight: 300;
}

.destaque-arquitetura {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.item-destaque {
    background: #F8F9FA;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border-left: 4px solid #1A2B4C;
}

.item-destaque i {
    font-size: 2rem;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.item-destaque h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.item-destaque p {
    color: #6C757D;
    font-size: 0.95rem;
}

/* ============================================
   SEÇÃO INTEGRAÇÕES
   ============================================ */
.integracoes {
    padding: 60px 0;
    background: #F8F9FA;
}

.grid-parceiros {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas fixas */
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Espaçamento entre as duas linhas */
.grid-parceiros:first-of-type {
    margin-bottom: 30px;
}

.parceiro {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #DEE2E6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.parceiro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 43, 76, 0.1);
    border-color: #1A2B4C;
}

.parceiro img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.parceiro:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   RESPONSIVIDADE DAS INTEGRAÇÕES
   ============================================ */
@media (max-width: 992px) {
    .grid-parceiros {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .parceiro {
        min-height: 70px;
        padding: 15px;
    }
    
    .parceiro img {
        max-width: 90px;
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .grid-parceiros {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
        gap: 15px;
    }
    
    .grid-parceiros:first-of-type {
        margin-bottom: 15px;
    }
    
    .parceiro {
        min-height: 60px;
        padding: 12px;
    }
    
    .parceiro img {
        max-width: 80px;
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .grid-parceiros {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no mobile */
        gap: 10px;
    }
    
    .parceiro {
        min-height: 50px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .parceiro img {
        max-width: 60px;
        max-height: 25px;
    }
}

/* ============================================
   SEÇÃO CASES
   ============================================ */

.cases {
    padding: 80px 0;
    background: white;
}

.grid-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-case {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.card-case:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 43, 76, 0.1);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.case-header i {
    font-size: 2.5rem;
    color: #1A2B4C;
}

.card-case h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1A2B4C;
}

.card-case p {
    color: #6C757D;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.tag {
    display: inline-block;
    background: #E9ECEF;
    color: #1A2B4C;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== MÍDIA DENTRO DOS CARDS (IMGEM E VÍDEO) ===== */
.card-media {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #E9ECEF;
    margin-top: 10px;
    position: relative;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== THUMBNAIL DO VÍDEO ===== */
.video-thumbnail {
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.play-overlay i {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.play-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-thumbnail:hover .play-overlay i {
    transform: scale(1.15);
}

/* ===== PLAYER DO VÍDEO ===== */
.video-player-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A2E;
    position: relative;
    margin-top: 10px;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fechar-video {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.fechar-video:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .grid-cases {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .grid-cases {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-case {
        padding: 25px 20px;
    }
}
/* ============================================
   THUMBNAIL E IMAGEM DENTRO DOS CARDS
   ============================================ */
.video-thumbnail,
.card-imagem {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    background: #E9ECEF;
}

.video-thumbnail img,
.card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card-case:hover .video-thumbnail img,
.card-case:hover .card-imagem img {
    transform: scale(1.03);
}

.video-player-wrapper {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A2E;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   PLAY OVERLAY
   ============================================ */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.play-overlay i {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.play-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-thumbnail:hover .play-overlay i {
    transform: scale(1.15);
}

/* ============================================
   FECHAR VÍDEO
   ============================================ */
.fechar-video {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.fechar-video:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .grid-cases {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .grid-cases {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .card-case {
        padding: 25px 20px;
    }
}

/* ============================================
   THUMBNAIL E IMAGEM DENTRO DOS CARDS
   ============================================ */
.video-thumbnail,
.card-imagem {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    background: #E9ECEF;
}

.video-thumbnail img,
.card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card-case:hover .video-thumbnail img,
.card-case:hover .card-imagem img {
    transform: scale(1.03);
}

.video-player-wrapper {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A2E;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   PLAY OVERLAY
   ============================================ */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.play-overlay i {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.play-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-thumbnail:hover .play-overlay i {
    transform: scale(1.15);
}

/* ============================================
   FECHAR VÍDEO
   ============================================ */
.fechar-video {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.fechar-video:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .grid-cases {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .grid-cases {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .card-case {
        padding: 25px 20px;
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .grid-cases {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (max-width: 768px) {
    .grid-cases {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
    }
    
    .card-case {
        padding: 25px 20px;
    }
}
/* ============================================
   SEÇÃO FAQ
   ============================================ */
.faq {
    padding: 80px 0;
    background: #F8F9FA;
}

.item-faq {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.pergunta {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-family: 'Inter', sans-serif;
    color: #1A1A2E;
}

.pergunta:hover {
    background: #F8F9FA;
}

.pergunta span {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.pergunta.ativo span {
    transform: rotate(45deg);
}

.resposta {
    padding: 0 25px 20px;
    color: #495057;
    line-height: 1.8;
    display: none;
}

.resposta.ativo {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ============================================
   RODAPÉ
   ============================================ */
footer {
    background: #1A1A2E;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #6C9BD2;
    border-radius: 2px;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    display: block;
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-slogan {
    color: #ADB5BD;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links,
.footer-contato {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contato li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contato a {
    color: #ADB5BD;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contato a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: #6C9BD2;
}

.footer-contato li {
    color: #ADB5BD;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contato li i {
    color: #6C9BD2;
    width: 20px;
    font-size: 1.1rem;
}

.footer-contato li a {
    color: #ADB5BD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contato li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    color: #6C757D;
    font-size: 0.9rem;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.4rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-logo-col {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    .footer-slogan {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    nav {
        gap: 15px;
        justify-content: center;
    }
    nav a:not(.btn-destaque) {
        font-size: 0.9rem;
    }
    
    .hero-video-bg {
        min-height: 90vh;
    }
    .hero-video-bg .hero-content {
        padding: 30px 0 30px;
    }
    .hero-video-bg .hero-texto h1 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    .hero-video-bg .hero-texto p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .hero-botoes {
        gap: 10px;
    }
    .hero-botoes .btn-principal,
    .hero-botoes .btn-destaque-light {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    .hero-estatisticas-bg {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 25px 20px;
        margin-top: 20px;
    }
    .hero-estatisticas-bg .stat-item .numero {
        font-size: 2.5rem;
    }
    
    .fluxo-arquitetura {
        flex-direction: column;
    }
    .seta {
        transform: rotate(90deg);
    }
    .passo {
        width: 100%;
    }
    .grid-cards, .grid-cases {
        grid-template-columns: 1fr;
    }
    .destaque-arquitetura {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo-col {
        align-items: center;
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-contato li {
        justify-content: center;
    }
    .footer-logo-img {
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .btn-principal, .btn-destaque {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .hero-video-bg .hero-content {
        padding: 20px 0 20px;
    }
    .hero-video-bg .hero-texto h1 {
        font-size: 2rem;
    }
    .hero-video-bg .hero-texto p {
        font-size: 0.95rem;
    }
    .hero-estatisticas-bg {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
        margin-top: 15px;
    }
    .hero-estatisticas-bg .stat-item .numero {
        font-size: 2rem;
    }
}
/* ============================================
   MODAIS
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUpModal 0.3s ease;
}

@keyframes slideUpModal {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-fechar {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #F1F3F5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-fechar:hover {
    background: #E9ECEF;
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px 35px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    background: #EBF4FF;
    color: #1A2B4C;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #6C757D;
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #DEE2E6;
    background: #F8F9FA;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #1A2B4C;
    box-shadow: 0 0 0 3px rgba(26, 43, 76, 0.1);
    background: white;
}

.modal-btn-primary {
    width: 100%;
    padding: 14px;
    background: #1A2B4C;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
}

.modal-btn-primary:hover {
    background: #0D1B2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 43, 76, 0.3);
}

.modal-btn-primary:disabled {
    background: #ADB5BD;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: none;
}

.modal-status.info {
    display: block;
    background: #EBF4FF;
    border: 1px solid #B8D4F0;
    color: #1A2B4C;
}

.modal-status.success {
    display: block;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    color: #2E7D32;
}

.modal-status.error {
    display: block;
    background: #FFEBEE;
    border: 1px solid #EF9A9A;
    color: #C62828;
}

/* ============================================
   RESPONSIVIDADE DOS MODAIS
   ============================================ */
@media (max-width: 576px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .modal-container {
        width: 95%;
        border-radius: 16px;
    }
}
.logo img {
    max-height: 50px;  /* Aumente de 50px para 80px ou mais */
    width: auto;
}
/* ============================================
   VÍDEO DENTRO DOS CARDS
   ============================================ */
.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    margin-top: 15px;
    background: #1A1A2E;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player-wrapper {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A2E;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.play-overlay i {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.play-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-thumbnail:hover .play-overlay i {
    transform: scale(1.15);
}

.fechar-video {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.fechar-video:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}
/* ============================================
   IMAGEM DENTRO DOS CARDS
   ============================================ */
.card-imagem {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    background: #E9ECEF;
}

.card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card-case:hover .card-imagem img {
    transform: scale(1.03);
}
/* ============================================
   MODAL - TELEFONE/WHATSAPP
   ============================================ */
.modal-telefone-container {
    max-width: 420px;
}

.modal-telefone-content {
    text-align: center;
    padding: 40px 35px 45px;
}

.modal-telefone-icon {
    width: 80px;
    height: 80px;
    background: #E8F5E9;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.telefone-wrapper {
    margin: 25px 0 20px;
}

.telefone-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.telefone-link i {
    font-size: 1.5rem;
}

/* Link do WhatsApp */
.whatsapp-link {
    background: #25D366;
}

.whatsapp-link:hover {
    background: #1DA851;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.telefone-horario {
    color: #6C757D;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.telefone-horario i {
    color: #25D366;
    margin-right: 8px;
}

.modal-btn-secondary {
    background: transparent;
    color: #6C757D;
    border: 1px solid #DEE2E6;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.modal-btn-secondary:hover {
    background: #F8F9FA;
    border-color: #ADB5BD;
}

/* Responsividade do Modal */
@media (max-width: 480px) {
    .telefone-link {
        font-size: 1rem;
        padding: 14px 25px;
        gap: 12px;
    }
    
    .modal-telefone-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
}

/* Responsividade do Modal de Telefone */
@media (max-width: 480px) {
    .telefone-link {
        font-size: 1.2rem;
        padding: 14px 25px;
        gap: 12px;
    }
    
    .modal-telefone-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
}
/* ============================================
   BOTÃO LOJA
   ============================================ */
.btn-loja {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f7971e, #ffd200);
    color: #1A1A2E;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 151, 30, 0.3);
}

.btn-loja:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 151, 30, 0.4);
}

.btn-loja i {
    margin-right: 8px;
}
/* ============================================
   RESPONSIVIDADE DO CABEÇALHO
   ============================================ */
@media (max-width: 992px) {
    header .container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    nav {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    nav {
        gap: 10px;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    
    .btn-loja,
    .btn-destaque {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
    
    .logo img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 6px;
    }
    
    nav a {
        font-size: 0.75rem;
        padding: 4px 6px;
    }
    
    .btn-loja,
    .btn-destaque {
        padding: 4px 10px;
        font-size: 0.75rem;
        border-radius: 30px;
    }
    
    .btn-loja i,
    .btn-destaque i {
        font-size: 0.7rem;
    }
    
    .logo img {
        max-height: 35px;
    }
}
/* ============================================
   SEÇÃO NOTÍCIAS
   ============================================ */
.noticias {
    padding: 80px 0;
    background: #F8F9FA;
}

.noticias-subtitle {
    text-align: center;
    color: #6C757D;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.grid-noticias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.card-noticia {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-noticia:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 43, 76, 0.08);
    border-color: #1A2B4C;
}

.noticia-categoria {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1A2B4C;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.noticia-categoria i {
    font-size: 1rem;
    color: #6C9BD2;
}

.card-noticia h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-noticia p {
    color: #6C757D;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.noticia-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #E9ECEF;
    margin-top: auto;
}

.noticia-data {
    font-size: 0.8rem;
    color: #ADB5BD;
}

.noticia-footer a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A2B4C;
    transition: all 0.3s ease;
}

.noticia-footer a:hover {
    color: #6C9BD2;
    transform: translateX(3px);
}

.noticia-atualizado {
    text-align: right;
    font-size: 0.8rem;
    color: #ADB5BD;
    font-style: italic;
}

/* ============================================
   RESPONSIVIDADE - NOTÍCIAS
   ============================================ */
@media (max-width: 768px) {
    .grid-noticias {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-noticia {
        padding: 25px 20px;
    }
    
    .card-noticia h3 {
        font-size: 1.1rem;
    }
}
/* ============================================
   SEÇÃO SOBRE
   ============================================ */
.sobre {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #E9ECEF;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto h2 {
    text-align: left;
    margin-bottom: 20px;
}

.sobre-texto h2::after {
    margin: 10px 0 0 0;
}

.sobre-texto p {
    color: #495057;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sobre-texto p:last-child {
    margin-bottom: 0;
}

.sobre-destaque {
    color: #1A2B4C;
    font-weight: 600;
}

/* ===== LOGO NA SEÇÃO SOBRE ===== */
.sobre-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-icon img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sobre-icon img:hover {
    transform: scale(1.03);
}

/* ============================================
   RESPONSIVIDADE - SOBRE
   ============================================ */
@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sobre-texto h2 {
        text-align: center;
    }
    
    .sobre-texto h2::after {
        margin: 10px auto 0;
    }
    
    .sobre-icon img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .sobre {
        padding: 60px 0;
    }
    
    .sobre-texto p {
        font-size: 1rem;
    }
    
    .sobre-icon img {
        max-width: 160px;
    }
}

/* ============================================
   BOTÃO LOGIN
   ============================================ */
.btn-login-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: #1A2B4C;
    border: 2px solid #1A2B4C;
    white-space: nowrap;
}

.btn-login-nav:hover {
    background: #1A2B4C;
    color: white;
    transform: translateY(-2px);
}

.btn-login-nav i {
    font-size: 0.9rem;
}

/* Se o usuário estiver logado, muda o estilo */
.btn-login-nav.logged {
    background: #E8F5E9;
    border-color: #2E7D32;
    color: #2E7D32;
}

.btn-login-nav.logged:hover {
    background: #2E7D32;
    color: white;
}

/* ============================================
   BOTÃO CONDOMÍNIOS
   ============================================ */
.btn-condominios {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a8a4a, #2ecc71);
    color: white;
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(26, 138, 74, 0.3);
    text-decoration: none;
}

.btn-condominios:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 138, 74, 0.4);
    background: linear-gradient(135deg, #0f6b38, #27ae60);
    color: white;
}

.btn-condominios i {
    font-size: 0.95rem;
}