@charset "ISO-8859-1";

:root {
    --primary: #6634a8;
    --primary-dark: #2430d0c5;
    --primary-light: #eef0ff;
    --primary-gradient: linear-gradient(135deg, #7144e2 0%, #6634a8 100%);
    --secondary: #6373ff;
    --accent: #00e6c3;
    --accent-dark: #00c9a9;
    --text-dark: #1a1a2e;
    --text-medium: #3d3d5a;
    --text-light: #7e7e9a;
    --text-lighter: #b1b1c9;
    --white: #ffffff;
    --off-white: #f8f9ff;
    --gray-light: #f0f2fa;
    --gray: #e4e6f2;
    --gray-dark: #d4d7e8;
    --success: #08d484;
    --info: #1794ff;
    --warning: #ffb30f;
    --danger: #ff4757;
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow: 0 8px 24px rgba(86, 98, 246, 0.12);
    --shadow-lg: 0 16px 36px rgba(86, 98, 246, 0.18);
    --shadow-highlight: 0 8px 24px rgba(86, 98, 246, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-padding-lg {
    padding: 9rem 0;
}

/* Utilities */
.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.animate-float {
    animation: float 3s ease-in-out infinite;

    /* animation: float 6s ease-in-out infinite; */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-right: 10px;
    color: white;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    /* width: 50px;
            height: 50px; */
    margin-left: 35px;
    margin-bottom: 15px;
    border-radius: 8px;
    margin-right: 10px;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding-bottom: 2px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(86, 98, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(86, 98, 246, 0.3);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 30%, var(--primary-light) 100%);
}

.hero-circle-1 {
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background-color: var(--primary);
}

.hero-circle-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: var(--accent);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--off-white);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.stat-value i {
    color: var(--success);
    font-size: 1.25rem;
    margin-left: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.platform-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.platform-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.platform-content {
    display: flex;
    flex-direction: column;
}

.platform-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.platform-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.25rem;
}

.security-card {
    top: 20px;
    left: -40px;
}

.security-card .floating-card-icon {
    background-color: #e6fcf5;
    color: #0ca678;
}

.api-card {
    top: 220px;
    right: -30px;
}

.api-card .floating-card-icon {
    background-color: #fff4e6;
    color: #fd7e14;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.floating-card-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-highlight);
    border-color: var(--primary-light);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.feature-card:nth-child(1) .feature-icon {
    background-color: #e7f5ff;
    color: #339af0;
}

.feature-card:nth-child(2) .feature-icon {
    background-color: #e6fcf5;
    color: #0ca678;
}

.feature-card:nth-child(3) .feature-icon {
    background-color: #fff9db;
    color: #f59f00;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Brand Section */
.brands {
    padding: 4rem 0;
    background-color: var(--off-white);
    position: relative;
}

.brands-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 160px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-highlight);
}

.brand-logo {
    height: 40px;
    max-width: 100%;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(0.8);
}

.brand-item:hover .brand-logo {
    opacity: 1;
    filter: grayscale(0);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
}

.features-circle-1 {
    top: 10%;
    right: -200px;
    width: 400px;
    height: 400px;
    background-color: var(--primary-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-highlight);
    border-color: var(--primary-light);
}

.feature-item-icon {
    margin-bottom: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.75rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.feature-item-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    gap: 0.5rem;
}

.feature-link:hover {
    gap: 0.75rem;
}

.feature-item:nth-child(1) .feature-item-icon {
    background-color: #e7f5ff;
    color: #339af0;
}

.feature-item:nth-child(2) .feature-item-icon {
    background-color: #f3f0ff;
    color: #6634a8;
}

.feature-item:nth-child(3) .feature-item-icon {
    background-color: #fff4e6;
    color: #fd7e14;
}

.feature-item:nth-child(4) .feature-item-icon {
    background-color: #e6fcf5;
    color: #0ca678;
}

.feature-item:nth-child(5) .feature-item-icon {
    background-color: #fff9db;
    color: #f59f00;
}

.feature-item:nth-child(6) .feature-item-icon {
    background-color: #f8f9fa;
    color: #495057;
}

.feature-item:nth-child(7) .feature-item-icon {
    background-color: #fff5f5;
    color: #fa5252;
}

.feature-item:nth-child(8) .feature-item-icon {
    background-color: #e3fafc;
    color: #15aabf;
}

.feature-item:nth-child(9) .feature-item-icon {
    background-color: #edf2ff;
    color: #4263eb;
}

/* How It Works */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
}

.how-circle-1 {
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background-color: var(--primary-light);
}

.steps {
    display: flex;
    margin-top: 4rem;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    position: relative;
}

.step-number {
    background: var(--primary-gradient);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    box-shadow: var(--shadow-highlight);
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gray-dark);
    z-index: 1;
}

