body {
    background-color: rgb(46, 40, 5);
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    
}

/* ===== HEADER ===== */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    background: rgb(255, 255, 255); /* coloque a cor que seu menu usa */
    box-sizing: border-box;
    height: 90px;
    z-index: 9999;

}

/* Logo fica fixa na esquerda */
.logo {
    width: 100px;
}

/* Essa div vai ocupar todo espaço */
.menu-direita {
    display: flex;
    align-items: center;
    gap: 30px;
}




/* ===== MENU ===== */
nav {
    display: flex;
    gap: 30px;
    align-items: center; /* centraliza vertical */
    height: 100%; /* ocupa altura do header */
    
}
nav a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center; /* centraliza texto */
    height: 100%;
}


nav a:hover {
    text-decoration: underline;
    
}
/* seçao  inicial */
.hero {
    background-color: #FFF7EC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 5%;
    box-sizing: border-box;
}
.destaque-titulo {
color: #ff4d00;}

.descricao {
    font-size: 20px; ;
    color: #666;
}

.hero-texto {
    width: 50%;
    
}

.hero-texto h1 {
    font-size: 48px;
    text-shadow: 3px 3px 3px rgb(77, 77, 77);
}

.botoes {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.hero-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-imagem img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.btn-primary {
    background-color: #ff4d00;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.botao2 {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.btn-assine {
    background-color: #ff4d00;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* ===== SERVIÇOS ===== */

.servicos {
    padding: 80px 5%;
    text-align: center;
    background: #f5f5f5;
}

.servicos-topo h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.servicos-topo p {
    color: #666;
    margin-bottom: 50px;
}

/* Grade */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card h3 {
    margin: 15px 0;
}

.card p {
    color: #555;
    line-height: 1.6;
}

.planos {
    padding: 80px 5%;
    text-align: center;
    background: #f5f5f5;
}

.planos-titulo h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.planos-titulo p {
    color: #666;
    margin-bottom: 50px;
}
.planos-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

/* CARD BASE */
.card-plano {
    background: #f3f3f3;
    width: 320px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    position: relative;
}

/* PREÇO */
.valor {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a;
}

.mes {
    font-size: 14px;
    color: #666;
}

.velocidade {
    background: #f4dcc2;
    color: #ff4d00;
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
}

/* LISTA */
.beneficios {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.beneficios li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.beneficios li::before {
    content: "✔";
    color: #00b140;
    position: absolute;
    left: 0;
}

/* BOTÕES */
.btn-principal {
    display: inline-block;
    background: #ff4d00;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secundario {
    display: inline-block;
    border: 2px solid #ff4d00;
    color: #ff4d00;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* CARD DESTAQUE */
.destaque {
    border: 3px solid #ff4d00;
    transform: scale(1.05);
}

/* BADGE */
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
}
