/* TradeAlertsBR - Pure CSS Landing Page */

/* CSS Variables (Design System) */
:root {
    /* Core backgrounds */
    --background: hsl(218, 23%, 97%);
    --foreground: hsl(220, 13%, 18%);

    /* Card system */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 13%, 18%);

    /* Primary - Professional green for trading success */
    --primary: hsl(142, 76%, 36%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(142, 76%, 45%);

    /* Secondary - Trust blue */
    --secondary: hsl(217, 91%, 60%);
    --secondary-foreground: hsl(0, 0%, 100%);

    /* Muted tones */
    --muted: hsl(220, 13%, 95%);
    --muted-foreground: hsl(220, 9%, 46%);

    /* Accent colors */
    --accent: hsl(47, 96%, 53%);
    --accent-foreground: hsl(220, 13%, 18%);

    /* Destructive - Trading loss red */
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);

    /* Borders and inputs */
    --border: hsl(220, 13%, 91%);
    --input: hsl(220, 13%, 91%);
    --ring: hsl(142, 76%, 36%);

    --radius: 0.75rem;

    /* Trading platform specific colors */
    --trading-profit: hsl(142, 76%, 36%);
    --trading-loss: hsl(0, 84%, 60%);
    --trading-neutral: hsl(220, 9%, 46%);

    /* Gradients for modern appeal */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-card: linear-gradient(145deg, var(--card) 0%, var(--muted) 100%);

    /* Shadows for depth */
    --shadow-elegant: 0 10px 30px -10px hsla(142, 76%, 36%, 0.1);
    --shadow-glow: 0 0 40px hsla(142, 76%, 45%, 0.15);
    --shadow-card: 0 4px 20px -4px hsla(220, 13%, 18%, 0.1);

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    background-color: #e5e7eb;
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container h2 {
    text-align: center;
}

/* Utility Classes */
.text-primary {
/*    color: var(--primary);*/
    color: hsl(142deg 74.67% 24.13%);
}

.profit {
    color: var(--trading-profit);
}

.loss {
    color: var(--trading-loss);
}

.neutral {
    color: var(--trading-neutral);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background-color: hsla(0, 0%, 100%, 0.95);*/
    background-color: #D9F9C2;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.logo-link {
    display: block; /* Garante que o link ocupe o espaço da imagem */
    line-height: 0; /* Remove espaço extra de linha se houver */
}

