/* Estilos para a página one-page do Previplan */

:root {
    --blue-primary: #0066cc;
    --blue-secondary: #003399;
    --pink-primary: #ff3399;
    --green-primary: #00cc66;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --text-yellow: #FFDF00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    overflow-x: hidden;
}

.text-yellow {
    color: var(--text-yellow);
}
.section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Seção 1 - Introdução */
.section-intro {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    text-align: center;
    position: relative;
}

.text-gradient {
    background: #FF8DF2;
    background: linear-gradient(to right, #FF8DF2 0%, #E5CE21 56%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-intro h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-intro h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: #1a648d;
}

.section-intro p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.section-intro .people-img {
    max-width: 80%;
    margin-top: 2rem;
}

/* Seção 2 - Celular */
.section-phone {
    background: linear-gradient(to bottom, #001133, #000066);
    color: var(--white);
    text-align: center;
}

.section-phone h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-phone .bottles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.section-phone .bottle {
    max-width: 60px;
}

.btn-primary {
    background-color: var(--blue-primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    margin: 1rem 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--blue-secondary);
    transform: scale(1.05);
}

.section-intro h2 b {
    color: var(--blue-secondary);
}

.section-phone h4 {
    line-height: 2.4rem;
}

.section-phone .phone-img {
    position: absolute;
    right: 0;
    top: 100px;
}
/* Seção 3 - Formulário */
.section-form {
    background-color: #00000033;
    padding: 0;
}

.cpf-form {
    border: 4px solid #ff8900 !important;
    border-radius: 14px !important;
    background-color: #023d6f !important;
    text-align: center !important;
    padding: 12px !important;
    max-width: 400px !important;
    color: white !important;
    font-weight: 800 !important;
}

.cpf-form::placeholder {
    color: #d4af37 !important; /* cor do placeholder */
    font-weight: 800 !important;
    opacity: 1; /* garante que não fique transparente */
}

.form-container {
    max-width: 500px;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--blue-primary);
    border-radius: 30px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.877);
}

.form-check-input[type="checkbox"] {
    appearance: none; /* remove o estilo padrão */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff; /* fundo quando não selecionado */
    cursor: pointer;
    position: relative;
    border-radius: 15px !important;
}

.form-check-input[type="checkbox"]:checked {
    border-color: #fcb408;
    background-color: #fff;
}

.form-check-input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: #fcb408; /* cor da bolinha interna */
    border-radius: 50%;
}

/* Seção 4 - Quase lá */

.name-form {
    border: 4px solid #ff8900 !important;
    border-radius: 14px !important;
    background-color: #023d6f !important;
    text-align: center !important;
    padding: 12px !important;
    max-width: 400px !important;
    color: white !important;
    font-weight: 800 !important;
}

.name-form::placeholder {
    color: #d4af37 !important; /* cor do placeholder */
    font-weight: 800 !important;
    opacity: 1; /* garante que não fique transparente */
}

.section-almost {
    background-color: var(--blue-primary);
    color: var(--white);
    text-align: center;
}

.section-almost .people-group {
    max-width: 80%;
    margin: 2rem 0;
    border-radius: 10px;
}

/* Seção 5 - Instagram */
.section-instagram {
    background-color: var(--pink-primary);
    color: var(--white);
    text-align: center;
}

.section-instagram h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.instagram-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.instagram-img {
    width: 40%;
    left: -140px;
    position: relative;
    bottom: -125px;
}

/* Seção 6 - WhatsApp */
.section-whatsapp {
    background-color: var(--green-primary);
    color: var(--white);
    text-align: center;
}

.section-whatsapp h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.whatsapp-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.2);
}

.qr-code {
    max-width: 150px;
    margin: 1.5rem 0;
}

/* Seção 7 - Parabéns */
.section-congrats {
    background-color: var(--blue-secondary);
    color: var(--white);
    text-align: center;
}

.section-congrats .code {
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--blue-primary);
    border-radius: 10px;
    margin: 2rem 0;
    display: inline-block;
    width: 300px;
    border: 5px solid #ffdf00;
    border-radius: 17px;
}

/* Footer */
.footer {
    background: rgb(255, 149, 0);
    background: -webkit-linear-gradient(90deg,rgb(255, 149, 0) 0%, rgba(0, 81, 159, 1) 100%);
    background: -moz-linear-gradient(90deg,rgb(255, 149, 0) 0%, rgba(0, 81, 159, 1) 100%);
    background: linear-gradient(90deg,rgb(255, 149, 0) 0%, rgba(0, 81, 159, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#fde405",
    endColorstr="#00519F",
    GradientType=1
    );
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Navegação entre seções */
.nav-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-iphone {
    background-color: #fa9728;
    border: 1px solid white;
    border-radius: 15px;
    padding: 10px 50px;
    font-weight: 800;
    color: #2d5171;
    text-shadow: 0 0 BLACK;
    box-shadow: rgb(0 0 0 / 75%) 0px 8px 24px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-iphone:hover {
    background-color: var(--white);
    color: var(--blue-primary);
}


.btn-cinza {
    border-radius: 15px !important;
    font-weight: 800 !important;
    box-shadow: rgb(0 0 0 / 45%) 0px 8px 24px !important;
    color: var(--blue-secondary) !important;
}


.btn-instagram {
    background: #F22D5D;
    background: -webkit-linear-gradient(180deg,rgba(242, 45, 93, 1) 0%, rgba(189, 63, 172, 1) 100%);
    background: -moz-linear-gradient(180deg,rgba(242, 45, 93, 1) 0%, rgba(189, 63, 172, 1) 100%);
    background: linear-gradient(180deg,rgba(242, 45, 93, 1) 0%, rgba(189, 63, 172, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#F22D5D",
    endColorstr="#BD3FAC",
    GradientType=0
    );
    border: 2px solid white !important;
    border-radius: 15px !important;
    color: var(--white) !important;
    box-shadow: rgb(0 0 0 / 15%) 0px 8px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-azul {
    background-color: #0964a4 !important;
    border: 2px solid #08578f !important;
    border-radius: 15px !important;
    color: var(--white) !important;
    font-weight: 800 !important;
    box-shadow: rgb(0 0 0 / 15%) 0px 8px 24px !important;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: scale(1.02);
}
.btn-azul:hover {
    background-color: #1b6ca7 !important;
    color: var(--white) !important;
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
    .section {
        padding: 1.5rem;
    }

    .section-intro h1 {
        font-size: 2rem;
    }

    .section-phone .bottles {
        flex-wrap: wrap;
    }

    .section-almost h2,
    .section-congrats h2 {
        font-size: 2rem;
    }
}