    /* Reset e variáveis CSS */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-color: #08d0a7;
        --primary-dark: #43aab6;
        --secondary-color: #8b5cf6;
        --accent-color: #06b6d4;
        --text-primary: #dfdfdf;
        --text-secondary: #b9c0cf;
        --text-light: #9ca3af;
        --background: #ffffff;
        --background-light: #f9fafb;
        --background-dark: #111827;
        --background-darkspy: #020812;
        --border-color: #e5e7eb;
        --success-color: #10b981;
        --warning-color: #f59e0b;
        --error-color: #ef4444;
        --gradient-primary: linear-gradient(135deg, #05cba1 0%, #43aab6 100%);
        --gradient-hero: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        --border-radius: 8px;
        --border-radius-lg: 12px;
        --transition: all 0.3s ease;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: var(--text-primary);
        background-color: var(--background);
        overflow-x: hidden;
        background: #14171c;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #020812;
        backdrop-filter: blur(10px);
        border-bottom: 0;
        z-index: 1000;
        transition: var(--transition);
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo .logo-text {
        font-size: 1.5rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-link {
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-buttons {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .btn-login {
        background: none;
        border: 1px solid #08d0a7;
        color: #08d0a7;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-login:hover {
        background-color: var(--background-light);
    }

    .btn-signup {
        background: var(--gradient-primary);
        color: white;
        border: none;
        padding: 0.5rem 1.5rem;
        border-radius: var(--border-radius);
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: var(--text-primary);
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
        background: var(--gradient-hero);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
    }

    .hero-title .highlight {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: white;
        color: var(--primary-color);
        border: none;
        padding: 1rem 2rem;
        border-radius: var(--border-radius-lg);
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
    }

    .btn-primary.large {
        padding: 1.25rem 2.5rem;
        font-size: 1.2rem;
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 1rem 2rem;
        border-radius: var(--border-radius-lg);
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    /* Dashboard Mockup */
    .hero-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dashboard-mockup {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: 400px;
    }

    .widget-card {
        position: absolute;
        background: white;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-xl);
        padding: 1.5rem;
        animation: float 6s ease-in-out infinite;
    }

    .widget-card:nth-child(1) {
        top: 0;
        left: 0;
        width: 280px;
        height: 200px;
        z-index: 3;
    }

    .widget-card:nth-child(2) {
        top: 50px;
        right: 0;
        width: 150px;
        height: 100px;
        z-index: 2;
        animation-delay: -2s;
    }

    .widget-card:nth-child(3) {
        bottom: 0;
        right: 20px;
        width: 150px;
        height: 100px;
        z-index: 1;
        animation-delay: -4s;
    }

    .widget-header {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .widget-stats {
        display: flex;
        gap: 1rem;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .stat-label {
        font-size: 0.875rem;
        color: var(--text-secondary);
    }

    .widget-content {
        font-weight: 500;
        color: var(--text-primary);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    /* Section Styles */
    .section-title .highlight {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .proof-grid-tool {
        display: block;
        text-align: center;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .proof-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .proof-image {
        flex-shrink: 0;
    }

    .proof-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #dfdfdf;
    }

    .proof-content p {
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* Integration Section */
    .integration {
        padding: 60px 0;
        background: #020812;
    }

    .integration-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .logo-item {
        padding: 1rem 2rem;
        background: var(--background-light);
        border-radius: var(--border-radius);
        font-weight: 600;
        color: var(--text-secondary);
        transition: var(--transition);
    }

    .logo-item:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

    /* Stats Section */
    .stats {
        padding: 80px 0;
        background: var(--background-light);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .stat-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

    .stat-card .stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        margin-bottom: 0.5rem;
    }

    .stat-card .stat-label {
        font-size: 1.1rem;
        color: var(--text-secondary);
    }

    /* Testimonials Section */
    .testimonials-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      padding: 40px 20px;
      background: #020812;
  }
  .testimonials-section {
      background: #020812;    
  }

  .testimonial-card {
    border-radius: 16px;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: transparent;
    background-image: linear-gradient(220deg, #1F27359E 0%, #020812 90%);
    background-image: 
    linear-gradient(220deg, rgba(15, 20, 30, 0.92), rgba(3, 10, 25, 0.92)), /* camada escura */
    url(/assets/images/bg_pattern.png); /* imagem do pattern */
    opacity: 1;
    padding: 0;
    border: 1px solid #1F27359E;
}
.testimonial-card-patern {
  background-image: 
  linear-gradient(220deg, rgba(15, 20, 30, 0.92), rgba(3, 10, 25, 0.92)), /* camada escura */
  url(/assets/images/bg_pattern.png); /* imagem do pattern */
  background-color: #1f2735;
  background-repeat: repeat;
  background-size: 15% auto;
  border-radius: 16px;
  padding: 20px;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border: 1px solid #0dc7a4;
}

.testimonial-photo {
  width: 100%;
  max-height: 200px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-name {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.testimonial-stars {
  color: #f5c518;
  margin: 5px 0 10px;
  font-size: 18px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.5;
  color: #d3d3d3;
}


/* Tools Section */
.tools {
    padding: 80px 0;
    background: var(--background-light);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tool-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.partner-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.partner-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: var(--background-darkspy);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li:before {
    content: attr(data-icon);
    font-weight: bold;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-primary);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.plan-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.plan-button.primary {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta {
    padding: 30px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .dashboard-mockup {
        max-width: 400px;
        height: 300px;
    }
    
    .widget-card:nth-child(1) {
        width: 240px;
        height: 160px;
    }
    
    .widget-card:nth-child(2),
    .widget-card:nth-child(3) {
        width: 120px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .comecar-menu {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .proof-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .dashboard-mockup {
        max-width: 300px;
        height: 250px;
    }

    .widget-card:nth-child(1) {
        width: 200px;
        height: 140px;
        padding: 1rem;
    }

    .widget-card:nth-child(2),
    .widget-card:nth-child(3) {
        width: 100px;
        height: 70px;
        padding: 0.5rem;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .tool-card,
    .partner-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }


.pill-link--green {
    background-color: rgba(75, 202, 129, 0.12);
    color: #4BCA81;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: 600 !important;
}
.pill-link--green:hover {
    background-color: rgba(75, 202, 129, 0.185);
    color: #4BCA81;
    text-decoration:none;
}
.pill-link__icon {
    width: 20px;
    display: inline-block;
    margin-left: 9px;
    height: 1em;
    width: 1em;
    transform-origin: right center;
    transition: transform 0.2s ease;
}
.main-title-cta {
    font-family: Roboto, Lato, sans-serif !important;
    letter-spacing: 0;
    color: #dbd6d6;
    margin: auto auto 50px;
    font-weight: 700;
    font-size: 4em !important;
    line-height: 1;
}
.lato {
    font-family: "Lato", Helvetica, sans-serif !important;
}
.header-23__left_content {
    max-width: 550px;
}
.u-text-mark:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: .3em;
    background-image: url(themes/altum/assets/images/sub.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    left: 0;
    bottom: -.15em;
}
.u-text-mark {
    position: relative;
}
.sub-main-title {
    font-size: 1.2rem;
    max-width: 90%;
}
.purple-text {
    color: #08d0a7;
}
.buttons-set__list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-left: -7px;
}
.buttons-set__item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
    margin-right: 7px;
    padding-bottom: 14px;
    font-size: 0;
}
.button.button--alt-accent-bg {
    background-color: #08d0a7;
}
.main-cta-btn {
    min-width: 185px;
}
.button--alt-accent-bg {
    background-color: #F90473;
    color: white;
}
.button {
    overflow: hidden;
    display: inline-block;
    position: relative;
    padding: 12px 20px 12px;
    min-width: 120px;
    border: 2px solid transparent;
    min-height: 44px;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2), 0 5px 15px 0 rgba(37, 44, 97, 0.15);
    font-size: 14px;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.main-cta-btn {
    min-width: 185px;
}
.buttons-set__info {
    opacity: 0.7;
    padding-left: 5px;
    font-size: 14px;
}
.green-text {
    color: #0affd3;
}
span.score__word {
    opacity: 0.9;
    font-size: 14px;
}
.button.button--alt-accent-bg:hover {
    background-color: #36b0b1;
    color:#fff;
    text-decoration: none;
    transform: translateY(-2px);
}
.buttons-set__item .youtube-link {
    color: #10c6a5;
    font-weight: 800;
    border: 2px solid #10c6a5;
    margin-left: auto;
    width: 200px;
    margin-right: auto;
    border-radius: 4px;
    box-shadow: none;
}
.buttons-set__item .youtube-link:hover {
    transform: translateY(-2px)
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}
.banner-cell {
    display: none;
}
.pill-link--green {
    background-color: rgba(75, 202, 129, 0.12);
    color: #4BCA81;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: 600 !important;
    text-decoration: none;
}
.pill-link--green:hover {
    background-color: rgba(75, 202, 129, 0.185);
    color: #4BCA81;
    text-decoration:none;
}
.pill-link__icon {
    width: 20px;
    display: inline-block;
    margin-left: 9px;
    height: 1em;
    width: 1em;
    transform-origin: right center;
    transition: transform 0.2s ease;
}
.main-title-cta {
    font-family: Roboto, Lato, sans-serif !important;
    letter-spacing: 0;
    color: #dbd6d6;
    margin: auto auto 50px;
    font-weight: 700;
    font-size: 3em !important;
    line-height: 1;
    margin-top: 15px;
}
.lato {
    font-family: "Lato", Helvetica, sans-serif !important;
}
.header-23__left_content {
    max-width: 550px;
}
.u-text-mark {
    position: relative;
}
.sub-main-title {
    font-size: 1.2rem;
    max-width: 90%;
}
.purple-text {
    color: #10c6a5;
}
.buttons-set__list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-left: -7px;
}
.buttons-set__item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
    margin-right: 7px;
    padding-bottom: 14px;
    font-size: 0;
}
.button.button--alt-accent-bg {
    background-color: #10c6a5;
}
.main-cta-btn {
    min-width: 185px;
}
.button--alt-accent-bg {
    background-color: #F90473;
    color: white;
}
.button {
    overflow: hidden;
    display: inline-block;
    position: relative;
    padding: 12px 20px 12px;
    min-width: 120px;
    border: 2px solid transparent;
    min-height: 44px;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2), 0 5px 15px 0 rgba(37, 44, 97, 0.15);
    font-size: 14px;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.main-cta-btn {
    min-width: 185px;
}
.buttons-set__info {
    opacity: 0.7;
    padding-left: 5px;
    font-size: 14px;
}
.green-text {
    color: #0affd3;
}
span.score__word {
    opacity: 0.9;
    font-size: 14px;
}
.button.button--alt-accent-bg:hover {
    background-color: #36b0b1;
    color:#fff;
    text-decoration: none;
    transform: translateY(-2px);
}
.buttons-set__item .youtube-link {
    color: #10c6a5;
    font-weight: 800;
    border: 2px solid #10c6a5;
    margin-left: auto;
    width: 200px;
    margin-right: auto;
    border-radius: 4px;
    box-shadow: none;
}
.buttons-set__item .youtube-link:hover {
    transform: translateY(-2px)
}
@media (min-width: 576px) {
    .index-container {
        width: 100%;
        padding: 4rem 0 6rem 0;
        background: url(/assets/images/Binoculos-SpyAds-v2.png);
        background-repeat: no-repeat;
        background-position: right;
    }
}
.margin-top-6 {
    margin-top: 6rem;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.u-text-mark:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: .3em;
    background-image: url(/assets/images/sub.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    left: 0;
    bottom: -.15em;
}
.nav-logo img {
    max-height: 50px;
    vertical-align: middle;
}
.proof-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    background: #1f2735;
    padding: 25px;
    border-radius: 25px;
    border-color: #020812;
}
.proof-item-game {
    background: #fff;
    --tw-shadow: 0 0px 14px 0px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 30px;
    border-radius: 25px;
}
.proof-image-game {
    text-align: center;
    width: 100%;
}
.placeholder-image-game {
    text-align: center;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: #9176f4;
    border-radius: 10px;
    font-size: 30px;
    line-height: 67px;
}
.placeholder-image {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: transparent;
}
.placeholder-image svg {
    width: 30px;
    height: 30px;
    color: #10c6a5;
}
.proof-item:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.social-proof {
    padding: 80px 0;
    background: #020812;
}
.proof-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #dfdfdf;
}
.proof-content-game h3 {
    text-align: center;
    font-size: 20px;
    margin: 15px 0;
}
.proof-content-game p {
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    color: var(--text-primary);
}
h4.sections-subtitle {
    text-align: center;
    margin-bottom: 3em;
    font-weight: 500;
    color: #7e7e7e;
    font-size: 18px;
    max-width: 800px;
}
.sections-subtitle {
    margin: 0 auto;
}
h4.sections-subtitle-special {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}
/*********** COMPARISON */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.comparison-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.comparison-card .icon {
    font-size: 2.5em;
    margin-bottom: 5px;
    display: block;
}

.comparison-card h4 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2d3748;
    letter-spacing: 0.5px;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 1.05em;
    font-weight: 500;
    line-height: 1.4;
}

.comparison-card ul li:last-child {
    margin-bottom: 0;
}

.comparison-card ul li::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.comparison-card.traditional {
    border-left: 4px solid #ef4444;
}

.comparison-card.traditional ul li {
    color: #374151;
}

.comparison-card.traditional ul li::before {
    content: '❌';
    background: #fef2f2;
    color: #ef4444;
}

.comparison-card.gamified {
    border-left: 4px solid #10b981;
}

.comparison-card.gamified ul li {
    color: #374151;
}

.comparison-card.gamified ul li::before {
    content: '✅';
    background: #f0fdf4;
    color: #10b981;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {     
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .comparison-card {
        padding: 30px 25px;
    }

    .comparison-card .icon {
        font-size: 3em;
        margin-bottom: 15px;
    }

    .comparison-card h4 {
        font-size: 1.2em;
        margin-bottom: 25px;
    }

    .comparison-card ul li {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.75em;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .comparison-card {
        padding: 25px 20px;
    }

    .comparison-card .icon {
        font-size: 2.5em;
    }

    .comparison-card h4 {
        font-size: 1.1em;
    }

    .comparison-card ul li {
        font-size: 0.95em;
    }
}
.container-grid
{
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}
/******** SLIDE **********/
.slider {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background-color: transparent;
    white-space: nowrap;
}

.slide-track {
    display: inline-block;
    animation: scroll 28s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

.slide {
    display: inline-block;
    height: 65px;
    margin: 0 50px;
    vertical-align: middle;
}

.slide img {
    height: 100%;
    width: auto; /* Mantém a proporção da imagem */
}

/* Animação de rolagem */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move a faixa inteira para a esquerda */
    }
}
.badge-plan-choice {
    background: var(--gradient-primary);
    border-radius: 0 0 10px 10px;
    color: #131b2b;
    font-size: 15px;
    padding: 4px;
    font-weight: 600;
}
.badge-destaque-y{
    background: linear-gradient(266deg, #ffbb35, #efc807);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
}
.badge-destaque-p{
    background: linear-gradient(266deg, #b363ef, #702ee7);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
}

/**************** ****************/
.pricing-04__card.anualplan {
    border: 2px solid #08d0a7;
}
.pricing-04__percent.price-a {
    background: #08d0a7;
    padding: 3px;
    color: #131c2c;
    border-radius: 7px 7px 0 0;
    font-size: 13px;
    font-weight: 900;
}
.anualplan .pricing-04__price_box {
    position: relative;
    padding: 7px;
    margin-bottom: 10px;
    background-color: #20324f;
    border-radius: 0 0 10px 10px;
}
.pricing-04__cards_list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-04__card_box {
    width: 100%;
    margin: 0 6px 60px;
}
.pricing-04__card {
    padding: 0px 25px 25px;
    box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2), 0 5px 15px 0 rgba(37, 44, 97, 0.15);
    background-color: #0f1b2f;
    border-radius: 10px;
    border: 2px solid transparent;
    background: linear-gradient(220deg, rgba(15, 20, 30, 0.92), rgb(32 50 79));
}
.pricing-04__card {
    padding: 0px 20px 25px;
    text-align: center;
}
.pricing-04__card_title {
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 22px;
}
.pricing-04__card_main_text {
    margin-bottom: 15px;
}

.pricing-04__card_text, .pricing-04__card_main_text {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.4;
}
#pricing .pricing-04__price_box {
    background-color: #20324f;
    border-radius: 5px;
}
.pricing-04__price_box {
    position: relative;
    padding: 7px;
    margin-bottom: 10px;
    background-color: #20324f;
    border-radius: 10px;
}
.pricing-04__card_text {
    margin: 2px 0;
    text-align: left;
}
.pricing-04__card_button {
    margin-top: 10px;
}
.pricing-04__price_symbol {
    margin-top: 10px;
    font-family: sans-serif;
}
.pricing-04__price {
    font-family: "Open Sans", sans-serif;
    font-size: 32px;
}
.pricing-04__period {
    align-self: anchor-center;
    color: #e7e3e3;
    line-height: 15px;
    margin-top: 14px;
}
.pricing-04__price_item.js-tab-content.state-active-tab {
    display: flex;
    justify-content: center;
    gap: 7px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #08d0a7;
}
.pricing-04__card_button .button--purple-bg:hover {
    background-color: #08d0a7;
}
.pricing-04__card_button .button:hover, .button:focus {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px 0 rgba(136, 144, 195, 0.22), 0 8px 15px 0 rgba(37, 44, 97, 0.17);
    text-decoration: none;
}
.pricing-04__card_button .button--purple-bg {
    background-color: #08d0a7;
    color: white;
}
.pricing-04__card_button .button {
    overflow: hidden;
    display: inline-block;
    position: relative;
    padding: 8px 30px 8px;
    min-width: 120px;
    border: 2px solid transparent;
    min-height: 44px;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(136, 144, 195, 0.2), 0 2px 9px 1px rgba(37, 44, 97, 0.15);
    font-size: 14px;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    width: 100%;
}
.button--purple-outline {
    background-color: transparent;
    border-color: #08d0a7 !important;
    color: #08d0a7;
}
#pricing .pricing-04__items {
    max-width: 230px;
}

.pricing-04__items {
    margin: 0;
    list-style: none;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 25px 10px;
}
.pricing-04__item_icon {
    position: relative;
    top: 5px;
    vertical-align: top;
    height: 12px;
    margin-right: 5px;
}
li.pricing-04__item {
    margin: 4px 0;
    font-size: 14px;
}
.pricing_trial {
    width: 100%;
    max-width: 850px;
    margin: 0 0 35px;
}
.info-por-3 {
    width: 32%;
    display: inline-block;
    vertical-align: top;
}
.pricing-04__action_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 20px 20px;
    border-radius: 10px;
    border: 2px solid #eee;
}
.font-size-md {
    font-size: 1.1rem;
}
.pricing-04__action_text {
    padding-right: 40px;
    text-align: left;
    line-height: 1.4;
}
ul.megapacks {
    margin-top: 50px;
    display: none;
}



li#registrar {
    background-color: #08d0a7;
    border-radius: 35px;
    margin: 0.5rem !important;
}
li#logar {
    background-color: #ffffff;
    border-radius: 35px;
    margin: 0.5rem !important;
    border: 2px solid #7805f7;
}
li#registrar a{
    color: #fff;
    padding: 0.65em 1rem 0.7em !important;
    font-size: 15px;
}
li#logar a {
    color: #7805f7;
    padding: 0.5em 1rem 0.7em !important;
    font-size: 15px;
}
/************ Footer *************/
.footer {
    padding: 3rem 0 2rem;
    font-size: 0.95rem;
    background-color: #0b121e;
}

.footer {
    color: #dedede !important;
}
h3.footer-04__title {
    color: #dedede !important;
    font-size: 18px;
}

.footer-04__title {
    margin-top: 0;
    margin-bottom: 20px;
}
.footer-04__list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-04__item {
    margin-bottom: 2px;
}
a.footer-04__link{
    color: #dedede !important;
}
.link_badge {
    position: absolute;
    right: -10px;
    top: 50%;
    padding: 2px 4px;
    border-radius: 3px;
    transform: translateX(100%) translateY(-50%);
    background-color: #08d0a7;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    font-size: 10px;
}
.footer-04__link {
    position: relative;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}
a.footer-04__link:hover {
    color: #08d0a7 !important;
    text-decoration: none;
}
.footer a:not(.dropdown-item), .footer a:hover:not(.dropdown-item) {
    color: #dedede !important;
}
.footer-info {
    font-size: 14px;
    line-height: 1.4;
    color: rgb(255 255 255 / 50%);
    margin: 10px 15px 0 0;
}
.footer a.icon {
    color: #dedede !important;
}
.copy {
    border-top: 1px solid #cecece;
    font-size: 12px;
    margin-top: 40px;
}
.mt-3 .dropdown {
    display: inline-block;
    margin: 0 0 0 19px;
}
.icon-facebook:hover {
    transition: color 0.3s ease-in-out;
    color: #4267B2 !important;
}

.icon-twitter:hover {
    transition: color 0.3s ease-in-out;
    color: #1DA1F2 !important;
}

.icon-instagram:hover {
    transition: color 0.3s ease-in-out;
    color: #d84614 !important;
}

.icon-youtube:hover {
    transition: color 0.3s ease-in-out;
    color: #FF0000 !important;
}

.footer-logo {
    max-width: 125px;
    height: auto;
}
@media (max-width: 768px) {
    ul#boxedprice li {
        display: block !important;
        width: 100%;
    }
    .pricing-04__cards_list {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .pricing-04__items {
        max-width: 100%;
    }
    li.pricing-04__item {
        margin: 4px 0;
        font-size: 14px;
    }
    .placeholder-image {
        text-align: center !important;
        margin: 0 auto;
    }
    .proof-image {
        width: 100%;
        margin: 0 auto;
    }
    .proof-item.fade-in-up {
        border: 1px solid #e1e1e1;
    }
    .proof-grid {
        gap: 1rem;
    }
    .slide {
        display: inline-block;
        height: 47px;
        margin: 0 20px;
        vertical-align: middle;
    }
    body {
        padding: 0px;
    }
    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 5px;
        text-align: center;
        color: var(--text-primary);
        line-height: 33px;
        margin-top: 15px;
    }
    h4.sections-subtitle-special {
        text-align: center;
        margin-bottom: 19px;
        font-size: 20px;
    }
    h4.sections-subtitle {
        text-align: center;
        margin-bottom: 2em;
        font-weight: 500;
        color: #7e7e7e;
        font-size: 14px;
        max-width: 800px;
    }
    .social-proof {
        padding: 35px 0;
        background: #020812;
    }
    .testimonials {
        padding: 35px 0;
        background: white;
    }
    .pricing-04__card_box {
        margin: 0;
        margin-bottom: 20px;
    }
    .cta {
        padding: 35px 0;
        background: var(--gradient-primary);
        text-align: center;
    }
    .cta-content h2 {
        font-size: 1.5rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
    .col-md-3 {
        width: 100%;
        margin: 0 15px;
    }
    .footer-04__title {
        margin-top: 20px;
        margin-bottom: 5px;
    }
    .text-left {
        margin: 0 15px;
    }
    .main-title-cta {
        font-size: 2.2em !important;
        margin: auto auto 25px;
    }
    .sub-main-title {
        font-size: 1rem;
        max-width: 90%;
    }
    ul.buttons-set__list {
        display: flex;
    }
    .banner-cell img {
        width: 100%;
        margin-top: 22px;
    }
    .banner-cell {
        display: block;
    }
    .proof-grid-tool img {
        width: 100%;
    }
    .floating img {
        width: 60%;
    }
    .filtro1 {
        top: 41%;
        left: 38%;
    }
    .filtro2 {
        top: 6%;
        left: 31%;
    }
    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 5px;
        text-align: center;
        color: var(--text-primary);
        line-height: 33px;
        margin-top: 0;
    }
    h4.sections-subtitle {
        padding: 0 37px;
        margin-bottom: 0;
    }
    .container.testimonialsitens {
        display: flex;
        flex-direction: column;
    }
    .pricing {
        padding: 0;
    }
    .garantia-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    section#garantia {
        padding: 25px;
        text-align: center;
    }
    .garantia-right h1 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .garantia-left img {
        width: 140px;
    }
    .garantia-left{
        flex: 0;
    }
    section#contactarea .container {
        display: flex;
        flex-direction: column;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #08d0a7;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 0rem 0;
    }
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 0rem;
    }



}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  flex: 0 0 33.3333%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-box {
  background-color: #eef6ff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial:nth-child(2) .testimonial-box {
  background-color: #f6edff;
}

