
body.landing-body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.highlight {
    color: var(--neon-cyan);
}

.alerta-text {
    color: var(--neon-orange);
}

/* ==========================================================
   BOTÕES E BADGES
   ========================================================== */
.badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 255, 204, 0.1);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.badge.destaque {
    color: var(--neon-cyan);
}

.badge.alerta {
    background: rgba(255, 170, 0, 0.1);
    color: var(--neon-orange);
    border-color: var(--neon-orange);
}

.btn-primary {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.btn-primary:hover {
    background: #00e6b8;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 255, 204, 0.1);
}

.alerta-btn {
    background: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.3);
}

.alerta-btn:hover {
    background: #e69900;
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.6);
}


/* ==========================================================
   SECÇÃO 1: CARROSSEL (HERO)
   ========================================================== */
.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 26, 0.753), rgba(10, 15, 26, 0.795));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trust-indicators i {
    color: var(--neon-cyan);
    margin-right: 8px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    z-index: 15;
    display: flex;
    gap: 12px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transform: scale(1.2);
}


/* ==========================================================
   SECÇÃO 2: ÉTICA (LINHA VERMELHA)
   ========================================================== */
.etica-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.etica-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.etica-card.fazemos {
    border-top: 4px solid var(--neon-cyan);
}

.etica-card.nao-fazemos {
    border-top: 4px solid var(--neon-red);
}

.etica-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fazemos .etica-icon {
    color: var(--neon-cyan);
}

.nao-fazemos .etica-icon {
    color: var(--neon-red);
}

.etica-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
}

.etica-lista {
    list-style: none;
    padding: 0;
}

.etica-lista li {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.fazemos .etica-lista i {
    color: var(--neon-cyan);
    margin-top: 4px;
}

.nao-fazemos .etica-lista i {
    color: var(--neon-red);
    margin-top: 4px;
}


/* ==========================================================================
   SECÇÃO: QUEM SOMOS (Features)
   ========================================================================== */
.quem-somos-section {
    margin-top: 100px;
}

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

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    padding: 20px;
    position: relative;
}

.feature-icon-bg {
    position: absolute;
    top: -15px;
    left: -10px;
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 255, 0.03); /* Fundo muito subtil */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 255, 0.1); /* Borda subtil */
}

.feature-icon-bg i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 50px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==========================================================================
   SECÇÃO: MISSÃO, VISÃO E VALORES (MVV)
   ========================================================================== */
.mvv-section {
    margin-top: 60px;
}

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

.mvv-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito Premium ao passar o rato */
.mvv-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.05);
}

.mvv-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.mvv-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.mvv-lista {
    list-style: none;
    padding: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Responsividade Básica para Telemóveis */
@media (max-width: 768px) {
    .etica-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

/* CSS PARA OS DEPOIMENTOS */
.reviews-section .container {
    max-width: 1400px; /* Aumentamos um pouco para caber 5 cartões lado a lado */
}

.reviews-grid {
    display: grid;
    gap: 20px;
    /* Alinha o conteúdo dos cartões uniformemente se tiverem alturas diferentes */
    align-items: stretch; 
}

/* Telas muito pequenas (Telemóveis) - 1 coluna */
@media (max-width: 599px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Telas médias (Tablets) - 2 ou 3 colunas */
@media (min-width: 600px) and (max-width: 1023px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telas grandes (Computadores) - 4 colunas EXATAMENTE */
@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Efeito Hover nos Cartões */
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}