/* =========================
   BASE
========================= */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(245, 245, 245);
    color: #333;
}

/* =========================
   NOTIFICAÇÃO (POPUP SMS)
========================= */

.notification {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    background-color: rgba(57, 56, 56, 0.55);

    display: none;
    justify-content: center;


    z-index: 2147483647 !important;

    /* 🔥 BLUR REAL iOS */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    isolation: isolate;

    overflow: hidden;
}

.sms-notification {
    width: 90%;
    max-width: 520px;
    margin-top: 40px;

    background-color: white;
    border-radius: 14px;
    border: 2px solid orange;

    display: flex;
    flex-direction: column;
    gap: 10px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);

    /* estado inicial */
    opacity: 0;
    transform: translateY(40px) scale(0.95);

    animation: modalIn 0.35s ease forwards;
}

@keyframes modalIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    70% {
        opacity: 1;
        transform: translateY(-5px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-out {
    animation: modalOut 0.25s ease forwards;
}

@keyframes modalOut {
    to {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
}

.div-span {
    width: 100%;
    padding: 8px;
    display: flex;
    justify-content: flex-end;
}

.p-sms {
    text-align: justify;
    text-indent: 15px;
    padding: 12px;
}

/* =========================
   CONTAINER PRINCIPAL
========================= */

.container {
    position: relative;
    top: 80px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* =========================
   PLANOS (CORRIGIDO)
========================= */

.planos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;

    width: 100%;
    max-width: 420px;
    margin: auto;
}

/* =========================
   CARD PLANO (MODERNO)
========================= */

.plano {
    background: white;
    border-radius: 18px;
    padding: 25px;

    width: 100%;
    text-align: center;

    border: 1px solid rgba(255, 165, 0, 0.3);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    transition: all 0.25s ease;
}



.plano h3 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

.plano .preco {
    font-size: 2.2rem;
    color: #ff7a00;
    font-weight: 800;
    margin: 15px 0;
}

/* =========================
   LISTA DE BENEFÍCIOS
========================= */

.plano ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.plano ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    padding: 12px 14px;

    border-radius: 12px;

    border: 1px solid #f0f0f0;
}

.plano ul li::before {
    content: "✔";
    position: absolute;
    left: -20px;
    color: #ff7a00;
}

/* =========================
   BOTÃO PRINCIPAL
========================= */

.btn-escolher {
    width: 100%;
    padding: 12px;

    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: white;

    border: none;
    border-radius: 12px;

    font-weight: 600;
    font-size: 1rem;

    cursor: pointer;

    transition: 0.2s ease;

    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.25);
}

.btn-escolher:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
}

/* =========================================
   OVERLAY
========================================= */
.notification-user-accept {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    z-index: 999999;

    background:
        radial-gradient(circle at top left,
            rgba(255, 140, 0, .16),
            transparent 30%),

        radial-gradient(circle at bottom right,
            rgba(255, 80, 0, .14),
            transparent 30%),

        rgba(0, 0, 0, .75);

    backdrop-filter: blur(18px);

    animation:
        overlayFade .35s ease;
}

/* =========================================
   MAIN CARD
========================================= */
main{
    padding-bottom: 30px;
}
.notification-info {
    position: relative;

    width: 92%;
    max-width: 390px;

    padding: 34px 28px;

    overflow: hidden;

    border-radius: 34px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .14),
            rgba(255, 255, 255, .05));

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(24px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .08);

    animation:
        popupShow .45s cubic-bezier(.18, .89, .32, 1.28);
}

/* Glow */
.notification-info::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -120px;
    left: -120px;

    border-radius: 50%;

    background:
        rgba(255, 140, 0, .28);

    filter: blur(75px);
}

.notification-info::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -120px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(255, 90, 0, .22);

    filter: blur(70px);
}

/* =========================================
   TITLE
========================================= */
.notification-info h5 {
    position: relative;
    z-index: 5;

    margin: 0;

    font-size: 26px;
    font-weight: 800;

    color: white;

    text-align: center;

    letter-spacing: -.5px;
}

/* =========================================
   SUBTITLE
========================================= */
.notification-info h5::after {
    content: "Estamos aguardando a confirmação do usuário";

    display: block;

    margin-top: 10px;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.6;

    color:
        rgba(255, 255, 255, .68);
}

