/* =============================================
   SPY ADS WEBSITE - NEW DESIGN (Based on Competitor)
   ============================================= */

/* =============================================
   VARIABLES & ROOT
   ============================================= */

:root {
    /* Primary Colors - Spy Ads Brand (MANTENDO NOSSAS CORES) */
    --primary: #0047AB;
    --primary-light: #60A5FA;
    --primary-lighter: #93C5FD;
    --primary-dark: #003380;
    --secondary: #06B6D4;
    --accent: #3B82F6;

    /* Gradient - Azul (NÃO ciano do concorrente) */
    --gradient-primary: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    --gradient-text: linear-gradient(90deg, #60A5FA 0%, #06B6D4 100%);
    --gradient-button: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    --gradient-card: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);

    /* Background */
    --bg-dark: #0a0a0a;
    --bg-section: #0f0f0f;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* Status */
    --success: #22c55e;
    --warning: #f59e0b;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', 'Poppins', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;

    /* Effects */
    --glow-primary: 0 0 40px rgba(59, 130, 246, 0.3);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: auto;
}

/* Garantir que imagens não causem overflow */
img:not(.slide-track img) {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* =============================================
   HEADER
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-subtle);
    overflow-x: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.logo img {
    height: 55px;
    width: auto;
    max-width: 100%;
}

.btn-chrome {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-button);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: var(--glow-primary);
    flex-shrink: 0;
    min-width: 0;
    white-space: nowrap;
}

.btn-chrome:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.5);
}

.btn-chrome i {
    font-size: 18px;
}

/* Controle de texto responsivo */
.btn-text-short {
    display: none;
}

.btn-text-full {
    display: inline;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at center bottom, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        var(--bg-dark);
    z-index: -1;
}

/* Texto animado */
.animated-text-container {
    margin-bottom: 30px;
}

.animated-text {
    font-size: 18px;
    font-weight: 500;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    color: var(--primary-light);
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* PLACEHOLDERS - Estilo visual para indicar onde as imagens vão */
.hero-image-placeholder,
.toolbar-placeholder,
.main-screenshot-placeholder,
.floating-element,
.testimonial-image-placeholder,
.guarantee-image-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    text-align: center;
}

.placeholder-content i {
    font-size: 48px;
    color: var(--primary-light);
    opacity: 0.5;
}

.placeholder-content span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
}

.placeholder-content small {
    font-size: 12px;
    color: var(--text-muted);
}

.placeholder-content.small {
    padding: 15px;
}

.placeholder-content.small i {
    font-size: 24px;
}

.placeholder-content.small span {
    font-size: 11px;
}

/* Hero image placeholder */
.hero-image-placeholder {
    width: 100%;
    max-width: 800px;
    height: 350px;
    margin: 0 auto 30px;
}

/* Toolbar placeholder */
.toolbar-placeholder {
    width: 100%;
    max-width: 900px;
    height: 100px;
    margin: 0 auto 40px;
}

/* IMAGENS REAIS DO HERO */
.hero-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 20px;
    animation: float-slow 6s ease-in-out infinite;
}

.binoculo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.3));
}

.toolbar-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.toolbar-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 10px 40px rgba(59, 130, 246, 0.2));
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--gradient-button);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: var(--glow-primary);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 80px rgba(59, 130, 246, 0.6);
}

/* CONTADORES DE MÉTRICAS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.stat-number i {
    color: var(--warning);
    font-size: 28px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VIDEO DENTRO DO HERO */
.hero-video-container {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-button);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--glow-primary);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.6);
}

.play-button i {
    font-size: 28px;
    color: var(--text-primary);
    margin-left: 5px;
}

