/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    padding: 0;
}

/* Cabeçalho */
.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #2b2d42;
}

.logo {
    width: 120px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.botao-destaque {
    background-color: yellow;
    color: #000;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

/* Banner de Destaque */
.banner-gratuito {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    margin: 40px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.conteudo-banner {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
}

.img-container {
    flex: 1;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.img-banner {
    width: 100%;
    height: auto;
    display: block;
}

.texto-banner {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.texto-banner h1 {
    font-size: 2.8rem;
    color: #2b2d42;
    margin-bottom: 25px;
    position: relative;
}

.texto-banner h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #4cc9f0;
    border-radius: 2px;
}

.texto-banner p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-banner {
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
}

.btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
    background: linear-gradient(135deg, #3ba9d1 0%, #354fdb 100%);
}

/* Seção de Planos */
.planos {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.titulo-secao {
    text-align: center;
    font-size: 2.8rem;
    color: #2b2d42;
    margin-bottom: 3rem;
}

.cards-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    justify-content: center;
    gap: 2.8rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plano-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.plano-header {
    background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
    padding: 2rem 1.5rem;
    color: white;
    text-align: center;
}

.plano-card.destaque .plano-header {
    background: linear-gradient(135deg, #2b2d42 0%, #4361ee 100%);
}

.economia {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.plano-header h3 {
    font-size: 1.4rem;
    margin: 0.8rem 0;
}

.plano-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.precos {
    text-align: center;
    margin-bottom: 0;
}

.parcelado {
    font-size: 1.4rem;
    color: #2b2d42;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.avista {
    color: #4a4a4a;
    font-size: 0.9rem;
}

.beneficios {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}

.beneficios li {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid #eee;
}

.beneficios li:last-child {
    border-bottom: none;
}

.btn-plano {
    padding: 1rem !important;
    height: auto !important;
    background: linear-gradient(135deg, #2b2d42 0%, #4361ee 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-plano:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Formulário */
.cadastro {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.logo-cadastro {
    width: 140px;
    margin-bottom: 25px;
}

.form-container h3 {
    font-size: 1.8rem;
    color: #2b2d42;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-container input:focus {
    border-color: #4cc9f0;
    outline: none;
}

.termos {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    text-align: left;
    margin: 20px 0;
    color: #4a4a4a;
}

.btn-cadastrar {
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cadastrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
}

.login-link {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.login-link a {
    color: #4361ee;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Rodapé */
.rodape {
    background-color: #2b2d42;
    color: #fff;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

/* Imagens nos cards */
.img-card {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    width: 150px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.img-card.redondo {
    border-radius: 50%;
}



/* Responsivo */
@media (max-width: 768px) {
    .cabecalho {
        padding: 15px 20px;
    }

    .banner-gratuito {
        margin: 20px;
        padding: 40px 15px;
        border-radius: 30px;
    }

    .conteudo-banner {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .texto-banner h1 {
        font-size: 2.2rem;
    }

    .btn-banner {
        padding: 14px 35px;
    }

    .cards-planos {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .plano-card {
        max-width: 100%;
    }

    .titulo-secao {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .texto-banner h1 {
        font-size: 1.8rem;
    }

    .texto-banner p {
        font-size: 1rem;
    }

    .btn-banner {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .form-container {
        padding: 25px;
    }
}

/* Rodapé */
.rodape {
    background-color: #2b2d42;
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.container-rodape {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.coluna-rodape {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.logo-rodape {
    width: 160px;
    margin-bottom: 25px;
}

.descricao-empresa {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.titulo-rodape {
    color: #4cc9f0;
    font-size: 1.2rem;
    margin-bottom: 25px;
    border-left: 3px solid white;
    padding-left: 15px;
}

.links-rodape {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-rodape li {
    margin-bottom: 12px;
}

.links-rodape a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-rodape a:hover {
    color: yellow;
}

.contato-rodape {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contato-rodape li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.social-rodape {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-rodape img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-rodape img:hover {
    transform: translateY(-2px);
}

.info-legal {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 40px;
}

.rodape-inferior {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.links-legais {
    margin-top: 15px;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.links-legais a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.links-legais a:hover {
    color: #4cc9f0;
}

/* Responsivo */
@media (max-width: 768px) {
    .container-rodape {
        flex-direction: column;
        gap: 40px;
    }

    .coluna-rodape {
        padding: 20px 0;
    }

    .rodape-inferior {
        text-align: left;
    }

    .links-legais {
        justify-content: flex-start;
    }
}