:root {
    --laranja: #f39233;
    --laranja-dark: #d67a20;
    --preto: #1a1a1a;
    --branco: #ffffff;
    --cinza-fundo: #f8f9fa;
    --cinza-claro: #f4f4f4;
    --cinza-texto: #555;
    --verde-check: #27ae60;
    --erro: #e74c3c;
}

/* ========================= */
/* GLOBAL */
/* ========================= */

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: var(--cinza-fundo);
}


/* ========================= */
/* MENU SUPERIOR */
/* ========================= */

.nav-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(243, 146, 51, 0.98);
    backdrop-filter: blur(8px);
    z-index: 9999;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.nav-brand {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.nav-brand:hover {
    color: var(--preto);
}

.nav-link-btn {
    background: var(--preto);
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}


/* ========================= */
/* HEADER */
/* ========================= */

header {
    background: var(--laranja);
    color: white;
    text-align: center;
}

.header-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin: 0;
}


/* ========================= */
/* PLANOS */
/* ========================= */

.container-planos {
    max-width: 1200px;
    margin: -80px auto 60px;
    padding: 0 20px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.card-pricing {
    background: var(--branco);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    width: 280px;

    padding: 40px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: 0.3s;

    border: 1px solid #eee;
}

.card-pricing:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

    border-color: var(--laranja);

}

.card-pricing.popular {

    border: 2px solid var(--laranja);

    background: #fffaf5;

}


/* ========================= */
/* ANIMAÇÃO POTES */
/* ========================= */

.pot-container {

    width: 110px;

    height: 110px;

    margin-bottom: 25px;

    transform-origin: center bottom;

}

.card-pricing:hover .pot-container {

    animation: potSway .8s infinite ease-in-out;

}

@keyframes potSway {

    0%,
    100% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(3deg)
    }

    75% {
        transform: rotate(-3deg)
    }

}

.data-pot {

    width: 100%;

    height: 100%;

}

.pot-outline {

    fill: none;

    stroke: var(--preto);

    stroke-width: 2;

}

.pot-fill-empty {

    fill: #f0f0f0;

}

.pot-data {

    fill: var(--laranja);

    transform-origin: 50% 100%;

    animation: fillWave 1.5s forwards;

}

@keyframes fillWave {

    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }

}


/* ========================= */
/* TEXTO DOS PLANOS */
/* ========================= */

.plan-name {

    font-family: 'Montserrat', sans-serif;

    font-size: 1.4rem;

    font-weight: 700;

    margin-bottom: 8px;

}

.container-produtos {

    text-align: center;

    padding: 10px 0 20px;

    min-height: 60px;

}

.container-produtos span {

    font-size: .75rem;

    color: var(--cinza-texto);

    display: block;

    max-width: 260px;

    margin: auto;

}

.plan-price {

    font-size: 2.2rem;

    font-weight: 700;

    color: var(--laranja);

    margin-bottom: 30px;

}

.plan-price span {

    font-size: .9rem;

    color: var(--cinza-texto);

    font-weight: 400;

}

.texto-pequeno {

    font-size: .7rem;

    color: #999;

    margin-top: 15px;

}


/* ========================= */
/* LISTA DE FEATURES */
/* ========================= */

.feature-list {

    list-style: none;

    padding: 0;

    margin: 0 0 35px;

    width: 100%;

}

.feature-item {

    margin-bottom: 10px;

    display: flex;

    font-size: .85rem;

    color: var(--cinza-texto);

}

.check {

    color: var(--verde-check);

    margin-right: 10px;

}

.not-included {

    color: #ccc;

    margin-right: 10px;

}

.not-included-text {

    color: #aaa;

    text-decoration: line-through;

}


/* ========================= */
/* BOTÕES PLANOS */
/* ========================= */

.btn-plan {

    display: block;

    width: 100%;

    text-align: center;

    background: var(--preto);

    color: white;

    padding: 16px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    font-size: .8rem;

}

.btn-plan:hover {

    background: var(--laranja-dark);

}

.btn-popular {

    background: var(--laranja);

}

.badge-popular {

    background: var(--laranja);

    color: white;

    position: absolute;

    top: 15px;

    right: -35px;

    transform: rotate(45deg);

    padding: 5px 40px;

    font-size: .65rem;

    font-weight: bold;

}


/* ========================= */
/* HERO */
/* ========================= */

.hero {

    background: var(--laranja);

    color: white;

    text-align: center;

    padding: 120px 20px 80px;

}

.hero-logo {

    width: 120px;

    margin-bottom: 20px;

}

.hero h1 {

    font-size: 2.2rem;

    max-width: 700px;

    margin: auto;

}

.hero-sub {

    max-width: 600px;

    margin: 20px auto;

}


/* ========================= */
/* BENEFÍCIOS */
/* ========================= */

.benefits {

    padding: 80px 20px;

    text-align: center;

}

.benefits-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

    max-width: 900px;

    margin: auto;

}

.benefit {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);

}


/* ========================= */
/* PASSOS */
/* ========================= */

.steps {

    background: white;

    padding: 80px 20px;

    text-align: center;

}

.steps-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    max-width: 700px;

    margin: auto;

    gap: 20px;

}


/* ========================= */
/* CTA */
/* ========================= */

.cta {

    background: var(--laranja);

    color: white;

    text-align: center;

    padding: 80px 20px;

}

.btn-cta {

    display: inline-block;

    background: black;

    color: white;

    padding: 18px 30px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: bold;

    margin-top: 40px;

}


/* ========================= */
/* FORMULÁRIO LEADS */
/* ========================= */

.container {

    max-width: 900px;

    margin: -60px auto 60px;

    padding: 0 20px;

}

.card-apresentacao {

    background: white;

    padding: 40px;

    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    max-width: 520px;

    margin: auto;

}

.form-leads form {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.form-leads label {

    font-weight: 600;

    font-size: .9rem;

}

.form-leads input {

    width: 100%;

    padding: 14px;

    border: 1px solid #ddd;

    border-radius: 8px;

    font-size: .9rem;

}

.form-leads input:focus {

    outline: none;

    border-color: var(--laranja);

    box-shadow: 0 0 0 2px rgba(243, 146, 51, .2);

}

.form-leads button {

    margin-top: 10px;

    padding: 16px;

    background: var(--laranja);

    color: white;

    border: none;

    border-radius: 8px;

    font-weight: bold;

    font-size: 1rem;

    cursor: pointer;

}

.form-leads button:hover {

    background: var(--laranja-dark);

}

.error-msg {

    font-size: .75rem;

    color: var(--erro);

    min-height: 14px;

}

.hp-field {

    display: none;

}

.invalid {
    border-color: #e74c3c;
}

.error-msg {
    color: #e74c3c;
    font-size: .75rem;
    min-height: 14px;
    display: block;
    margin-top: 4px;
}

footer {

    text-align: center;

    padding: 40px;

    font-size: .8rem;

    color: #777;

}