/* Mux Player Styles */
mux-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    --media-object-fit: contain;
    
    /* Personalização de cores da marca */
    --media-primary-color: var(--primary);
    --media-accent-color: var(--primary-light);
    
    /* Remover máscara escura no hover - backdrop transparente */
    --controls-backdrop-color: transparent;
    
    /* Mostrar APENAS Play/Pause e Fullscreen */
    --play-button: block;
    --fullscreen-button: block;
    
    /* Ocultar TODOS os outros controles (VOLUME, TEMPO, ETC) */
    --seek-backward-button: none !important;
    --seek-forward-button: none !important;
    --mute-button: none !important;
    --captions-button: none !important;
    --airplay-button: none !important;
    --pip-button: none !important;
    --cast-button: none !important;
    --playback-rate-button: none !important;
    --volume-range: none !important;
    --volume-control: none !important;
    --time-range: none !important;
    --time-display: none !important;
    --duration-display: none !important;
    --current-time-display: none !important;
    
    /* Ocultar menu de qualidade (três pontinhos) */
    --rendition-menu-button: none !important;
}

/* Remover qualquer overlay/máscara escura no hover */
mux-player:hover {
    --controls-backdrop-color: transparent !important;
}

/* Garantir que não apareça máscara ao passar o mouse */
mux-player::part(center) {
    background: transparent !important;
}

mux-player::part(bottom) {
    background: transparent !important;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

/* =============================================
   BENEFITS SECTION
   ============================================= */

/* =============================================
   LOGOS TICKER
   ============================================= */

/* =============================================
   LOGOS TICKER (Platform Integration)
   ============================================= */

.margin-top-4 {
    margin-top: 0;
}

#integracoes {
    background: transparent;
    padding: 0;
    overflow: hidden;
    position: relative;
    border: none;
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    background: transparent;
}

.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    align-items: center;
    max-width: none;
}

.slide-track img {
    height: 70px;
    width: auto;
    margin: 0 100px 0 0;
    /* Margem apenas na direita para precisão */
    opacity: 1;
    transition: transform 0.3s ease;
    filter: none;
    flex-shrink: 0;
    /* Impede encolhimento */
}

.slide-track img:last-child {
    margin-right: 0;
    /* Segurança, embora irrelevante no loop infinito visual */
}

.slide-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

/* =============================================
   BENEFITS SECTION
   ============================================= */

.benefits {
    padding: var(--section-padding);
    background: var(--bg-section);
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--text-primary);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   FILTERS SECTION
   ============================================= */

.filters-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
}

.filters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.filters-section .container {
    position: relative;
    z-index: 1;
}

.filters-showcase {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.main-screenshot-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Ficou atrás */
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.main-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-element {
    position: absolute;
    width: 180px;
    height: 120px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
    /* Ficou na frente */
}

.floating-1 {
    top: -50px;
    left: -50px;
    animation-delay: 0s;
    width: 240px;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow: visible;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.floating-1 .floating-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-2 {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    animation-delay: 1s;
    width: 280px;
    height: auto;
    background: transparent;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow: visible;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.floating-2 .floating-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-3 {
    bottom: -30px;
    left: 5%;
    width: 260px;
    height: auto;
    animation-delay: 2s;
    background: transparent;
    /* Fundo transparente */
    border: none;
    box-shadow: none;
    /* Remove sombra do container pai */
    border-radius: 0;
    overflow: visible;
    /* Permite que o texto fique fora */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza o texto */
    gap: 10px;
    /* Espaço entre imagem e texto */
}

/* Container específico para a imagem ter a sombra e borda */
.floating-3 .floating-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    /* Sombra vai na imagem agora */
}

.floating-label {
    width: 100%;
    padding: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    /* Texto um pouco mais suave */
    background: transparent;
    border: none;
    font-family: var(--font-body);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Sombra para leitura */
}

.floating-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials {
    padding: var(--section-padding);
    background: var(--bg-section);
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, var(--bg-card) 100%);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--primary-light);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    background: #1a1a1a;
}

.testimonial-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--warning);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
}

/* =============================================
   PRICING SECTION
   ============================================= */

.pricing {
    padding: var(--section-padding);
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.pricing-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.15) 0%, var(--bg-card) 100%);
    border-color: var(--primary-light);
    box-shadow: var(--glow-primary);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-button);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-full);
}

.plan-name {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.plan-name b {
    font-weight: 600;
    color: var(--primary-light);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 20px;
    color: var(--text-secondary);
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-secondary);
}

.plan-equivalent {
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    margin-bottom: 20px;
}

.btn-plan:hover {
    background: var(--primary-light);
    color: var(--bg-dark);
}

