@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --main-color: #040714;
    --site-color: #fff;
    --active-color: #0063e5;
    --first-color: #08132f;
    --second-color: #090b13;
    --third-color: #1b202a;
    --muted-color: #d1d5db;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--main-color);
    color: var(--site-color);
    font-family: 'Poppins', sans-serif;
}

.max-width {
    max-width: 1300px;
    padding: 0 20px;
    margin: auto;
}

/* MENU */

.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--main-color);
    border-bottom: solid var(--third-color) 1px;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: var(--active-color);
    font-size: 35px;
    font-weight: 500;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: var(--site-color);
    font-size: 18px;
    font-weight: 400;
    margin-left: 25px;
    transition: all 0.3s ease;
}

.navbar .menu li a.active,
.navbar .menu li a:hover {
    color: var(--active-color);
}

.menu-btn {
    color: var(--site-color);
    font-size: 23px;
    cursor: pointer;
    display: none;
}

/* TOPO / HERO */

section {
    padding: 50px 0;
}

.top {
    color: var(--site-color);
    display: flex;
    background:
        linear-gradient(to right, var(--main-color) 25%, rgba(255, 255, 255, 0)),
        url("../images/banner_top_v5.jpg") no-repeat center;
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}

.top .max-width {
    width: 100%;
    display: flex;
    align-items: center;
}

.top .top-content .text-1 {
    font-size: 25px;
}

.top .top-content .text-2 {
    font-size: 55px;
    font-weight: 400;
    margin-left: -3px;
    max-width: 800px;
}

.top .top-content .text-3 {
    font-size: 32px;
    margin: 5px 0;
    max-width: 780px;
}

.top .top-content a,
.site-button {
    display: inline-block;
    background: var(--active-color);
    color: var(--site-color);
    font-size: 22px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid var(--active-color);
    transition: all 0.3s ease;
}

.top .top-content a:hover,
.site-button:hover {
    color: var(--active-color);
    background: none;
}

/* SERVIÇOS */

.services {
    color: var(--site-color);
    background-color: var(--main-color);
    font-family: 'Poppins', sans-serif;
    padding: 80px 0;
}

.services .title,
.premium .title,
.about .title,
.contact .title,
.plans .title,
.page-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 35px;
}

.services .serv-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px;
}

.services .serv-content .card {
    width: calc(33.333% - 20px);
    background: var(--first-color);
    text-align: center;
    border-radius: 8px;
    padding: 45px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--third-color);
}

.services .serv-content .card:hover {
    background: var(--active-color);
    transform: translateY(-5px);
}

.services .serv-content .card i {
    font-size: 50px;
    color: var(--active-color);
    transition: all 0.3s ease;
}

.services .serv-content .card:hover i {
    color: var(--site-color);
}

.services .serv-content .card .box {
    transition: all 0.3s ease;
}

.services .serv-content .card:hover .box {
    transform: scale(1.03);
}

.services .serv-content .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 15px 0 10px 0;
}

.services .serv-content .card p {
    color: var(--muted-color);
    line-height: 1.6;
}

.services .serv-content .card:hover p {
    color: var(--site-color);
}

/* PREMIUM */

.premium {
    color: var(--site-color);
    background: var(--first-color);
    font-family: 'Poppins', sans-serif;
    padding: 80px 0;
}

.premium .premium-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.premium .premium-content .left img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.premium .premium-content .right {
    width: 55%;
}

.premium .premium-content .right .text {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.premium .premium-content .right p {
    text-align: justify;
    color: var(--muted-color);
    line-height: 1.7;
}

.premium .premium-content .right a {
    display: inline-block;
    background: var(--active-color);
    color: var(--site-color);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 6px;
    border: 2px solid var(--active-color);
    transition: all 0.3s ease;
}

.premium .premium-content .right a:hover {
    color: var(--active-color);
    background: none;
}

/* SOBRE */

.about {
    color: var(--site-color);
    background: var(--main-color);
    font-family: 'Poppins', sans-serif;
    padding: 80px 0;
}

.about .about-content {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    background: var(--first-color);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--third-color);
}