.logo-image {
    max-width: 65px;
    max-height: 65px;
    display: block;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background-color: var(--muted);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.nav-mobile-open {
    display: flex;
}

.nav-link-mobile {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.nav-link-mobile:hover {
    color: var(--primary);
    background-color: var(--muted);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(142, 76%, 36%, 0.9) 0%, hsla(217, 91%, 60%, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 3rem;
    height: 3rem;
    color: hsla(0, 0%, 100%, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.floating-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 3.5rem 0;
    background-color: hsla(220, 13%, 95%, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.benefit-check {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 1rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    opacity: 0.6;
}

.trust-item {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Telegram Preview Section */
.telegram-preview {
    padding: 3.5rem 0;
    background-color: var(--background);
}

.telegram-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.telegram-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.telegram-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    background-color: var(--card);
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 8px solid #333;
    max-width: 300px;
}

.telegram-alert {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 1rem;
    border-left: 4px solid var(--primary);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.alert-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.alert-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.alert-time {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.alert-signal {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.alert-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.floating-badge {
    position: absolute;
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.floating-badge-1 {
    top: 20%;
    right: -10%;
}

.floating-badge-2 {
    bottom: 20%;
    left: -10%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Performance Section */
.performance {
    padding: 1.5rem 0;
    background-color: var(--card);
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.metric-card {
    background-color: var(--muted);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--muted-foreground);
    font-weight: 600;
}

.positions-table {
    margin-bottom: 2rem;
}

.table-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.positions {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card);
}

.positions th {
    background-color: var(--muted);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.positions td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.asset-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.asset-icon {
    width: 1rem;
    height: 1rem;
}

.disclaimer {
    text-align: center;
    margin-top: 2rem;
}

.disclaimer p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 3.5rem 0;
    background-color: hsla(220, 13%, 95%, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
}

.pricing-card-popular {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.plan-saving {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.card-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-check {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.trust-guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.guarantee-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.pricing-disclaimer {
    text-align: center;
}

.pricing-disclaimer p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-disclaimer a {
    color: var(--primary);
    text-decoration: none;
}

.pricing-disclaimer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 1rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 50%;
    color: var(--background);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 0.5rem;
}

.risk-disclaimer {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.5);
    font-style: italic;
}

.nav-desktop a {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .telegram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .floating-badge-1,
    .floating-badge-2 {
        position: static;
        margin: 0.5rem;
    }
    
    .trust-indicators,
    .trust-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ================================
   FORMULÁRIO DE CADASTRO
   ================================ */
#cadastroForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    max-width: 600px;
    margin: 2rem auto;
}

#cadastroForm label {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 0.95em;
}

#cadastroForm input[type="text"],
#cadastroForm input[type="tel"],
#cadastroForm input[type="email"] {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--muted);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

#cadastroForm input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsla(142, 76%, 36%, 0.2);
}

.termos-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cta-button {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.cta-button:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ================================
   TABELA DE POSIÇÕES (JS dinâmico)
   ================================ */
.positions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem auto;
    max-width: 900px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.positions-table th {
    background-color: var(--muted);
    color: var(--foreground);
    font-weight: 700;
    text-align: left;
    padding: 1rem;
}

.positions-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.positions-table tr:last-child td {
    border-bottom: none;
}

.positions-h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.alerta-tecnico {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
    margin-top: 1rem;
}

/* ================================
   POPUP PAGSEGURO
   ================================ */
#popupPlanos {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

#popupPlanos h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.container .termo p {
    text-align: justify;
}

/* ================================
   ASSINATURA - HERDADO DO SITE ANTIGO
   ================================ */
#assine {
  margin: 40px auto;
  max-width: 500px;
  background-color: var(--card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

#assine h2 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 2rem;
}

#assine p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

#cadastroForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}


#cadastroForm input[type="text"],
#cadastroForm input[type="tel"],
#cadastroForm input[type="email"],
#cadastroForm input[type="cpf"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: #f8f9fa;
}

#btnCadastrar {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

#btnCadastrar:hover {
  background-color: var(--primary-glow);
}

#btnPagSeguro {
  display: none;
  background-color: #0070ba;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  font-size: 1rem;
  cursor: pointer;
}

.termos-container {
  display: flex;
  align-items: center;
  font-size: 0.9em;
}

.termos-container a {
  color: var(--secondary);
  text-decoration: underline;
}

.exemplo-img img {
    display: block;
    margin: 20px auto;
    max-width: 75%;
    height: auto;
    border-radius: 8px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .exemplo-img img {
            max-width: 700px;
    }
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  text-align: justify;
}

.faq-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #222;
}

.faq-item {
  background: #f9f9f9;
  border-left: 4px solid #007BFF;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #007BFF;
}

.faq-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* CTA Final */
.faq-cta {
  text-align: center;
  background: #007BFF;
  color: white;
  padding: 30px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.faq-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.faq-cta p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn-assinar {
  display: inline-block;
  background: white;
  color: #007BFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.btn-assinar:hover {
  background: #0056b3;
  color: white;
}

.section-inteligencia {
  background: linear-gradient(135deg, hsla(142, 76%, 36%, 0.9) 0%, hsla(217, 91%, 60%, 0.8) 100%);
  color: #fff;
  opacity: 0.9;
  padding: 10px 20px;
  text-align: center;
  border-radius: 2px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.section-inteligencia h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.section-inteligencia h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #e0f8e9;
}

.section-inteligencia p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 1.2rem;
}

.section-inteligencia p.intro {
  font-size: 1.15rem;
  color: #ffffff;
}

.section-inteligencia p.highlight {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #00ff99;
  padding: 15px;
  border-radius: 6px;
  margin-top: 1.5rem;
  color: #e8fff3;
}

.section-inteligencia .cta-button {
  display: inline-block;
  margin-top: 30px;
  background: #00ff99;
  color: #003321;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 255, 153, 0.3);
}

.section-inteligencia .cta-button:hover {
  background: #00cc7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 255, 153, 0.4);
}

@media (max-width: 768px) {
  .section-inteligencia {
    padding: 40px 15px;
  }
  .section-inteligencia h2 {
    font-size: 1.8rem;
  }
  .section-inteligencia h3 {
    font-size: 1.4rem;
  }
  .section-inteligencia p {
    font-size: 1rem;
  }
}


/* ===== Carrossel de alertas ===== */
.telegram-preview {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf6 60%, #e9fff3 100%);
}

.telegram-preview .section-title {
  font-size: 2rem;
  color: #0f5132;
  margin-bottom: 10px;
}

.telegram-preview .section-description {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-images img {
  display: none;
  width: 100%;
  border-radius: 12px;
  transition: opacity 0.5s ease;
}

.carousel-images img.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(15, 81, 50, 0.8);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: rgba(0, 255, 153, 0.9);
  color: #003321;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  margin-top: 15px;
}

.carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: #00cc7a;
}

@media (max-width: 600px) {
  .carousel {
    max-width: 320px;
  }
  .carousel-btn {
    padding: 8px;
  }
}