.step-icon {
    background-color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-item:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: var(--shadow-highlight);
}

.step-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 250px;
    margin: 0 auto;
}

.toggle-option {
    font-weight: 600;
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
}

.toggle-option.active {
    color: var(--white);
    background: var(--primary-gradient);
    box-shadow: var(--shadow-highlight);
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background-color: var(--off-white);
    position: relative;
}

.testimonials-circle-1 {
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background-color: var(--primary-light);
}

.testimonial-wrapper {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
    /* 🔥 remove scroll */
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Desktop = 3 cards visíveis */
@media (min-width: 992px) {
    .testimonial-item {
        flex: 0 0 calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}

/* Botões */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    color: #222;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: 0px;
}

.carousel-next {
    right: 0px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    /* ajuste conforme necessário */
    height: 50px;
    background-color: #fff;
    /* ou transparente */
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}



.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-highlight);
    border-color: var(--primary-light);
}

.testimonial-rating {
    display: flex;
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    margin-bottom: 2rem;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    flex-grow: 1;
}

.testimonial-content::before {
    content: "";
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    line-height: 0;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--primary-light);
    background-color: #f0f0f0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Call to Action */
.cta {
    background: var(--primary-gradient);
    padding: 8rem 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    width: 800px;
    height: 800px;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* Footer */
footer {
    background-color: #1a1a2e;
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    background: radial-gradient(circle, rgba(86, 98, 246, 0.2) 0%, rgba(86, 98, 246, 0) 70%);
    width: 800px;
    height: 800px;
    bottom: -500px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    color: var(--white);
}

.footer-logo a {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
}

.footer-description {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 360px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.footer-contact-item i {
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .features-grid,
    .testimonial-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-grid-planos {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .steps {
        flex-direction: column;
        gap: 3rem;
    }

    .step-line {
        display: none;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan.popular {
        transform: none;
    }

    .plan.popular:hover {
        transform: translateY(-10px);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .navbar .container {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        border-top: 1px solid var(--gray);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-planos {
        grid-template-columns: 1fr !important;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2.25rem;
    }

    .cta p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-item {
        align-items: center;
    }

    .section-padding-lg {
        padding: 6rem 0;
    }

    .section {
        padding: 4rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-description {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

.card-contato{
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.card-header {
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-wrap: nowrap;
    /* Não permite quebra de linha */
    gap: 20px;
}

.input-group {
    flex: 1 1 30%;
    /* Cada campo ocupa 30% da largura, ajustável */
}

.message-group {
    flex: 2 1 40%;
    /* Campo de mensagem ocupa mais espaço */
}

h5 {

    font-size: 14px;
    font-weight: 600;
    color: #030303;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    margin-top: 2px;
    margin-bottom: 2px;
}

textarea {
    resize: vertical;
}

.button-footer {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 110px;
    height: 110px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.features-grid-planos {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Responsive: quebra para 2 colunas em telas médias */
@media screen and (max-width: 1200px) {
  .features-grid-planos {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 800px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .features-grid-planos {
    grid-template-columns: 1fr !important;
  }
}

.feature-item-planos {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-width: 2px;
    border-style: solid;
    border-color: #6634a8;

}

.buttons-plano {
    justify-content: center;
    margin-top: 11px;
    display: flex;
}

.div-planos:hover {
    transform: translateY(-40px);
    transition: transform 1s ease;
    border-width: 2px;
    border-style: solid;
    border-color: #6634a8;
    border-radius: var(--border-radius);
	/*box-shadow: 0 4px 20px 8px rgba(0,0,0,0.2);*/
	box-shadow: 0 4px 20px 8px rgba(0,0,0,0.2);

	

}

.feature-item-planos:hover {
    box-shadow: var(--shadow-highlight);
    border-color: var(--primary-light);
}

.div-planos {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.btn-plano-lg {
    padding: 0.575rem 3.75rem;
    font-size: 1rem;
}

.start {
    margin-left: 5px;
}

.t2 {
    text-decoration: line-through;
}

.title-plano{
	padding: 15px
}


.card-buttons{
	padding: 5px; 
	margin-bottom:60px;
	border-radius: 8px;
	box-shadow: 0 4px 20px 8px rgba(0,0,0,0.2);
	width:300px;
	height: 70px;
}

.preco{
	margin-top:10px;
	color: #6634a8;
}

.text-gradient {
    background: var(--primary-gradient);
    
}

.preco-anual{
	text-decoration: line-through;
	font-weight: bold;
	font-weight: 400
}


.tabs {
  display: flex;
  border: 2px solid #6634a8;
  border-radius: 10px;
  overflow: hidden;
}

.tab {
  padding: 12px 35px;
  border: none;
  background: white;
  cursor: pointer;
  font-weight: 600;
  color: #6634a8;
  transition: 0.3s;
  flex: 1;
  width:220px;
  height: 60px;
}

.tab.active {
  background: #6634a8;
  color: white;
  font-size:24px;
}

/* Wrapper centraliza e dá espaçamento à imagem do plano */
.plano-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px;
    width: 100%;
}

/* Tamanho da estrela/ícone do plano */
.plano-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}



/* Slogan em destaque */
.plano-slogan {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Descrição secundária */
.plano-descricao {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* ════════════════════════════════
   CARD WRAPPER
════════════════════════════════ */
.plan-card {
  /* width: 100%; */
  width: 300px;
  min-width: 0;
  border-radius: 24px;
  background: #0f0a1e;
  border: 1.5px solid rgba(160, 100, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(106, 57, 185, 0.2),
    0 20px 60px rgba(106, 57, 185, 0.35),
    0 0 80px rgba(106, 57, 185, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.plan-card:hover {
  transform: translateY(-14px);
  box-shadow:
    0 0 0 1px rgba(180, 130, 255, 0.4),
    0 32px 80px rgba(106, 57, 185, 0.5),
    0 0 120px rgba(140, 80, 255, 0.2);
}

/* ════════════════════════════════
   HERO AREA
════════════════════════════════ */
.plan-hero {
  position: relative;
  background: #6a39b9;
  padding: 2.8rem 1.5rem 2rem;
  text-align: center;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* Gradiente escuro no topo para dar profundidade */
.plan-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%,   rgba(30, 10, 60, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 110%, rgba(10, 5, 25, 0.7)  0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Neon glow circles */
.plan-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(180, 100, 255, 0.22) 0%,
    rgba(106, 57, 185, 0.08) 50%,
    transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  z-index: 0;
  animation: neon-pulse 4s ease-in-out infinite;
}

@keyframes neon-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -55%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -55%) scale(1.12); }
}

/* Neon scan line effect */
.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(180, 130, 255, 0.5) 30%,
    rgba(220, 180, 255, 0.9) 50%,
    rgba(180, 130, 255, 0.5) 70%,
    transparent 100%);
  top: 50%;
  left: 0;
  z-index: 1;
  animation: scan 3.5s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes scan {
  0%   { top: 20%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 80%; opacity: 0; }
}

/* ── Badge ── */
.plan-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 160, 255, 0.4);
  color: #d4aaff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
  box-shadow:
    0 0 12px rgba(180, 100, 255, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── Star image ── */
.plan-star-wrap {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 170px;
  margin: 0 auto 1.4rem;
  flex-shrink: 0;
}

/* neon ring behind star */
.plan-star-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(200, 150, 255, 0.2) 0%,
    transparent 65%);
  animation: star-glow 3s ease-in-out infinite;
}

.plan-star-wrap::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(180, 120, 255, 0.2);
  animation: ring-spin 8s linear infinite;
}

@keyframes star-glow {
  0%, 100% { opacity: 0.6; transform: scale(0.96); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.plan-star-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(220, 190, 255, 0.7))
    drop-shadow(0 0 40px rgba(150, 80, 255, 0.45))
    drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  animation: float-star 4.5s ease-in-out infinite;
}

@keyframes float-star {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-10px) scale(1.03); }
}

/* ── Plan name ── */
.plan-name {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow:
    0 0 20px rgba(200, 160, 255, 0.7),
    0 0 40px rgba(150, 80, 255, 0.4),
    0 2px 4px rgba(0,0,0,0.5);
  line-height: 1;
  margin-bottom: 0.45rem;
}

/* ── Tagline ── */
.plan-tagline {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  color: rgba(210, 185, 255, 0.7);
  max-width: 24ch;
  line-height: 1.5;
  text-align: center;
}

/* ════════════════════════════════
   PRICING BLOCK
════════════════════════════════ */
.plan-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  padding: 1.6rem 1.5rem 0.5rem;
  background: #0f0a1e;
}

.plan-currency {
  font-size: 1rem;
  font-weight: 700;
  color: #b47dff;
  margin-bottom: 0.25rem;
  align-self: flex-start;
  margin-top: 0.6rem;
}

.plan-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(180, 100, 255, 0.5);
}

.plan-cents {
  font-size: 1.25rem;
  font-weight: 700;
  color: #b47dff;
}

.plan-period {
  font-size: 0.78rem;
  color: #6b5e8a;
  margin-left: 0.2rem;
}

/* ── Divider ── */
.plan-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(160, 100, 255, 0.4) 30%,
    rgba(200, 150, 255, 0.6) 50%,
    rgba(160, 100, 255, 0.4) 70%,
    transparent);
  margin: 0.8rem 1.5rem;
}

/* ════════════════════════════════
   DESCRIPTION
════════════════════════════════ */
.plan-description {
  padding: 0 1.5rem 1rem;
  text-align: center;
}

.plan-description p {
  font-size: 0.85rem;
  color: #8877aa;
  line-height: 1.6;
  max-width: 28ch;
  margin: 0 auto;
}

/* ════════════════════════════════
   HIGHLIGHT CHIPS
════════════════════════════════ */
.plan-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.5rem 1.2rem;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(106, 57, 185, 0.18);
  border: 1px solid rgba(160, 100, 255, 0.25);
  color: #c4a0ff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(106, 57, 185, 0.35);
  border-color: rgba(200, 150, 255, 0.5);
  box-shadow: 0 0 12px rgba(160, 100, 255, 0.3);
  color: #dcc8ff;
}

.chip i {
  font-size: 0.65rem;
  color: #a068ff;
}

/* ════════════════════════════════
   CTA BUTTON
════════════════════════════════ */
.plan-cta {
  padding: 0.5rem 1.5rem 1.6rem;
}

.btn-diamante {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #9b59ff 0%, #6a39b9 60%, #4a22a0 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(155, 89, 255, 0.5),
    0 6px 24px rgba(106, 57, 185, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* shimmer sweep on button */
.btn-diamante::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.btn-diamante:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 30px rgba(155, 89, 255, 0.7),
    0 10px 30px rgba(106, 57, 185, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.2);
  filter: brightness(1.1);
}

.btn-diamante i { font-size: 1rem; }


/*-----------------------------------------------------*/

/* ── Card base ── */
.plan-card {
    border-radius: 24px;
    background: #0f0a1e;
    border: 1.5px solid rgba(160, 100, 255, 0.25);
    box-shadow:
        0 0 0 1px rgba(106, 57, 185, 0.15),
        0 20px 60px rgba(106, 57, 185, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.plan-card:hover {
    transform: translateY(-14px);
}

/* ════════ VARIANTES POR PLANO ════════ */

/* PRATA — prata/cinza */
.plan-card--prata { --plan-clr: 180,180,190; --plan-glow: rgba(150,160,170,0.3); }
.plan-card--prata .plan-hero         { background: #2a2a35; }
/*.plan-card--prata .plan-hero         { background: #6a39b9; }*/
.plan-card--prata .plan-hero::after  { background: radial-gradient(circle, rgba(180,180,210,0.18) 0%, transparent 70%); }
.plan-card--prata .plan-badge        { border-color: rgba(200,200,220,0.4); color: #c8c8dc; }
.plan-card--prata .plan-name         { text-shadow: 0 0 20px rgba(200,200,230,0.7), 0 2px 4px rgba(0,0,0,.5); color: #8d8d8d; }
.plan-card--prata .plan-tagline      { color: rgba(200,200,225,0.7); }
.plan-card--prata .plan-amount     	 { color: #8d8d8d; }
.plan-card--prata .plan-currency,
.plan-card--prata .plan-cents        { color: #8d8d8d; }
.plan-card--prata .plan-amount       { text-shadow: 0 0 20px rgba(160,160,200,0.5); }
.plan-card--prata .plan-divider      { background: linear-gradient(90deg, transparent, rgba(160,160,200,0.5) 50%, transparent); }
.plan-card--prata .plan-description p { color: #7a7a96; }
.plan-card--prata .chip              { background: rgba(140,140,160,0.14); border-color: rgba(160,160,190,0.25); color: #b0b0cc; }
.plan-card--prata .chip i            { color: #9090b8; }
.plan-card--prata .scan-line         { background: linear-gradient(90deg, transparent, rgba(180,180,220,0.8) 50%, transparent); }
.plan-card--prata .plan-star-wrap::before { background: radial-gradient(circle, rgba(180,180,220,0.18) 0%, transparent 65%); }
.plan-card--prata .plan-star-wrap::after  { border-color: rgba(160,160,200,0.2); }
.plan-card--prata .plan-star-wrap img     { filter: drop-shadow(0 0 20px rgba(200,200,240,.6)) drop-shadow(0 4px 16px rgba(0,0,0,.4)); }
.plan-card--prata:hover { box-shadow: 0 0 0 1px rgba(200,200,230,0.35), 0 32px 80px rgba(120,120,160,0.4); }
.plan-card--prata .btn-plano { background: linear-gradient(135deg, #8888aa 0%, #555575 100%); box-shadow: 0 0 20px rgba(140,140,180,0.4), 0 6px 24px rgba(80,80,120,0.35); }
.plan-card--prata .btn-plano:hover { box-shadow: 0 0 30px rgba(160,160,210,0.6), 0 10px 30px rgba(80,80,140,0.45); }

/* OURO — dourado */
.plan-card--ouro { --plan-clr: 212,160,20; --plan-glow: rgba(212,160,20,0.3); }
/**/.plan-card--ouro .plan-hero         { background: #1e1500; }
/*.plan-card--ouro .plan-hero         { background: #6a39b9; }*/
.plan-card--ouro .plan-hero::after  { background: radial-gradient(circle, rgba(220,170,30,0.2) 0%, transparent 70%); }
.plan-card--ouro .plan-badge        { border-color: rgba(220,180,80,0.45); color: #e8c86a; }
.plan-card--ouro .plan-name         { text-shadow: 0 0 20px rgba(230,190,60,0.75), 0 2px 4px rgba(0,0,0,.5); color: #aa8205;}
.plan-card--ouro .plan-tagline      { color: rgba(230,200,120,0.7); }
.plan-card--ouro .plan-amount      { color: #aa8205; }
.plan-card--ouro .plan-currency,
.plan-card--ouro .plan-cents        { color: #c8961e; }
.plan-card--ouro .plan-amount       { text-shadow: 0 0 20px rgba(200,150,20,0.55); }
.plan-card--ouro .plan-divider      { background: linear-gradient(90deg, transparent, rgba(200,160,40,0.55) 50%, transparent); }
.plan-card--ouro .plan-description p { color: #806a30; }
.plan-card--ouro .chip              { background: rgba(180,130,20,0.16); border-color: rgba(200,160,40,0.28); color: #d4aa50; }
.plan-card--ouro .chip i            { color: #b8901e; }
.plan-card--ouro .scan-line         { background: linear-gradient(90deg, transparent, rgba(230,190,60,0.85) 50%, transparent); }
.plan-card--ouro .plan-star-wrap::before { background: radial-gradient(circle, rgba(220,180,40,0.2) 0%, transparent 65%); }
.plan-card--ouro .plan-star-wrap::after  { border-color: rgba(200,160,40,0.25); }
.plan-card--ouro .plan-star-wrap img     { filter: drop-shadow(0 0 20px rgba(240,190,50,.65)) drop-shadow(0 4px 16px rgba(0,0,0,.4)); }
.plan-card--ouro:hover { box-shadow: 0 0 0 1px rgba(220,180,60,0.4), 0 32px 80px rgba(160,120,20,0.45); }
.plan-card--ouro .btn-plano { background: linear-gradient(135deg, #d4a017 0%, #9a6e00 100%); box-shadow: 0 0 20px rgba(200,150,20,0.45), 0 6px 24px rgba(140,100,10,0.4); }
.plan-card--ouro .btn-plano:hover { box-shadow: 0 0 30px rgba(230,180,40,0.65), 0 10px 30px rgba(160,110,10,0.5); }

/* DIAMANTE — roxo neon (cor original) */
.plan-card--diamante { --plan-clr: 192,213,252; --plan-glow: rgba(134,161,216,0.3); }
/**/.plan-card--diamante .plan-hero         { background: #0a1628; }
/*.plan-card--diamante .plan-hero         { background: #6a39b9; }*/
.plan-card--diamante .plan-hero::after  { background: radial-gradient(circle, rgba(134,161,216,0.2) 0%, transparent 70%); }
.plan-card--diamante .plan-badge        { border-color: rgba(192,213,252,0.45); color: #c0d5fc; }
.plan-card--diamante .plan-name         { text-shadow: 0 0 20px rgba(192,213,252,0.75), 0 2px 4px rgba(0,0,0,.5); color: #7890bf;}
.plan-card--diamante .plan-tagline      { color: rgba(192,213,252,0.7); }
.plan-card--diamante .plan-amount      { color: #7890bf; }
.plan-card--diamante .plan-currency,
.plan-card--diamante .plan-cents        { color: #86a1d8; }
.plan-card--diamante .plan-amount       { text-shadow: 0 0 20px rgba(134,161,216,0.55); }
.plan-card--diamante .plan-divider      { background: linear-gradient(90deg, transparent, rgba(134,161,216,0.55) 50%, transparent); }
.plan-card--diamante .plan-description p { color: #4a6080; }
.plan-card--diamante .chip              { background: rgba(134,161,216,0.16); border-color: rgba(134,161,216,0.28); color: #a8c0ec; }
.plan-card--diamante .chip i            { color: #86a1d8; }
.plan-card--diamante .scan-line         { background: linear-gradient(90deg, transparent, rgba(192,213,252,0.85) 50%, transparent); }
.plan-card--diamante .plan-star-wrap::before { background: radial-gradient(circle, rgba(134,161,216,0.2) 0%, transparent 65%); }
.plan-card--diamante .plan-star-wrap::after  { border-color: rgba(134,161,216,0.25); }
.plan-card--diamante .plan-star-wrap img     { filter: drop-shadow(0 0 20px rgba(192,213,252,.65)) drop-shadow(0 4px 16px rgba(0,0,0,.4)); }
.plan-card--diamante:hover { box-shadow: 0 0 0 1px rgba(192,213,252,0.4), 0 32px 80px rgba(100,140,220,0.45); }
.plan-card--diamante .btn-plano { background: linear-gradient(135deg, #c0d5fc 0%, #86a1d8 100%); color: #0a1628; box-shadow: 0 0 20px rgba(134,161,216,0.45), 0 6px 24px rgba(80,120,200,0.4); }
.plan-card--diamante .btn-plano:hover { box-shadow: 0 0 30px rgba(192,213,252,0.65), 0 10px 30px rgba(100,140,200,0.5); }

/* ════════ HERO (compartilhado) ════════ */
.plan-hero {
    position: relative;
    padding: 2.8rem 1.5rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.plan-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%,   rgba(0,0,0,0.5)  0%, transparent 60%),
        radial-gradient(ellipse 100% 50% at 50% 110%, rgba(0,0,0,0.65) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.plan-hero::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
    z-index: 0;
    animation: neon-pulse 4s ease-in-out infinite;
}

.scan-line {
    position: absolute;
    width: 100%; height: 2px;
    top: 50%; left: 0;
    z-index: 1;
    animation: scan 3.5s ease-in-out infinite;
    filter: blur(1px);
}

/*.plan-badge {
    position: relative; z-index: 2;
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: rgba(255,255,255,0.08);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.3rem 0.9rem; border-radius: 999px;
    margin-bottom: 1.4rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
}*/

.plan-star-wrap {
    position: relative; z-index: 2;
    width: 170px; height: 170px;
    margin: 0 auto 1.4rem;
    flex-shrink: 0;
}

.plan-star-wrap::before {
    content: ''; position: absolute; inset: -14px;
    border-radius: 50%;
    animation: star-glow 3s ease-in-out infinite;
}

.plan-star-wrap::after {
    content: ''; position: absolute; inset: -22px;
    border-radius: 50%; border: 1px solid transparent;
    animation: ring-spin 8s linear infinite;
}

.plan-star-wrap img {
    width: 100%; height: 100%; object-fit: contain;
    animation: float-star 4.5s ease-in-out infinite;
}

.plan-name {
    position: relative; z-index: 2;
    font-size: 2.2rem; font-weight: 900;
    letter-spacing: 0.1em; color: #fff;
    line-height: 1; margin-bottom: 0.45rem;
}

.plan-tagline {
    position: relative; z-index: 2;
    font-size: 0.8rem; line-height: 1.5;
    text-align: center; max-width: 24ch;
}

/* ════════ PRICING ════════ */
.plan-pricing {
    display: flex; align-items: baseline;
    justify-content: center; gap: 0.15rem;
    padding: 1.6rem 1.5rem 0.5rem;
    background: #0f0a1e;
}

.plan-currency {
    font-size: 1rem; font-weight: 700;
    align-self: flex-start; margin-top: 0.6rem;
}

.plan-amount {
    font-size: 3.2rem; font-weight: 900;
    color: #fff; line-height: 1;
}

.plan-cents { font-size: 1.25rem; font-weight: 700; }

.plan-period { font-size: 0.78rem; color: #6b5e8a; margin-left: 0.2rem; }

/* ════════ DIVIDER ════════ */
.plan-divider {
    border: none; height: 1px;
    margin: 0.8rem 1.5rem;
}

/* ════════ DESCRIPTION ════════ */
.plan-description { padding: 0 1.5rem 1rem; text-align: center; }
.plan-description p { font-size: 0.85rem; line-height: 1.6; max-width: 28ch; margin: 0 auto; }

/* ════════ CHIPS ════════ */
.plan-chips {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    padding: 0 1.5rem 1.2rem;
    justify-content: center;
    flex: 1;
}

.chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 600;
    padding: 0.3rem 0.75rem; border-radius: 999px;
    transition: all 0.2s ease;
}

.chip i { font-size: 0.65rem; }

/* ════════ CTA BUTTON ════════ */
.plan-cta { padding: 0.5rem 1.5rem 1.6rem; }

.btn-plano {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; width: 100%;
    padding: 0.9rem 1.5rem;
    color: #fff; font-size: 0.95rem; font-weight: 700;
    border-radius: 14px; text-decoration: none; border: none; cursor: pointer;
    letter-spacing: 0.03em; position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    inset: 0 1px 0 rgba(255,255,255,0.15);
}

.btn-plano::after {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    animation: btn-shimmer 3s ease-in-out infinite;
}

.btn-plano:hover { transform: translateY(-3px); filter: brightness(1.1); }
.btn-plano i     { font-size: 1rem; }

/* ════════ KEYFRAMES ════════ */
@keyframes neon-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -55%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -55%) scale(1.12); }
}
@keyframes scan {
    0%   { top: 20%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 80%; opacity: 0; }
}
@keyframes star-glow {
    0%, 100% { opacity: 0.6; transform: scale(0.96); }
    50%       { opacity: 1;   transform: scale(1.06); }
}
@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes float-star {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-10px) scale(1.03); }
}
@keyframes btn-shimmer {
    0%   { left: -100%; }
    50%  { left: 150%; }
    100% { left: 150%; }
}

/* ════════ RESPONSIVE ════════ */
@media screen and (max-width: 1200px) {
    .features-grid-planos { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; }
}
@media screen and (max-width: 768px) {
    .features-grid-planos { grid-template-columns: 1fr !important; }
}

@media screen and (min-width: 1200px) {
    .carousel-btn{ display: none}
}

/* ══════════════ PERSONALIZADO — cores primárias ══════════════ */
.plan-card--personalizado {
  border-color: rgba(113, 68, 226, 0.5);
  box-shadow:
    0 0 0 1px rgba(102, 52, 168, 0.25),
    0 20px 60px rgba(113, 68, 226, 0.3),
    0 0 80px rgba(102, 52, 168, 0.1);
}

.plan-card--personalizado .plan-hero {
  background: linear-gradient(160deg, #7144e2 0%, #6634a8 60%, #4a1f8a 100%);
}

.plan-card--personalizado .plan-hero::after {
  background: radial-gradient(
    circle,
    rgba(113, 68, 226, 0.28) 0%,
    rgba(102, 52, 168, 0.1) 50%,
    transparent 70%
  );
}

.plan-card--personalizado .scan-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(161, 120, 255, 0.5) 30%,
    rgba(200, 170, 255, 0.9) 50%,
    rgba(161, 120, 255, 0.5) 70%,
    transparent 100%
  );
}

.plan-card--personalizado .plan-badge {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ece6ff;
  box-shadow: 0 0 12px rgba(113, 68, 226, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.plan-card--personalizado .plan-name {
  font-size: 1.6rem; /* reduz um pouco o tamanho */
  letter-spacing: 0.05em;
  word-break: break-word;
}

.plan-card--personalizado .plan-name {
  color: #ffffff;
  text-shadow:
    0 0 20px rgba(200, 170, 255, 0.8),
    0 0 40px rgba(113, 68, 226, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.5);
}

.plan-card--personalizado .plan-star-wrap::before {
  background: radial-gradient(
    circle,
    rgba(113, 68, 226, 0.22) 0%,
    transparent 65%
  );
}

.plan-card--personalizado .plan-star-wrap::after {
  border-color: rgba(161, 120, 255, 0.3);
}

.plan-card--personalizado .plan-star-wrap img {
  filter:
    drop-shadow(0 0 22px rgba(161, 120, 255, 0.65))
    drop-shadow(0 0 44px rgba(113, 68, 226, 0.4))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.plan-card--personalizado .plan-amount {
  color: #c4a8ff;
  text-shadow: 0 0 20px rgba(113, 68, 226, 0.55);
}

.plan-card--personalizado .plan-currency,
.plan-card--personalizado .plan-cents {
  color: #a07ae0;
}

.plan-card--personalizado .plan-divider {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(113, 68, 226, 0.55) 30%,
    rgba(161, 120, 255, 0.8) 50%,
    rgba(113, 68, 226, 0.55) 70%,
    transparent
  );
}

.plan-card--personalizado .plan-description p {
  color: #8f78c8;
}

.plan-card--personalizado .chip {
  background: rgba(102, 52, 168, 0.18);
  border-color: rgba(161, 120, 255, 0.28);
  color: #d0baff;
}

.plan-card--personalizado .chip i {
  color: #9b6ff0;
}

.plan-card--personalizado:hover {
  box-shadow:
    0 0 0 1px rgba(161, 120, 255, 0.5),
    0 32px 80px rgba(113, 68, 226, 0.5),
    0 0 120px rgba(102, 52, 168, 0.2);
}

.plan-card--personalizado .btn-plano {
  background: linear-gradient(135deg, #7144e2 0%, #6634a8 60%, #4e1f99 100%);
  color: #ffffff;
  box-shadow:
    0 0 20px rgba(113, 68, 226, 0.55),
    0 6px 24px rgba(102, 52, 168, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.plan-card--personalizado .btn-plano:hover {
  box-shadow:
    0 0 32px rgba(113, 68, 226, 0.75),
    0 10px 30px rgba(102, 52, 168, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: brightness(1.1);
}



/* Espaçador para cards sem badge (mantém alinhamento vertical) */
.plan-badge-spacer {
  height: 2rem;
  display: block;
}

/* Ajuste de tipografia do preço "Sob consulta" */
.plan-amount--label {
  font-size: 2rem;
}

.plan-period--label {
  font-size: 1rem;
  align-self: center;
}
