body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #54AFE6; /* cinza claro */33ccff
    color: #333;
}
.logo-topo {
    height: 80px;       /* ajusta a altura da imagem */
    width: auto;        /* mantém proporção */
    display: block;     /* evita problemas de alinhamento */
    margin: 0 auto;     /* centraliza horizontalmente */
	border-radius: 20px;
	height: 80px;
    margin-left: 30px; /* aumenta para mover mais pra frente */
    padding: 10px 20px;
}
.botao-cliente {
    display: inline-block;
    background: #FFA04C; /* azul escuro */
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.botao-cliente:hover {
    background: #10386b; /* tom mais escuro ao passar o mouse */
    transform: scale(1.05);
}

header {
    
}

/* MENU */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 60px;
    background: #0D4AB0; /* azul escuro */#102B78 0b3d91
    color: white;
}
header nav a {
    color: white;
    margin-left: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* BANNER */
.banner {
    text-align: center;
    padding: 90px 20px;
    background: linear-gradient(to right, #4dabf7, #0b3d91); /* azul claro → azul escuro */
    color: white;
}
.botao {
    display: inline-block;
    background: #4289C7; /* azul claro */4dabf7
    padding: 12px 22px;
    border-radius: 3px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}
.botao:hover {
    background: #74c0fc;
}

/* PLANOS */
.planos {
    padding: 110px 20px;
    text-align: center;
}
.plano-lista {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.plano {
    background:#E3E3E3;            /* caixa de planos*/ #4dabf7
    padding:10px;
    width: 230px;
    border-radius: 30px;
    box-shadow:0 0 50px #0002;
    border-top: 15px solid #FFA04C;
}
.plano.destaque {
    border-top: 15px solid #0b3d91;
    transform: scale(1.05);
}
.planos h2 {
    font-size: 35px;  /* aumenta o tamanho da fonte */
    font-weight: bold; /* deixa mais destacado */
    color: #000000;   /* opcional: muda a cor do texto */
}
.plano h3 {
    font-size: 35px;  /* aumenta o tamanho da fonte */
    font-weight: bold; /* deixa mais destacado */
    color: #000000;   /* opcional: muda a cor do texto */
}
.planos li {
    font-size: 15px;  /* aumenta o tamanho da fonte */
    font-weight: bold; /* deixa mais destacado */
    color: #000000;   /* opcional: muda a cor do texto */
}
.valor {
    font-size: 32px;
    font-weight: bold;
    color: #0b3d91;
}
.sessao {
    padding: 30px 20px;
    max-width: 1100px;
    margin: auto;
}

.sessao h2 {
    text-align: center;
    font-size: 32px;
    color: #144a96; /* azul escuro */
    margin-bottom: 25px;
}

/* Seção R&S TV */
#rs-tv {
    background: #E3E3E3;
    border-top: 15px solid #1a4f9c;
    border-bottom: 3px solid #1a4f9c;
	border-radius: 30px;
}

#rs-tv h2 {
    font-size: 32px;
    color: #144a96;
    text-align: center;
    margin-bottom: 20px;
}

.descricao-tv {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 0px auto;
    color: #333;
}

.grade-tv {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.canal {
    background: white;
    border: 1px solid #cdddf5;
    width: 230px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    transition: 0.3s;
}

.canal img {
    height: 60px;
    margin-bottom: 10px;
}

.canal h3 {
    color: #1a4f9c;
    font-size: 22px;
    margin-bottom: 10px;
}

.canal p {
    font-size: 15px;
    color: #555;
}

/* Efeito ao passar o mouse */
.canal:hover {
    transform: scale(1.05);
    border-color: #1a4f9c;
}

/* Botão */
.botao-tv {
    display: inline-block;
    background: #1a4f9c;
    color: white;
    padding: 15px 35px;
    margin: 40px auto 0 auto;
    font-size: 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.botao-tv:hover {
    background: #10386b;
}

/* Diferenciais */
.cards-diferenciais {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #E3E3E3;
    border: 1px solid #d1e5ff;
    padding: 10px;
    text-align: center;
    width: 180px;
    border-radius: 10px;
}

.vlocidade {
	 height: 40px;
}

/* Lista de cobertura */
.lista-cobertura li {
    margin: 5px 0;
    font-size: 18px;
}

/* Depoimentos */
.depoimento {
    background: #E3E3E3;
    padding: 20px;
    margin: 10px auto;
    width: 80%;
    border-left: 5px solid #144a96;
}

/* Equipamentos */
.lista-equip {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.equip {
    width: 250px;
    text-align: center;
}

/* FAQ */
details {
    background: #E3E3E3;
    padding: 15px;
    border: 1px solid #dceaff;
    margin: 10px 0;
    border-radius: 6px;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 30px;
    background: #144a96;
    color: white;
    margin-top: 40px;
}


/* SOBRE */
.sobre {
    padding: 10px 20px;
    text-align: center;
}

/* CONTATO */
.contato {
    padding: 40px 20px;
    text-align: center;
    background: #E3E3E3;
}
.icone-whats {
    height: 40px;      /* tamanho do ícone */
    width: auto;       /* mantém proporção */
    vertical-align: middle; /* alinha com o texto */
    margin-right: 2px; /* espaço entre ícone e texto */
}

.contato-info p {
    margin: 6px 0;
}

/* RODAPÉ */
footer {
    text-align: center;
    padding: 20px;
    background: #0b3d91;
    color: white;
    margin-top: 40px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .plano-lista {
        flex-direction: column;
        align-items: center;
    }
}