.testimonial:nth-child(3) .testimonial-box {
  background-color: #edfff4;
}

.stars {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.quote {
  font-style: italic;
  color: #333;
  flex-grow: 1;
}

.user-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.user-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}

.user-info strong {
  display: block;
  color: #111;
}

.user-info span {
  font-size: 0.9rem;
  color: #777;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #3b82f6;
}

@media (max-width: 768px) {
  .testimonial {
    flex: 0 0 100%;
}
}

li.pricing-04__card_box {
    max-width: 380px;
}

.plan-switch {
    background: #0f1b2f;
    border-radius: 999px;
    display: inline-flex    ;
    padding: 4px;
    margin-bottom: 30px;
    border: 1px solid #08d0a7;
}

.plan-tab {
  background: transparent;
  border: none;
  color: #08d0a7;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.plan-tab.active {
    background-color: #08d0a7;
    color: #fff;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}
#index-container,
.index-container {
  position: relative;
  overflow: hidden;
  background: #020812;
}

.video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.video-background-wrapper iframe.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* Proporção 16:9 */
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

.index-container .conteudo {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px;
  color: white;
}
.bgheader {
    background: url(https://spyads.digital/assets/images/Binoculos-SpyAds-v2.png);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right;
    max-width: 50%;
    right: 0;
    background-size: contain;
}
.bgheader {
  animation: flutuar 4s ease-in-out infinite;
}
.proof-grid-tool {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

img.imageexte {
    max-width: 800px;
    border-radius: 30px;
    filter: grayscale(0.4);
}

/* Blocos flutuantes */
.floating {
  position: absolute;
  z-index: 2;
  animation: flutuar 4s ease-in-out infinite;
}

.filtro1 {
  top: 10%;
  left: 5%;
}

.filtro2 {
  top: 0%;
  right: 5%;
}

.filtro3 {
  bottom: 5%;
  left: 35%;
}

.garantia-box {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(220deg, #1F2735 0%, #020812 100%);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  color: #fff;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.garantia-left {
  flex: 0 0 200px;
  text-align: center;
}

.garantia-left img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.garantia-stars {
  color: #f5c518;
  font-size: 20px;
  margin-top: 10px;
  letter-spacing: 2px;
}

.garantia-right {
  flex: 1;
}

.garantia-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.garantia-right p {
  font-size: 15px;
  line-height: 1.6;
  color: #d3d3d3;
  margin: 0;
}

/* Seção de Contato */
.contact-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.contact-section {
    min-width: 365px;
}
.contact-card {
    border: 2px solid #151d29;
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.contact-content {
    text-align: center;
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    padding: 5px;
    background: #07caa1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon i {
    font-size: 28px;
    color: white;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 0.75rem;
    color: #dbd5d5;
    margin-bottom: 0rem;
    line-height: 1.5;
}

.contact-button {
    background: linear-gradient(135deg, #07caa1, #128C7E);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #2ae371, #0f9688);
}

.contact-button:active {
    transform: translateY(0);
}

/* Seção FAQ */
.faq-section {
    padding-left: 2rem;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(145deg, #171e2b, #0a111c);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00d3a4;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(37, 211, 102, 0.05);
}

.question-icon {
    color: #25D366;
    font-size: 1rem;
    min-width: 20px;
}

.question-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.expand-icon {
    color: #888;
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .expand-icon {
    transform: rotate(90deg);
    color: #25D366;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
    border-top: 1px solid #333;
}

.faq-answer p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1rem;
    }
    
    .faq-section {
        padding-left: 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .contact-card {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .question-text {
        font-size: 0.95rem;
    }
    .bgheader {
        display: none;
    }











}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .contact-title {
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.75rem;
    }
}
.header-23__cta_box.mt-5 {
    text-align: left;
}


section {
    background: #020812;
}

/* Animação suave de flutuação */
@keyframes flutuar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes flutuar {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
@media (max-width: 364px) {
    .contact-section {
        min-width: 305px;
    }
}