﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    background: #fff;
    color: #0f172a;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #1e40af, #020617);
    color: #fff;
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LOGO */
.logo {
    margin-bottom: 20px;
}

    .logo img {
        max-width: 300px;
        height: auto;
/*        background: #fff;*/
        padding: 10px 14px;
/*        border-radius: 12px;*/
    }

.badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: #cbd5f5;
    margin-bottom: 25px;
}

.benefits li {
    list-style: none;
    margin-bottom: 8px;
}

.lead-box {
    background: #fff;
    color: #0f172a;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

    .lead-box input {
        width: 100%;
        padding: 14px;
        margin-bottom: 12px;
        border-radius: 8px;
        border: 1px solid #cbd5f5;
    }

    .lead-box button {
        width: 100%;
        padding: 14px;
        background: #1e40af;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
    }

.section {
    padding: 70px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.card {
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(2,6,23,0.08);
}

.cta {
    background: #020617;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.btn-primary {
    background: #1e40af;
    color: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        text-align: center;
    }
}

/* ===========================
   PLANOS – MELHORIAS VISUAIS
=========================== */

.plans .price {
    background: #fff;
    position: relative;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

    /* Hover geral dos planos */
    .plans .price:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 70px rgba(2, 6, 23, 0.25);
        border-color: #1e40af;
    }

/* Valor do plano */
.price .value {
    font-size: 2rem;
    font-weight: 700;
    margin: 18px 0;
    color: #1e40af;
}

/* Lista dos planos */
.price ul {
    margin: 25px 0;
}

    .price ul li {
        list-style: none;
        margin-bottom: 10px;
        color: #334155;
    }

/* BOTÕES */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 10px;
    border: 2px solid #1e40af;
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background: #1e40af;
        color: #fff;
        transform: scale(1.05);
    }

/* ===========================
   PLANO EM DESTAQUE
=========================== */

.price.highlight {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 2px solid #1e40af;
    transform: scale(1.05);
    box-shadow: 0 40px 90px rgba(30, 64, 175, 0.35);
    z-index: 2;
}

    /* Hover do destaque */
    .price.highlight:hover {
        transform: scale(1.08) translateY(-8px);
    }

    /* Botão principal */
    .price.highlight .btn-primary {
        transition: all 0.3s ease;
    }

        .price.highlight .btn-primary:hover {
            transform: scale(1.07);
            box-shadow: 0 15px 35px rgba(30, 64, 175, 0.6);
        }

/* TAG "Mais vendido" */
.price .tag {
    position: absolute;
    top: -14px;
    right: 20px;
    background: #1e40af;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.5);
    text-transform: uppercase;
}

/* ===========================
   ANIMAÇÃO SUAVE AO CARREGAR
=========================== */

.price {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

    .price:nth-child(1) {
        animation-delay: 0.1s;
    }

    .price:nth-child(2) {
        animation-delay: 0.25s;
    }

    .price:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GLOW SUTIL – PLANO DESTAQUE */
.price.highlight::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient( 120deg, rgba(30,64,175,0.8), rgba(59,130,246,0.6), rgba(30,64,175,0.8) );
    z-index: -1;
    filter: blur(18px);
    opacity: 0.8;
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.5;
    }
}

@media (min-width: 900px) {
    #planos {
        scroll-margin-top: 100px;
    }

    .price.highlight {
        animation: autoFocus 1s ease forwards;
    }

    @keyframes autoFocus {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1.05);
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {

    .plans {
        gap: 35px;
    }

    .price {
        text-align: center;
        padding: 35px 25px;
    }

        .price .value {
            font-size: 2.2rem;
        }

        .price.highlight {
            order: -1;
            transform: scale(1.03);
        }

        .price ul li {
            justify-content: center;
            font-size: 0.95rem;
        }

        .price a {
            width: 100%;
        }
}

@media (prefers-color-scheme: dark) {

    body {
        background: #020617;
        color: #e5e7eb;
    }

    .card {
        background: #020617;
        border: 1px solid rgba(148,163,184,0.15);
        box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    }

    .price .value {
        color: #60a5fa;
    }

    .price ul li {
        color: #cbd5f5;
    }

    .btn-outline {
        border-color: #60a5fa;
        color: #60a5fa;
    }

        .btn-outline:hover {
            background: #60a5fa;
            color: #020617;
        }
}

.comparison {
    margin-top: 60px;
    overflow-x: auto;
}

    .comparison table {
        width: 100%;
        border-collapse: collapse;
        min-width: 700px;
    }

    .comparison th,
    .comparison td {
        padding: 14px;
        text-align: center;
        border-bottom: 1px solid rgba(148,163,184,0.2);
    }

    .comparison th {
        background: #020617;
        color: #fff;
    }

.highlight-col {
    background: rgba(30,64,175,0.08);
    font-weight: 700;
}

/* 🌐 Seção geral */
.agents-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Título principal */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
}

/* 🌐 FUNCIONALIDADES */

/* Container dos cards */
.cards-container {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.funcionalidades {
    display: flex;
    max-width: 100%;
/*    max-width: 1200px;*/
    margin: auto;
    padding: 60px 20px;
    gap: 40px;
    /*background: #000;*/
    background: linear-gradient(135deg, #1e40af, #020617);
    color: #fff;
}

/* ESQUERDA */
.left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item {
    background: #111;
    border-radius: 14px;
    padding: 24px;
    cursor: pointer;
    transition: 0.3s;
}

    .item:hover {
        background: #1a1a1a;
    }

    .item.active {
        background: linear-gradient(135deg, #7b2cff, #b44cff);
    }

    .item h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .item p {
        font-size: 14px;
        color: #FFF;
    }

/* DIREITA */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .right img {
        width: 100%;
        max-width: 420px;
    }

@media (max-width: 768px) {

    .funcionalidades {
        flex-direction: column;
        padding: 30px 16px;
        gap: 24px;
    }

    .left, .right {
        width: 100%;
    }

    .cards-container {
        grid-template-columns: 1fr; /* 1 card por linha */
        gap: 16px;
    }

    .item {
        padding: 18px;
    }

        .item h3 {
            font-size: 18px;
        }

        .item p {
            font-size: 13px;
        }

    .right img {
        max-width: 100%;
    }
}

/* EFEITO NA IMAGEM FICAR SUBINDO E DECENDO LENTAMENTE */

.right img {
    width: 100%;
    max-width: 420px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}