   /* Reset básico */
   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.header {
    padding: 90px 20px;
    text-align: center;
    background: #6699FF;
    color: white;
    margin-top: 70px;
}

.header h1 {
    font-size: 40px;
    font-family: verdana;
}

.header p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Benefícios */
.benefits {
    padding: 20px;
    background: #f8f8f8;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits h2 {
    color: #333;
    margin-bottom: 15px;
}

.benefits p {
    margin: 10px 0;
}

/* Taxas de Habilitação */
.activation-fees {
    margin: 0px auto;
    max-width: 1100px;
    text-align: center;
    padding: 20px;
    background: #f7f7f7;
}

.activation-fees h2 {
    margin-bottom: 10px;
}

.activation-fees p {
    margin-bottom: 10px;
}


.container img {
    vertical-align: middle;
    margin-right: 8px;
}

/* Seção dos planos (com abas) */
.plans-section {
    margin: 50px auto;
    max-width: 1100px;
    text-align: center;
    padding: 0 20px;
}

.plans-section h2 {
    margin-bottom: 10px;
}

.plan-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.plan-tab {
    padding: 10px 20px;
    border: none;
    background-color: #f0f0f0;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.plan-tab.active,
.plan-tab:hover {
    background-color: #FF9933;
    color: #fff !important;
    border-width: 0px;
}

/* Card dos planos */
.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #6699FF;
    color: white;
}

.plan-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.plan-card .plan-minutes {
    font-weight: bold;
    margin-bottom: 15px;
}

.plan-discount {
    font-weight: bold;
    color: #d35400;
    /* cor para destacar o desconto */
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.plan-card .plan-price {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.plan-card .additional-minute {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.plan-card button {
    background-color: #6699FF;
    color: #fff;
    border: none;
    padding: 10px 60px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.plan-card button:hover {
    background-color: #4883f8;
}

.testimonials h2 {
    margin-bottom: 10px;
    text-align: center;
}

.testimonials p {
    font-style: italic;
    margin: 15px 0;
}

.testimonials strong {
    display: block;
    margin-top: 5px;
    font-style: normal;
}

/* Rodapé */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.footer a {
    color: #6699FF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #1abc9c;
    text-decoration: underline;
}

/* Links gerais */
a {
    color: #6699FF;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #1abc9c;
    text-decoration: underline;
}

a:visited {
    color: #6699FF;
}

/* Imagens responsivas */
.responsive-img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .header p {
        display: none;
    }

    .benefits {
        display: none;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 400px;
    }

    .header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.6rem;
    }

    .header p {
        font-size: 1rem;
    }

    .testimonials {
        display: none;
    }
}