/* Regras gerais do site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f6f6f6;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100vw;
    margin: 0;
    padding: 0;
}
/* Fim das regras gerais */

/* Botões principais */
.btn {
    font-size: 1.2rem;
    padding: 8px 24px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    box-sizing: border-box;
}

.btn-primary {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #fff;
    z-index: 1;
    background: linear-gradient(90deg, #0C29D0 0%, #4D67FB 100%);
    position: relative;
    font-weight: 700;
    font-size: 1.2rem;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms;
    overflow: hidden;
}

    .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        border-radius: 15px;
        background-color: #fff;
        z-index: -1;
        -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
        box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
        transition: all 250ms
    }

    .btn-primary:hover {
        background: linear-gradient(90deg, #1d4ed8 0%, #6366f1 100%);
        transform: scale(0.9);
        box-shadow: 0 2px 15px rgb(33, 79, 217);
        color: #0C29D0;
    }

        .btn-primary:hover::before {
            width: 100%;
        }

.btn-outline {
    background: #fff;
    color: #222;
    transition: background 300ms ease, transform 300ms ease;
    border: 1.5px solid #222;
}

    .btn-outline:hover {
        background: #f3f4f6;
        color: black;
        transform: scale(0.9);
    }
/* Fim dos Botões principais */

/* Botão Whatsapp */
.Btnwhats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    overflow: hidden;
    z-index: 2;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #00d757;
}

.sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sign svg {
        width: 25px;
    }

        .sign svg path {
            fill: white;
        }

.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.3s;
}

.Btnwhats:hover {
    width: 150px;
    border-radius: 40px;
    transition-duration: 0.3s;
}

    .Btnwhats:hover .sign {
        width: 30%;
        transition-duration: 0.3s;
        padding-left: 10px;
    }

    .Btnwhats:hover .text {
        opacity: 1;
        width: 70%;
        transition-duration: 0.3s;
        padding-right: 10px;
    }

.Btnwhats:active {
    transform: translate(2px, 2px);
}
/* Fim do Botão Whatsapp */

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #18181b;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-fade-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent 0%, rgb(246, 246, 246) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/world-bg.webp') center/cover no-repeat;
    filter: brightness(0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 64px 16px 200px 16px;
}

    .hero-content h1 {
        font-size: 4.5rem;
        font-weight: 700;
        margin-bottom: 130px;
        line-height: 1.15;
    }

.gradient-text {
    background: linear-gradient(90deg, #2563eb 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
/* Fim da Hero Section */

/* Marketplaces Section */
.marketplaces-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f6f6f6;
    padding: 50px 30px 50px 30px;
    text-align: center;
}

    .marketplaces-section h2 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 32px;
    }

.marketplaces-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px 65px;
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms;
}

    .logo-card:hover {
        transform: scale(1.1);
    }
/* Fim do Marketplaces Section */

/* Recursos Section */
.recursos-section {
    background: #f6f6f6;
    padding: 48px 0 70px 0;
    text-align: center;
    overflow: hidden;
}

    .recursos-section h2 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 32px;
    }

.recursos-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    display: inline-flex;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.recurso-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 32px 24px 24px 24px;
    width: 320px;
    max-width: 95vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .recurso-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }

    .recurso-card h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .recurso-card p {
        color: #444;
        font-size: 1rem;
    }
/* Fim do Recursos Section */

/* Interface Section */
.interface-section {
    background: #f6f6f6;
    padding: 48px 10px 50px 10px;
}

.interface-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto auto auto auto;
    flex-wrap: wrap;
}

.interface-text {
    flex: 1 1 120px;
    min-width: 280px;
}

    .interface-text h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .interface-text p {
        font-size: 1.1rem;
        color: #222;
        margin-bottom: 0;
    }

.interface-img {
    flex: 1 1 260px;
    min-width: 120px;
    display: flex;
    justify-content: center;
}

    .interface-img img {
        width: 530px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }

.interface-bottom {
    text-align: center;
    margin-top: 100px;
}

    .interface-bottom h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 18px;
    }
/* Fim do Interface Section */

/* Planos Section */
.planos-section {
    background: #f6f6f6;
    padding: 100px 0 50px 0;
    text-align: center;
}

    .planos-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

.planos-sub {
    color: #444;
    margin-bottom: 32px;
}