.btn-plan-featured {
    background: var(--gradient-button);
    border-color: transparent;
    color: var(--text-primary);
}

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

.plan-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.plan-features li i {
    color: var(--primary-light);
    font-size: 12px;
}

.plan-features li strong {
    color: var(--text-primary);
}

/* =============================================
   GUARANTEE SECTION
   ============================================= */

.guarantee {
    padding: 80px 0;
    background: var(--bg-section);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
}

@media (max-width: 768px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.guarantee-image {
    width: 180px;
    flex-shrink: 0;
}

.guarantee-seal-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.guarantee-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.guarantee-text p {
    font-size: 15px;
    line-height: 1.8;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq {
    padding: var(--section-padding);
    background: var(--bg-dark);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

.faq-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.faq-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.faq-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-contact p {
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-button);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

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

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question i:first-child {
    color: var(--primary-light);
    font-size: 18px;
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition-normal);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    padding-left: 53px;
    font-size: 14px;
    line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    padding: 60px 0 30px;
    background: var(--bg-section);
    border-top: var(--border-subtle);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* =============================================
   RESPONSIVE - TABLET (max 1024px)
   ============================================= */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: clamp(28px, 4vw, 42px);
    }

    .hero-image {
        max-width: 500px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 28px;
    }

    .btn-cta {
        padding: 16px 36px;
        font-size: 15px;
    }

    .filters-showcase {
        max-width: 100%;
    }

    .floating-element {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        max-width: 600px;
    }

    .footer-links {
        gap: 40px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================= */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* HEADER MOBILE */
    .header {
        padding: 12px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .header-content {
        padding: 0;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo img {
        height: 35px;
        max-width: 100%;
        width: auto;
    }

    .btn-chrome {
        padding: 8px 12px;
        font-size: 11px;
        gap: 5px;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: auto;
    }

    .btn-chrome i {
        font-size: 14px;
    }

    .btn-text-full {
        display: none;
    }

    .btn-text-short {
        display: inline;
    }

    /* HERO MOBILE */
    .hero {
        min-height: auto;
        padding: 100px 16px 50px;
    }

    .animated-text {
        font-size: 14px;
    }

    .hero-title {
        font-size: 26px;
        max-width: 100%;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .toolbar-image {
        margin-bottom: 30px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
        margin: 30px 0;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-number i {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* LOGOS TICKER MOBILE */
    #integracoes {
        padding: 30px 0;
    }

    .slide-track img {
        height: 40px;
        margin: 0 20px;
    }

    /* BENEFITS MOBILE */
    .benefits {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .benefits-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    /* FILTERS SECTION MOBILE */
    .filters-section {
        padding: 60px 0;
    }

    .main-screenshot-container {
        border-radius: var(--radius-md);
    }

    /* TESTIMONIALS MOBILE */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* PRICING MOBILE */
    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        margin-top: 30px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .plan-name {
        font-size: 18px;
    }

    .price-value {
        font-size: 42px;
    }

    .price-period {
        font-size: 14px;
    }

    .savings-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .feature-item {
        font-size: 13px;
    }

    .btn-plan {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* GUARANTEE MOBILE */
    .guarantee {
        padding: 60px 0;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .guarantee-seal-img,
    .guarantee-image-placeholder {
        width: 100px;
        height: auto;
    }

    .guarantee h2 {
        font-size: 22px;
    }

    .guarantee p {
        font-size: 14px;
    }

    /* FAQ MOBILE */
    .faq {
        padding: 60px 0;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 14px;
        gap: 12px;
    }

    .faq-question i:first-child {
        font-size: 16px;
        min-width: 24px;
    }

    .faq-arrow {
        font-size: 12px;
    }

    .faq-answer {
        padding: 0 16px 18px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* FOOTER MOBILE */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column a {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* PAGE HEADER (Legal pages) */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 14px;
    }

    /* LEGAL CONTENT */
    .legal-content {
        padding: 40px 0;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ============================================= */

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 9px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-description {
        font-size: 14px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .price-value {
        font-size: 36px;
    }

    .testimonial-card {
        padding: 20px 16px;
    }

    .faq-question {
        font-size: 13px;
    }

    .footer-logo {
        height: 35px;
    }
}