/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

/* Barra de Oferta Limitada */
.offer-bar {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(220, 53, 69, 0.6);
    }
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-icon {
    font-size: 1.2rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.offer-message {
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.countdown-timer {
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Courier New', monospace;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}

/* Ajuste do body para compensar a barra fixa */
body {
    padding-top: 60px;
}

/* Container responsivo */
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(250, 215, 123, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249, 167, 167, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
    font-style: italic;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Botões CTA */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(135deg,  #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 167, 167, 0.3);
    border: 2px solid rgba(245, 149, 149, 0.2);
    width: 100%;
    max-width: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.cta-button.bonus {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 1.1rem;
    padding: 18px 76px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.cta-button.pricing {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.cta-button.benefits {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
    width: 100%;
    max-width: 400px;
}

.cta-button.faq-final {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.cta-button.final {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover {
    box-shadow: 0 12px 30px rgba(249, 167, 167, 0.4);
    background: linear-gradient(135deg, #f59595 0%, #f08383 100%);
}

.cta-button.secondary:hover {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.cta-button.pricing:hover {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.cta-button.benefits:hover {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.cta-button.faq-final:hover {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.cta-button.final:hover {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

/* Seções gerais */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Seção Problem */
.problem {
    background: #f8f9fa;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-text {
    order: 2;
}

.problem-image {
    order: 1;
}

.problem-solution {
    order: 3;
    grid-column: 1 / -1;
    margin-top: 20px;
}

.problem-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.problem-description p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 16px;
}

.problem-solution {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 24px;
}

/* Seção Solution */
.solution {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.solution-content {
    text-align: center;
}

.solution-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kit-mockup {
    margin: 40px 0;
}

.mockup-img {
    max-width: 40%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Seção Differentials */
.differentials {
    background: #f8f9fa;
}

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

.differential-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.differential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b, #10b981, #ef4444);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.differential-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.differential-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 3px solid;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Cores específicas para cada ícone */
.differential-item:nth-child(1) .differential-icon {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.differential-item:nth-child(2) .differential-icon {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.differential-item:nth-child(3) .differential-icon {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.differential-item:nth-child(4) .differential-icon {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.differential-item:nth-child(5) .differential-icon {
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.differential-item:nth-child(6) .differential-icon {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.differential-item p {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 10px;
}

/* Efeitos hover nos ícones */
.differential-item:hover .differential-icon {
    transform: scale(1.1) rotate(5deg);
}

.differential-item:nth-child(1):hover .differential-icon {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.differential-item:nth-child(2):hover .differential-icon {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.differential-item:nth-child(3):hover .differential-icon {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.differential-item:nth-child(4):hover .differential-icon {
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.differential-item:nth-child(5):hover .differential-icon {
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.differential-item:nth-child(6):hover .differential-icon {
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

/* Seção Kit Contents */
.kit-contents {
    background: #f8f9fa;
}

/* Layout Kit Contents - Centralizado */
.contents-grid-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
}

/* Galeria de Destaque */
.gallery-section {
    margin: 60px 0;
    text-align: center;
}

.gallery-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(34, 197, 94, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Carrossel Mobile - Oculto por padrão */
.carousel-mobile {
    display: none;
}

/* Carrossel de Imagens */
.carousel-container {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(34, 197, 94, 0.1);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.indicator.active {
    background: #10b981;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.indicator:hover {
    background: rgba(16, 185, 129, 0.7);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(34, 197, 94, 0.1);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.indicator.active {
    background: #10b981;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.indicator:hover {
    background: rgba(16, 185, 129, 0.7);
}

.kit-contents::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2300ff00" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* CSS removido - usando o novo layout flexbox */

.content-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-item:hover::before {
    opacity: 1;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

.content-item i {
    font-size: 2.5rem;
    color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 15px;
    border-radius: 14px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.content-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.content-item-spanning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    grid-column: 1 / -1;
    margin-top: 10px;
}

.content-item-spanning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-item-spanning:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

.content-item-spanning:hover::before {
    opacity: 1;
}

.content-item-spanning i {
    font-size: 2.5rem;
    color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 15px;
    border-radius: 14px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.content-item-spanning:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.content-item-spanning span {
    font-weight: 700;
    color: #374151;
    font-size: 1.4rem;
    line-height: 1.4;
    font-style: italic;
}

.contents-note {
    text-align: center;
    font-size: 1.2rem;
    color: #059669;
    margin-top: 50px;
    font-weight: 600;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 16px;
    border: 2px solid rgba(5, 150, 105, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Seção Bonus */
.bonus {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

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

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.bonus-grid {
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
    min-height: 100px;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.bonus-item i {
    font-size: 2.2rem;
    color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 15px;
    border-radius: 14px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-item span {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.5;
    flex: 1;
    padding-top: 0px;
    display: flex;
    align-items: center;
}

.bonus-img {
    max-width: 86%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Seção Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials::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="hearts" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%230ea5e9" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

    .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(148, 163, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #0284c7, #0369a1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial:hover::before {
    opacity: 1;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.1);
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover .testimonial-photo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.testimonial-header h4 {
    color: #1e40af;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.testimonial p {
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Empilhamento de Valor */
.value-stacking {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px;
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.value-item:last-of-type {
    border-bottom: none;
}

.value-label {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
}

.value-price {
    font-weight: 700;
    color: #059669;
    font-size: 1.1rem;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 15px 0;
    border-top: 2px solid rgba(16, 185, 129, 0.3);
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.total-label {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.3rem;
}

.total-price {
    font-weight: 900;
    color: #059669;
    font-size: 1.5rem;
    text-decoration: line-through;
}

.investment-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    margin-top: 15px;
}

.investment-label {
    font-weight: 700;
    color: #92400e;
    font-size: 1.2rem;
}

.investment-price {
    font-weight: 900;
    color: #dc2626;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.pricing::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="25" cy="25" r="1" fill="%2316a34a" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2316a34a" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%2316a34a" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="%2316a34a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pricing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #fef2f2;
}

.discount-badge {
    margin-bottom: 30px;
}

.discount-text {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: blink-red 2s infinite;
}

@keyframes blink-red {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
    }
    25%, 75% {
        opacity: 1;
        transform: scale(1.05);
        background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
        box-shadow: 0 15px 35px rgba(255, 0, 0, 0.6);
    }
}


.pricing-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.original-price {
    text-decoration: line-through;
    color: #dc3545;
    font-weight: 600;
}

.savings-highlight {
    margin: 20px 0;
}

.savings-text {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-highlight {
    margin: 40px 0;
    position: relative;
}


.price {
    font-size: 5rem;
    font-weight: 900;
    color: #dc2626;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: price-glow 3s ease-in-out infinite;
}

@keyframes price-glow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1), 0 0 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1), 0 0 30px rgba(220, 38, 38, 0.6);
    }
}

.price-note {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 10px;
}

.payment-clarity {
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.payment-clarity p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #059669;
    text-align: center;
    line-height: 1.4;
}

.guarantee-box, .urgency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 3px solid;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.guarantee-box {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.guarantee-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.urgency-box {
    border-color: rgba(239, 68, 68, 0.3);
    animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        border-color: rgba(239, 68, 68, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.6);
        box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
    }
}

.guarantee-icon, .urgency-icon {
    font-size: 2rem;
    padding: 10px;
    border-radius: 12px;
}

.guarantee-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.urgency-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    animation: clock-spin 2s infinite;
}



.guarantee-text, .urgency-text {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
}

.countdown-inline {
    color: #dc2626;
    font-weight: 800;
    font-size: 1.2rem;
    animation: countdown-blink 1s infinite;
}

@keyframes countdown-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}

.cta-section {
    margin-top: 50px;
    position: relative;
}


.cta-subtext {
    margin-top: 25px;
    color: #059669;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



/* Seção Delivery */
.delivery {
    background: #f8f9fa;
}

.delivery::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="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%236b7280" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.delivery-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.delivery-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delivery-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #1e40af);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delivery-feature:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 15px;
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    min-width: 60px;
    height: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.delivery-feature:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.delivery-feature p {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.delivery-guarantee {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(148, 163, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.delivery-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #b45309);
    opacity: 0.8;
}

.delivery-guarantee p {
    font-size: 1.2rem;
    color: #f59e0b;
    font-weight: 700;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Seção Benefits */
.benefits {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.benefits-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    color: #28a745;
}

.benefit-item p {
    font-weight: 500;
    color: #495057;
}

.benefits-cta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-note {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Seção Guarantee */
.guarantee {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.guarantee::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="hearts" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15 5 C15 5, 5 15, 15 25 C25 15, 15 5, 15 5 Z" fill="%230ea5e9" opacity="0.1"/><circle cx="15" cy="15" r="2" fill="%230ea5e9" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-text {

    position: relative;
    overflow: hidden;
}

.guarantee-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guarantee-text:hover::before {
    opacity: 1;
}

.guarantee-description {
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
}

.guarantee-description::before {
    content: '🙏';
    margin-right: 10px;
    font-size: 1.5rem;
}

.guarantee-offer {
    font-size: 1.2rem;
    color: #059669;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
}

.guarantee-offer::before {
    content: '✝️';
    margin-right: 10px;
    font-size: 1.3rem;
}

.guarantee-belief {
    font-size: 1.2rem;
    color: #dc2626;
    margin-bottom: 35px;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
}

.guarantee-belief::before {
    content: '❤️';
    margin-right: 10px;
    font-size: 1.3rem;
}

.guarantee-verse {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid #f59e0b;
    font-style: italic;
    color: #000000;
    margin: 40px 0;
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
}

.guarantee-verse::before {
    content: '📖';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

.guarantee-verse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #eab308, #ca8a04);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guarantee-verse:hover::after {
    opacity: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Seção Security */
.security {
    background: #f8f9fa;
}

.security-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.security-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.security-feature {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.security-feature:hover {
    transform: translateY(-3px);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.security-feature p {
    font-weight: 500;
    color: #495057;
}


.security-trust {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 30px;
}

/* Seção FAQ */
.faq {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin: 40px 0;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #3b82f6;
}

.faq-question h3 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 300px;
    opacity: 1;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-note {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.faq-cta-text {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 30px;
}

/* Seção Final CTA */
.final-cta {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.final-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.final-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

    .final-text {
        text-align: left;
}

    .final-text .section-title {
        text-align: left;
    margin-bottom: 20px;
}

.final-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Footer */
.legal-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.copyright {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-description {
    color: #adb5bd;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    color: #adb5bd;
}

.contact-separator {
    color: #6c757d;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .offer-message {
        font-size: 0.9rem;
    }
    
.countdown-timer {
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
        margin-top: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .problem-text {
        order: 1;
    }
    
    .problem-image {
        order: 2;
        margin: 20px 0;
    }
    
    .problem-solution {
        order: 3;
        grid-column: unset;
        margin-top: 0;
    }
    
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .bonus-item {
        padding: 25px 20px;
        min-height: 90px;
        align-items: center;
    }
    
    .bonus-item i {
        font-size: 2rem;
        padding: 12px;
        min-width: 55px;
        margin-top: 0px;
    }
    
    .bonus-item span {
        font-size: 1rem;
        padding-top: 0px;
    }
    
    .final-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .final-text .section-title {
        text-align: center;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-button.pricing {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .contents-grid-centered {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 30px auto;
    }
    
    /* Ocultar galeria no mobile */
    .gallery-section {
        display: none;
    }
    
    /* Mostrar carrossel no mobile */
    .carousel-mobile {
        display: block;
        margin: 40px 0;
    }
    
    .benefits-cta {
        margin-top: 40px;
        max-width: 100%;
    }
    
    .cta-button.benefits {
        max-width: 100%;
        width: 100%;
    }
    
    .bonus-img {
        max-width: 100%;
        width: 100%;
    }
    
    .carousel-slides {
        height: 250px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-features {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    
    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .mockup-img {
        max-width: 75%;
    }
    
    .differential-item,
    .content-item {
        padding: 20px 15px;
        gap: 20px;
        min-height: 50px;
    }
    
    .content-item i {
        font-size: 2rem;
        padding: 12px;
        min-width: 60px;
    }
    
    .content-item span {
        font-size: 1.1rem;
    }
    
    .content-item-spanning {
        padding: 20px 15px;
        gap: 15px;
        min-height: 50px;
    }
    
    .content-item-spanning i {
        font-size: 2rem;
        padding: 12px;
        min-width: 60px;
    }
    
    .content-item-spanning span {
        font-size: 1.2rem;
    }
    
    .bonus-item,
    .testimonial,
    .delivery-feature,
    .benefit-item,
    .security-feature {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question-content {
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .payment-clarity {
        padding: 10px 15px;
        margin-top: 12px;
    }
    
    .payment-clarity p {
        font-size: 0.9rem;
    }
    
    .testimonial-photo {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-header {
        gap: 15px;
    }
    
    .testimonial-header h4 {
        font-size: 1.1rem;
    }
}