/* ========================================
   LB GROUP - Landing Page Styles
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors - Dark Mode Suave */
    --bg-primary: #1E1E1E;
    --bg-secondary: #262626;
    --bg-tertiary: #2D2D2D;
    --bg-card: #333333;
    --bg-card-hover: #3D3D3D;
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    
    /* Accent */
    --accent-primary: #00FF88;
    --accent-secondary: #00CC6A;
    --accent-glow: rgba(0, 255, 136, 0.4);
    --accent-subtle: rgba(0, 255, 136, 0.15);
    
    /* Borders */
    --border-color: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(0, 255, 136, 0.25);
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
    --gradient-dark: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1E1E1E 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.2);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    overflow: hidden;
}

/* ========== SECTION BASE ========== */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: var(--accent-subtle);
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

.highlight {
    color: var(--accent-primary);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #1A1A1A;
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-glow {
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(0, 255, 136, 0.2);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
        var(--bg-primary);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-gradient-blur {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-logo-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease forwards;
    max-width: 100%;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

/* ========== TICKER ========== */
.ticker {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    overflow: hidden;
    width: 100%;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.ticker-content span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.ticker-dot {
    color: var(--accent-primary) !important;
    font-size: 1.5rem !important;
}

/* ========== COMUNIDADE ========== */
.comunidade {
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== ARSENAL ========== */
.arsenal {
    background: var(--bg-secondary);
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.arsenal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--transition-base);
}

.arsenal-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.arsenal-card.featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-color: var(--border-accent);
}

.arsenal-card.featured:hover {
    box-shadow: var(--shadow-glow);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    background: var(--accent-subtle);
    border-radius: 100px;
}

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

.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== PROVA SOCIAL ========== */
.prova-social {
    background: var(--bg-primary);
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: calc(20% - 16px);
    margin: 0 8px;
    flex-shrink: 0;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    max-height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.result-card:hover {
    transform: scale(1.02);
    border-color: var(--border-accent);
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* ========== MENTOR ========== */
.mentor {
    background: var(--bg-secondary);
}

.mentor-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mentor-image {
    flex-shrink: 0;
    position: relative;
}

.mentor-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.mentor-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.mentor-text {
    flex: 1;
}

.mentor-text blockquote {
    position: relative;
    padding-left: 32px;
    border-left: 3px solid var(--accent-primary);
}

.mentor-text blockquote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.mentor-text blockquote p:last-child {
    margin-bottom: 0;
}

.mentor-text blockquote strong {
    color: var(--text-primary);
}

.mentor-signature {
    margin-top: 32px;
    padding-left: 32px;
}

.signature-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.signature-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========== OFERTA ========== */
.oferta {
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
        var(--bg-primary);
    padding: 120px 0;
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-glow);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.offer-header {
    text-align: center;
    padding: 48px 40px 32px;
    border-bottom: 1px solid var(--border-color);
}

.offer-label {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-primary);
    background: var(--gradient-accent);
    border-radius: 100px;
    margin-bottom: 24px;
}

.offer-price {
    margin-top: 16px;
}

.price-old {
    display: block;
    font-size: 1.125rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 8px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-cents {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 8px;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 16px;
    margin-left: 4px;
}

.offer-body {
    padding: 32px 40px;
}

.offer-includes-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.offer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.check-icon {
    flex-shrink: 0;
    color: var(--accent-primary);
}

.offer-footer {
    padding: 32px 40px 48px;
    text-align: center;
}

.offer-footer .btn {
    width: 100%;
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-badges .badge svg {
    color: var(--accent-primary);
}

/* ========== FAQ ========== */
.faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--accent-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

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

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-tertiary);
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 40px;
    height: auto;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-links .divider {
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ========== MODAL / LIGHTBOX ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.modal-close:hover {
    color: var(--accent-primary);
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
}

.result-card img {
    cursor: zoom-in;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Data AOS Animation Fallback */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid .benefit-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .arsenal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .arsenal-grid .arsenal-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .mentor-content {
        gap: 48px;
    }
    
    .mentor-photo {
        max-width: 380px;
    }
    
    .carousel-slide {
        min-width: calc(28% - 16px);
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid .benefit-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .arsenal-grid {
        grid-template-columns: 1fr;
    }
    
    .arsenal-grid .arsenal-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .mentor-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .mentor-text blockquote {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--accent-primary);
        padding-top: 24px;
    }
    
    .mentor-signature {
        padding-left: 0;
    }
    
    .carousel-slide {
        min-width: calc(40% - 16px);
    }
    
    .offer-card {
        margin: 0;
        border-radius: var(--radius-lg);
    }
    
    .offer-header,
    .offer-body,
    .offer-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .price-value {
        font-size: 4rem;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .carousel-slide {
        min-width: calc(80% - 16px);
    }
    
    .hero-logo {
        width: 160px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .btn-large {
        padding: 18px 24px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefit-card,
    .arsenal-card {
        padding: 28px 24px;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .price-value {
        font-size: 3.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
}

