/* CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    padding-bottom: 50px;
}

/* CORES DE DESTAQUE */
.destaque-amarelo {
    color: #f1c40f;
}

/* CABEÇALHO */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #0b0b0b;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: 50px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    object-fit: cover;
}
 

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #f1c40f;
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 5px;
}

/* CONTAINER PRINCIPAL */
.main-container {
    text-align: center;
    padding: 60px 8% 20px 8%;
}

.badge-confianca {
    display: inline-block;
    border: 1px solid #634d0b;
    padding: 6px 16px;
    border-radius: 20px;
    color: #f1c40f;
    font-size: 14px;
    margin-bottom: 20px;
}

.titulo-principal {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitulo {
    color: #888;
    font-size: 16px;
    margin-bottom: 40px;
}

/* CARDS (GRID) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 30px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #dddddd;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #f1c40f;
}

/* LINHA DIVISÓRIA */
.divisor {
    border: 0;
    height: 1px;
    background: #2a2a2a;
    margin: 60px auto;
    max-width: 80%;
}

/* SEÇÃO DE CONTATO */
.contato-container {
    text-align: center;
    padding: 20px 8%;
}

.titulo-contato {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contato-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contato-item {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 20px;
    border-radius: 12px;
    min-width: 250px;
    flex: 1;
}

.icone-contato {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

/* BOTÃO WHATSAPP FLUTUANTE */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2ecc71;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}