.about .about-content .left {
    width: 40%;
}

.about .about-content .left img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about .about-content .right {
    width: 60%;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about .about-content .right p {
    text-align: justify;
    color: var(--muted-color);
    line-height: 1.7;
}

/* CONTATO */

.contact {
    color: var(--site-color);
    background-color: var(--main-color);
    font-family: 'Poppins', sans-serif;
    padding: 120px 0 80px 0;
    min-height: 100vh;
}

.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.contact .contact-content .column {
    width: calc(50% - 30px);
}

.contact .contact-content .left p {
    text-align: justify;
    color: var(--muted-color);
    line-height: 1.7;
}

.contact .contact-content .left .icons {
    margin: 20px 0;
}

.contact .contact-content .row {
    display: flex;
    min-height: 65px;
    align-items: center;
}

.contact .contact-content .row .info {
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: var(--active-color);
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: var(--site-color);
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact .right form .field,
.contact .right form .fields .field {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea {
    height: 90px;
    width: 100%;
}

.contact .right form .field input,
.contact .right form .field textarea {
    height: 100%;
    width: 100%;
    border-radius: 6px;
    outline: none;
    border: 1px solid var(--third-color);
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .field textarea:focus {
    border-color: var(--active-color);
}

.contact .right form .textarea textarea {
    padding-top: 10px;
    resize: none;
}

.right form .button-area button {
    background-color: var(--active-color);
    color: var(--site-color);
    display: block;
    width: 160px !important;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: wrap;
    border: 2px solid var(--active-color);
    transition: all 0.3s ease;
}

.right form .button-area button:hover {
    color: var(--active-color);
    background: none;
}

/* PLANOS */

.plans {
    color: var(--site-color);
    background: var(--main-color);
    font-family: 'Poppins', sans-serif;
    padding-top: 130px;
    min-height: 100vh;
}

.plans .title {
    margin-bottom: 15px;
}

.plans-subtitle,
.page-subtitle {
    text-align: center;
    color: var(--muted-color);
    font-size: 18px;
    margin-bottom: 40px;
}

.plans-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.plan-card {
    background: var(--first-color);
    border: 1px solid var(--third-color);
    border-radius: 10px;
    padding: 35px 25px;
    width: calc(33.333% - 20px);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover,
.plan-card.featured {
    border-color: var(--active-color);
    transform: translateY(-6px);
}

.plan-card.featured {
    box-shadow: 0 0 0 2px var(--active-color);
}

.plan-badge {
    display: inline-block;
    background: var(--active-color);
    color: var(--site-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.plan-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.plan-description {
    color: var(--muted-color);
    margin-bottom: 20px;
    min-height: 55px;
    line-height: 1.6;
}

.plan-price {
    font-size: 34px;
    font-weight: 700;
    color: var(--site-color);
    margin-bottom: 20px;
}

.plan-price small {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted-color);
}

.plan-limits {
    background: var(--second-color);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.plan-limits p {
    margin: 5px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    margin-bottom: 8px;
    color: var(--muted-color);
}

.plan-features .yes {
    color: #22c55e;
    font-weight: 700;
}

.plan-features .no {
    color: #9ca3af;
    font-weight: 700;
}

.plan-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--active-color);
    color: var(--site-color);
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 6px;
    border: 2px solid var(--active-color);
    transition: all 0.3s ease;
}

.plan-button:hover {
    color: var(--active-color);
    background: none;
}

/* PÁGINA GENÉRICA */

.page-section {
    color: var(--site-color);
    background: var(--main-color);
    font-family: 'Poppins', sans-serif;
    padding-top: 130px;
    min-height: 100vh;
}

.page-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 35px;
}

/* RODAPÉ */

footer {
    background: var(--second-color);
    padding: 25px 23px;
    color: var(--site-color);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

footer span a {
    color: var(--active-color);
}

footer span a:hover {
    color: var(--site-color);
}

/* RESPONSIVO */

@media (max-width: 1104px) {
    .premium .premium-content .left img,
    .about .about-content .left img {
        width: 350px;
        height: 350px;
    }

    .about .about-content .right {
        padding-left: 10px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }

    #menu-icon.active::before {
        content: "\f00d";
    }

    .navbar .menu {
        background-color: var(--main-color);
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    #menu-site.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 13px 0;
        font-size: 25px;
    }

    .services .serv-content .card,
    .plan-card {
        width: calc(50% - 15px);
    }

    .premium .premium-content .column,
    .about .about-content .column {
        width: 100%;
    }

    .premium .premium-content .left,
    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .premium .premium-content .right,
    .about .about-content .right {
        flex: 100%;
        width: 100%;
        padding-left: 0;
    }

    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    section {
        padding: 30px 0;
    }

    .top .top-content .text-1 {
        font-size: 20px;
    }

    .top .top-content .text-2 {
        font-size: 38px;
    }

    .top .top-content .text-3 {
        font-size: 24px;
    }

    .top .top-content a {
        font-size: 20px;
        padding: 10px 26px;
    }

    .services .serv-content .card,
    .plan-card {
        width: 100%;
    }

    .plans,
    .page-section,
    .contact {
        padding-top: 110px;
    }
}

@media (max-width: 500px) {
    .navbar .logo a {
        font-size: 30px;
    }

    .top .top-content .text-2 {
        font-size: 32px;
    }

    .top .top-content .text-3 {
        font-size: 20px;
    }

    .services .title,
    .premium .title,
    .about .title,
    .contact .title,
    .plans .title,
    .page-title {
        font-size: 30px;
    }
}
/* HERO CAROUSEL */

.top {
    padding: 0;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--main-color);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide .max-width {
    width: 100%;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(4, 7, 20, 0.65);
    color: var(--site-color);
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hero-control:hover {
    background: var(--active-color);
    border-color: var(--active-color);
}

.hero-prev {
    left: 25px;
}

.hero-next {
    right: 25px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 6;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid var(--site-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--active-color);
    border-color: var(--active-color);
}

@media (max-width: 690px) {
    .hero-control {
        display: none;
    }

    .hero-dots {
        bottom: 20px;
    }
}
.plans-alert {
    background: var(--first-color);
    border: 1px solid var(--third-color);
    color: var(--site-color);
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.plan-trial {
    display: inline-block;
    background: rgba(0, 99, 229, 0.15);
    color: var(--site-color);
    border: 1px solid var(--active-color);
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 18px;
}
/* CADASTRO PUBLICO */

.cadastro-page {
    color: var(--site-color);
    background: var(--main-color);
    font-family: 'Poppins', sans-serif;
    padding-top: 130px;
    min-height: 100vh;
}

.cadastro-page .title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 35px;
}

.cadastro-subtitle {
    text-align: center;
    color: var(--muted-color);
    font-size: 18px;
    margin-bottom: 40px;
}

.cadastro-alert {
    background: var(--first-color);
    border: 1px solid var(--third-color);
    color: var(--site-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.cadastro-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 28px;
    align-items: flex-start;
}

.cadastro-form-card,
.cadastro-plan-card {
    background: var(--first-color);
    border: 1px solid var(--third-color);
    border-radius: 10px;
    padding: 30px;
}

.cadastro-form-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-section-title {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: var(--site-color);
    margin-bottom: 7px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    outline: none;
    border: 1px solid var(--third-color);
    background: var(--second-color);
    color: var(--site-color);
    padding: 0 12px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--active-color);
}

.cadastro-button {
    display: inline-block;
    width: 100%;
    background: var(--active-color);
    color: var(--site-color);
    font-size: 18px;
    padding: 13px 25px;
    border-radius: 6px;
    border: 2px solid var(--active-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cadastro-button:hover {
    color: var(--active-color);
    background: none;
}

.cadastro-plan-card {
    position: sticky;
    top: 110px;
}

.plan-button.secondary {
    background: transparent;
    color: var(--active-color);
}

.plan-button.secondary:hover {
    background: var(--active-color);
    color: var(--site-color);
}

@media (max-width: 947px) {
    .cadastro-grid {
        grid-template-columns: 1fr;
    }

    .cadastro-plan-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 690px) {
    .cadastro-page {
        padding-top: 110px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* =========================================================
   CADASTRO PUBLICO - MODELO CONTATO
========================================================= */

.cadastro-page.cadastro-contato-style {
    color: var(--site-color);
    background: var(--main-color);
    font-family: 'Poppins', sans-serif;
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.cadastro-page.cadastro-contato-style .title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    font-size: 42px;
}

.cadastro-contato-grid {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    gap: 80px;
    align-items: flex-start;
}

.cadastro-info {
    padding-top: 20px;
}

.cadastro-texto-principal {
    color: var(--site-color);
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 38px;
    max-width: 720px;
}

.cadastro-info-row {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.cadastro-info-row i {
    color: var(--active-color);
    font-size: 30px;
    width: 46px;
    text-align: center;
}

.cadastro-info-row strong {
    display: block;
    color: var(--site-color);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.cadastro-info-row span {
    display: block;
    color: var(--site-color);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.cadastro-mini-plano {
    margin-top: 35px;
    background: var(--first-color);
    border: 1px solid var(--third-color);
    border-radius: 10px;
    padding: 22px;
    max-width: 500px;
}

.cadastro-mini-plano p {
    color: var(--site-color);
    margin-bottom: 8px;
    font-size: 17px;
}

.cadastro-mini-plano a {
    display: inline-block;
    margin-top: 12px;
    color: var(--active-color);
    font-weight: 500;
}

.cadastro-mini-plano a:hover {
    color: var(--site-color);
}

/* FORMULARIO */

.cadastro-form-box {
    width: 100%;
    background: transparent !important;
}

.cadastro-form-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--site-color);
}

.cadastro-form-section {
    color: var(--site-color);
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.cadastro-form-box .form-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cadastro-form-box .form-group {
    margin-bottom: 16px;
}

.cadastro-form-box .form-group label {
    display: none;
}

.cadastro-form-box input,
.cadastro-form-box select {
    width: 100% !important;
    height: 56px !important;
    border-radius: 6px !important;
    outline: none !important;
    border: 2px solid #d9d9d9 !important;
    background: #ffffff !important;
    color: #111827 !important;
    padding: 0 14px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
}

.cadastro-form-box input::placeholder {
    color: #6b7280 !important;
}

.cadastro-form-box input:focus,
.cadastro-form-box select:focus {
    border-color: var(--active-color) !important;
}

.cadastro-form-box select {
    cursor: pointer;
}

.cadastro-form-box .cadastro-button {
    display: inline-block !important;
    width: 260px !important;
    height: 58px !important;
    margin-top: 4px !important;
    background: var(--active-color) !important;
    color: var(--site-color) !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    border-radius: 6px !important;
    border: 2px solid var(--active-color) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
}

.cadastro-form-box .cadastro-button:hover {
    color: var(--active-color) !important;
    background: transparent !important;
}

.cadastro-alert {
    background: var(--first-color);
    border: 1px solid var(--third-color);
    color: var(--site-color);
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

/* RESPONSIVO */

@media (max-width: 1050px) {
    .cadastro-contato-grid {
        grid-template-columns: 1fr !important;
        gap: 45px;
    }

    .cadastro-info {
        padding-top: 0;
    }
}

@media (max-width: 690px) {
    .cadastro-page.cadastro-contato-style {
        padding-top: 110px;
    }

    .cadastro-page.cadastro-contato-style .title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .cadastro-form-box .form-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .cadastro-form-box .cadastro-button {
        width: 100% !important;
    }

    .cadastro-texto-principal {
        font-size: 18px;
    }

    .cadastro-info-row {
        grid-template-columns: 38px 1fr;
        gap: 14px;
    }

    .cadastro-info-row i {
        width: 38px;
        font-size: 25px;
    }

    .cadastro-info-row strong {
        font-size: 18px;
    }

    .cadastro-info-row span {
        font-size: 16px;
    }
}