.planos-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.plano-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 32px 24px 24px 24px;
    width: 260px;
    max-width: 95vw;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 300ms;
}

    .plano-card.destaque {
        border: 2px solid #6366f1;
        box-shadow: 0 4px 34px rgba(99,102,241,2);
    }

    .plano-card ul li span {
        color: green;
        font-weight: bold;
    }

    .plano-card:hover {
        transform: scale(1.1);
    }

.plano-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #2563eb 0%, #6366f1 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
}

.plano-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plano-preco {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 16px;
}

    .plano-preco span {
        font-size: 1.8rem;
        font-weight: 900;
        background: linear-gradient(90deg, #2563eb 0%, #6366f1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

.plano-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    text-align: left;
    color: #222;
    font-size: 13px;
    font-weight:500;
}

    .plano-card ul li {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
/* Fim do planos Section */

/* Contato Section */
.contato-section {
    background: #f6f6f6;
    padding: 48px 10px 100px 10px;
    text-align: center;
}

    .contato-section h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 24px;
    }
/* Fim do Contato Section */

/* Footer */
.footer {
    background: #2563eb;
    color: #fff;
    padding: 32px 0 12px 0;
    font-size: 1rem;
    border-radius: 30px 30px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 8px auto;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 24px;
}

.footer-info p {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

    .footer-social a {
        color: #fff;
        font-size: 1.3rem;
        transition: color 0.2s;
    }

        .footer-social a:hover {
            color: #6366f1;
        }

.footer-links {
    text-align: center;
    margin-top: 8px;
    font-size: 0.95rem;
}

    .footer-links a {
        color: #fff;
        text-decoration: underline;
        margin: 0 6px;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: #6366f1;
        }
/* Fim do Footer */

/* Responsivo */
@media (max-width: 900px) {
    .planos-cards, .marketplaces-logos, .interface-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .recursos-cards {
        flex-direction: row;
        align-items: center;
    }

    .hero-section {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
    }

    .hero-buttons button {
        font-size: 0.9rem;
    }

    .interface-img img {
        width: 90vw;
    }

    .interface-text h1, p {
        text-align: center;
    }

}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .marketplaces-section h2, .recursos-section h2, .planos-section h2 {
        font-size: 1.8rem;
    }

    .recursos-cards, .planos-cards, .marketplaces-logos {
        gap: 12px;
    }

    .recurso-card, .plano-card {
        padding: 18px 8px 12px 8px;
        width: 95vw;
    }

        .recurso-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

    .interface-img img {
        width: 90vw;
    }

    .interface-text h1{
        text-align: center;
    }
}

#cookieConsentdiv {
    z-index: 1000;
    position: fixed;
    width: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px 20px 30px;
    font-family: 'Century Gothic', sans-serif;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 30px 30px 0 0;
}

    #cookieConsentdiv button {
        display: block;
        margin-left: auto;
        margin-right: auto;
        border: none;
        background-color: green;
        padding: 10px 50px;
        margin-top: -5px;
        color: white;
        transition: all ease 0.5s;
    }

        #cookieConsentdiv button:hover {
            background-color: darkgreen;
        }

    #cookieConsentdiv h3 {
        font-size: 22px;
    }

    #cookieConsentdiv p {
        font-size: 13px;
    }

    #cookieConsentdiv a {
        color: gray;
        text-decoration: underline;
    }

@media (max-width: 991px) {
    .navbar-scroll {
        background-color: #fff;
    }

        .navbar-scroll .navbar-brand,
        .navbar-scroll .nav-link,
        .navbar-scroll .fa-bars {
            color: #4f4f4f !important;
        }
}

/* Fim do Responsivo */


/*Navbar*/
.navbar-transparent {
    background-color: transparent !important;
    transition: all 0.3s ease;
    padding: 10px;
}

    .navbar-transparent .nav-link,
    .navbar-transparent .navbar-brand {
        color: white !important;
    }

/* Quando rolar, aplica o fundo branco e muda as cores */
.navbar-scrolled {
    background-color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px;
}
    .navbar-scrolled .nav-link,
    .navbar-scrolled .navbar-brand {
        color: #222 !important;
    }

@media (min-width: 768px) {
    .navbar-transparent {
        background-color: transparent !important;
        transition: all 0.3s ease;
    }

        .navbar-transparent .nav-link,
        .navbar-transparent .navbar-brand {
            color: white !important;
        }
}
/*Fim da Navbar*/