/* =========================================
   INPUT HIDDEN
========================================= */
.notification-info input {
    display: none !important;
}

/* =========================================
   SPINNER
========================================= */
.spinner {
    position: relative;
    z-index: 5;

    width: 82px;
    height: 82px;

    margin-top: 28px;
    margin-bottom: 18px;

    border-radius: 50%;

    border:
        5px solid rgba(255, 255, 255, .12);

    border-top:
        5px solid #ff9500;

    border-right:
        5px solid #ff5e00;

    animation:
        spin .9s linear infinite;

    box-shadow:
        0 0 25px rgba(255, 140, 0, .25);
}

/* Inner glow */
.spinner::before {
    content: "";

    position: absolute;
    inset: 12px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 149, 0, .22),
            transparent 70%);
}

/* =========================================
   BUTTON
========================================= */
.btn-cancel {
    position: relative;
    z-index: 5;

    width: 100%;
    height: 56px;

    margin-top: 20px;

    border: none;
    border-radius: 18px;

    cursor: pointer;

    font-size: 15px;
    font-weight: 700;

    color: white;

    background:
        linear-gradient(135deg,
            #ff3b3b,
            #d40000);

    box-shadow:
        0 14px 32px rgba(255, 0, 0, .28);

    transition:
        .25s ease;
}

.btn-cancel:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px rgba(255, 0, 0, .42);
}

/* =========================================
   HOME BUTTON
========================================= */
.home {
    position: fixed;

    bottom: 34px;
    left: 50%;

    transform:
        translateX(-50%);

    z-index: 999999;
}

.home a {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .16),
            rgba(255, 255, 255, .06));

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .35);

    transition:
        .25s ease;
}

.home a:hover {
    transform:
        translateY(-4px) scale(1.05);
}

.home a span {
    color: #ff9500;
    font-size: 30px;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes overlayFade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupShow {

    from {
        opacity: 0;

        transform:
            scale(.82) translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            scale(1) translateY(0);
    }
}

/* =========================
   UTILITÁRIOS
========================= */

.overfllow-hidden {
    overflow: hidden !important;
}

.df-flex {
    display: flex !important;
}

.df-none {
    display: none !important;
}

/* =========================
   RESPONSIVO
========================= */



/* =========================
   BEST FRIEND PLAN
========================= */

.bestfriend-plan {
    margin-top: 100px;
    width: min(95%, 900px);

    max-width: 900px;

    position: relative;
    left: 50%;
    transform: translateX(-50%);

    overflow: hidden;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.88));

    border:
        1px solid rgba(76, 175, 80, 0.22);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}

.bestfriend-plan h3 {
    margin-top: 30px;
}

/* glow */


/* BADGE */

.free-badge {

    position: absolute;

    top: 18px;
    right: 18px;

    background:
        linear-gradient(135deg,
            #4caf50,
            #66bb6a);

    color: white;

    padding: 8px 14px;

    border-radius: 40px;

    font-size: 0.75rem;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(76, 175, 80, 0.28);
}

/* PRICE */

.preco.free {

    width: max-content;

    margin: 20px auto;

    padding: 12px 24px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #4caf50,
            #66bb6a);

    color: white;

    font-size: 2rem;
    font-weight: 900;

    box-shadow:
        0 12px 30px rgba(76, 175, 80, .25);
}

/* SUBTITLE */

.plan-subtitle {

    color: #666;

    font-size: 0.92rem;

    line-height: 1.6;

    margin-top: -5px;
    margin-bottom: 20px;
}

/* BENEFITS */

.bestfriend-plan ul li::before {

    color: #4caf50;
}

/* BUTTON */

.bestfriend-btn {

    background:
        linear-gradient(135deg,
            #4caf50,
            #66bb6a);

    box-shadow:
        0 10px 25px rgba(76, 175, 80, 0.28);
}

.bestfriend-btn:hover {

    box-shadow:
        0 16px 35px rgba(76, 175, 80, 0.35);
}

/* =========================
   PREMIUM OPTIONS
========================= */

.best-section-title {
    margin-top: 25px;
    margin-bottom: 15px;

    font-size: 18px;
    font-weight: 800;

    color: #1e2b1f;
}

.best-type-grid {
    display: grid;
    gap: 15px;
}


.gender-grid, .call-method-grid{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}




.gender-card,
.method-card,
.best-type-card {
    cursor: pointer;
    border-radius: 20px;
}

.gender-card input,
.method-card input,
.best-type-card input {
    display: none;
}

.gender-card div,
.method-card div,
.best-type-card div {

    padding: 18px;

    border-radius: 18px;

    background: white;

    border: 2px solid transparent;

    transition: .25s ease;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .05);
}
.method-card div {

    width: 120px;
    height: 120px;
}

.gender-card:hover div,
.method-card:hover div,
.best-type-card:hover div {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(76, 175, 80, .12);
}

.gender-card input:checked+div,
.method-card input:checked+div,
.best-type-card input:checked+div {

    border-color: #4caf50;

    background:
        rgba(76, 175, 80, .05);
}

.gender-card span,
.method-card span,
.best-type-card span {
    font-size: 30px;
}

.gender-card strong,
.method-card strong,
.best-type-card strong {
    display: block;
    margin-top: 8px;
}

.best-type-grid {
    margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
    .bestfriend-plan {
        max-width: 500px;
    }

    .planos {
        max-width: 420px;
    }
}

@media screen and (min-width: 800px) {
    .planos {
        max-width: 520px;
    }

}



.professional-card {
    margin-top: 100px;
    margin-bottom:120px;

    width: min(95%, 900px);

    max-width: 900px;

    position: relative;

    left: 50%;

    transform: translateX(-50%);

    background: linear-gradient(145deg,
            #ffffff,
            #fafafa);

    border-radius: 24px;

    padding: 30px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .12);

    border: 1px solid rgba(255, 140, 0, .15);

    text-align: center;
}

.professional-badge {

    display: inline-block;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(255, 140, 0, .12);

    color: #ff7a00;

    font-weight: 700;

    margin-bottom: 20px;
}

.professional-card h3 {
    text-align: justify;

    font-size: 24px;

    margin-bottom: 15px;

    color: #222;
}

.professional-description {
    text-align: justify;

    color: #666;

    line-height: 1.6;

    margin-bottom: 25px;
}

.earnings-box {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 25px;

}

.earning-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 14px 18px;

    border-radius: 14px;

    background: #f8f8f8;
}

.earning-item strong {

    font-size: 18px;
}

.gain {

    background:
        linear-gradient(135deg,
            rgba(0, 200, 83, .08),
            rgba(0, 200, 83, .15));

    border: 1px solid rgba(0, 200, 83, .20);
}

.gain strong {

    color: #00a651;
}

.fee {

    background:
        linear-gradient(135deg,
            rgba(255, 77, 79, .05),
            rgba(255, 77, 79, .12));

    border: 1px solid rgba(255, 77, 79, .18);
}

.fee strong {

    color: #ff4d4f;
}

.earning-item.success-talk {

    background:
        linear-gradient(135deg,
            rgba(0, 180, 0, .08),
            rgba(0, 220, 0, .08));

    border: 1px solid rgba(0, 180, 0, .15);
}

.earning-item.success strong {

    color: #00a300;
}

.professional-benefits {

    list-style: none;

    padding: 0;

    margin: 0;
}

.professional-benefits li {

    text-align: left;

    padding: 12px;

    margin-bottom: 10px;

    border-radius: 12px;

    background: #fafafa;

    border: 1px solid #efefef;
}

.professional-benefits li::before {

    content: "✔ ";

    color: green;

    font-weight: bold;
}

.profit-info {
    text-align: justify;

    margin-top: 20px;

    padding: 15px;

    border-radius: 14px;

    background: rgba(197, 255, 111, 0.247);

    color: green;

    font-weight: 500;
}



@media screen and (min-width: 600px) {
    .bestfriend-plan {
        max-width: 500px;
    }

    .planos {
        max-width: 420px;
    }
}

@media screen and (min-width: 800px) {
    .planos {
        max-width: 520px;
    }

    .professional-card {
        left: 0;
        transform: translateX(0);

        max-width: 600px;
    }

    .content-area {

        margin-left: 320px;

        width: calc(100% - 320px);

        display: flex;

        justify-content: center;

    }

}