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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(45deg, #ff6b35, #ff8c42);
    --accent-gradient: linear-gradient(135deg, #1a1a1a, #2c3e50);
    --neon-blue: #00d4ff;
    --neon-purple: #8b5cf6;
    --neon-green: #10b981;
    --neon-pink: #ec4899;
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', 'Roboto', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Header Section */
.hero-section {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    animation: heroShimmer 8s ease-in-out infinite;
    z-index: 1;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #00d4ff, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
    filter: none;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
}

/* Pricing Section */
.pricing-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.1;
    z-index: -1;
}

.price-option {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.price-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.price-option:hover::before {
    left: 100%;
}

.price-option.active {
    background: var(--secondary-gradient);
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
    border: 1px solid var(--neon-blue);
}

.price-option.striked {
    opacity: 0.6;
    text-decoration: line-through;
    filter: grayscale(0.5);
}

.lote-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-main {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.price-striked {
    font-size: 1.8rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

/* CTA Button */
.btn-cta {
    background: var(--secondary-gradient);
    border: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 18px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    color: var(--text-primary);
}

.btn-cta:active {
    transform: translateY(-1px) scale(1.02);
}

/* Botões secundários */
.btn-secondary {
    background: var(--primary-gradient);
    border: 2px solid var(--neon-blue);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--neon-blue);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

/* Sections */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #00d4ff, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.2);
    filter: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Container moderno */
.modern-container {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.modern-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: -1;
}

/* Professionals Section */
.professionals-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.professionals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.professionals-section .container {
    position: relative;
    z-index: 2;
}

.professional-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.professional-card:hover::before {
    opacity: 0.1;
}

.professional-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.professional-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px auto;
    border: 4px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.professional-card:hover .professional-photo {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
    filter: grayscale(0%);
}

.professional-card h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.professional-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    opacity: 0.05;
    z-index: -1;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    color: var(--text-secondary);
}

/* Training Section */
.training-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.training-section .section-title {
    color: white;
}

.training-description {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.training-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Modules Section */
.modules-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.modules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.modules-section .container {
    position: relative;
    z-index: 2;
}

.module-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.module-card:hover::before {
    opacity: 0.1;
}

.module-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.module-card.bonus {
    background: var(--secondary-gradient);
    color: var(--text-primary);
    border-color: var(--neon-pink);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.module-card.bonus .module-icon {
    color: white;
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e0e0e0 !important;
    font-weight: 700;
}

.module-card.bonus h3 {
    color: white;
}

.module-card p {
    line-height: 1.6;
    text-align: justify;
}

/* Warning Section */
.warning-section {
    padding: 80px 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
}

.warning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.warning-section .container {
    position: relative;
    z-index: 2;
}

.warning-image {
    max-width: 300px;
    margin-bottom: 30px;
}

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

.warning-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Testimonials Photos Section */
.testimonials-photos-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.testimonials-photos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-photos-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-carousel {
    overflow: hidden;
    margin-top: 40px;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.testimonial-item {
    flex: 0 0 300px;
    margin-right: 20px;
}

.testimonial-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

/* Media Section */
.media-section {
    padding: 60px 0;
    background: var(--dark-bg);
    position: relative;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.media-section .container {
    position: relative;
    z-index: 2;
}

.media-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.media-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-neon);
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.video-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-video {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.testimonial-video:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-neon);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.review-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: var(--text-primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.review-item:hover::before {
    opacity: 0.05;
}

.review-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.review-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffc107;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-content {
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-actions {
    display: flex;
    gap: 10px;
}

.like-btn, .dislike-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-btn:hover {
    background: #28a745;
    color: white;
}

.dislike-btn:hover {
    background: #dc3545;
    color: white;
}

.nova-avaliacao {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefit-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.benefit-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}

.benefit-image-large {
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.benefit-image-large:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-neon);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.guarantee-section .container {
    position: relative;
    z-index: 2;
}

.guarantee-seal {
    max-width: 200px;
    transition: all 0.3s ease;
}

.guarantee-seal:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(40, 167, 69, 0.5));
}

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

.guarantee-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.guarantee-item h3 {
    color: var(--neon-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-explanation {
    background: rgba(255, 193, 7, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.guarantee-explanation h4 {
    color: #ffc107;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Objections Section */
.objections-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.objections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.objections-section .container {
    position: relative;
    z-index: 2;
}

.objection-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.objection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.objection-item:hover::before {
    opacity: 0.1;
}

.objection-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.objection-icon {
    font-size: 3.5rem;
    color: var(--neon-blue);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.objection-item:hover .objection-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.objection-item h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.objection-item p {
    line-height: 1.7;
    text-align: justify;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.accordion-button {
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--card-bg) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #000000 !important;
    border-radius: 15px;
    margin-bottom: 10px;
    text-align: left !important;
}

.accordion-button.collapsed {
    background: var(--card-bg) !important;
    color: #000000 !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gradient) !important;
    color: #ffffff !important;
    box-shadow: var(--shadow-neon);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25) !important;
    border-color: var(--neon-blue) !important;
}

.accordion-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 15px 15px;
}

/* Security Section */
.security-section {
    padding: 60px 0;
    background: var(--dark-bg);
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.security-section .container {
    position: relative;
    z-index: 2;
}

.security-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.security-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

/* Footer */
.footer-section {
    padding: 40px 0;
    background: transparent;
    color: var(--text-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    background: transparent;
    padding: 20px 0;
    margin-bottom: 20px;
}

.disclaimer p {
    line-height: 1.6;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Floating Widgets */
.floating-widgets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-widget {
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
}

.chatbot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.chatbot-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
}

/* Chatbot Container */
.chatbot-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    background: #007bff;
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.bot-message, .user-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
}

.bot-message {
    background: #f1f3f4;
    margin-right: auto;
}

.user-message {
    background: #007bff;
    color: white;
    margin-left: auto;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chatbot-input button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .professional-photo {
        width: 120px;
        height: 120px;
    }
    
    .chatbot-container {
        width: 300px;
        right: -20px;
    }
    
    .floating-widgets {
        right: 10px;
        bottom: 10px;
    }
    
    .testimonial-item {
        flex: 0 0 250px;
    }
    
    .carousel-track {
        animation: scroll 20s linear infinite;
    }
}

/* Estilos para o Sumário de Avaliações */
.avaliacoes-summary {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--text-primary);
}

.summary-geral {
    text-align: center;
    flex-shrink: 0; /* Impede que essa coluna encolha */
    min-width: 150px;
}

.media-geral-numero {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.media-geral-estrelas {
    font-size: 1.2rem;
    color: #ffc107;
    margin-top: -5px;
    margin-bottom: 5px;
}

.summary-geral p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.summary-breakdown {
    width: 100%;
}

.summary-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espaço entre as barras */
}

.summary-breakdown li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.summary-breakdown li > span:first-child {
    width: 70px; /* Alinha o texto "X Estrelas" */
    color: var(--text-secondary);
}

.rating-bar-container {
    flex-grow: 1; /* Faz a barra ocupar o espaço disponível */
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
}

.rating-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    border-radius: 20px;
    width: 0%; /* O JavaScript irá definir a largura */
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.rating-count {
    min-width: 25px; /* Alinha os números da contagem */
    text-align: right;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Responsividade para o sumário em telas pequenas */
@media (max-width: 768px) {
    .avaliacoes-summary {
        flex-direction: column;
        gap: 25px;
    }

    .summary-geral {
        min-width: auto;
    }
}

/* ================================================== */
/* ====== SOLUÇÃO DEFINITIVA PARA OVERFLOW ====== */
/* ================================================== */
/* Isso contém o carrossel de depoimentos, que é a causa
   do overflow, sem afetar o resto do layout. */
.testimonials-photos-section {
    overflow-x: hidden;

/* ================================================== */
/* ====== CORRE��ES ESPEC�FICAS PARA TELAS PEQUENAS ====== */
/* ================================================== */

/* For�a o body a n�o ter overflow horizontal em telas pequenas */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    /* Container principal */
    .container, .container-fluid {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    /* Se��o hero */
    .hero-section {
        overflow-x: hidden !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* T�tulo principal */
    .hero-title {
        font-size: 1.8rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Bot�o CTA */
    .btn-cta {
        font-size: 1.1rem !important;
        padding: 15px 30px !important;
        max-width: 100% !important;
        white-space: nowrap !important;
    }
    
    /* Carrossel de depoimentos */
    .testimonial-item {
        flex: 0 0 200px !important;
        margin-right: 10px !important;
    }
    
    /* Container de v�deo */
    .video-container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Todas as se��es */
    section {
        overflow-x: hidden !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-section {
        padding: 40px 10px !important;
    }
    
    .btn-cta {
        font-size: 1rem !important;
        padding: 12px 25px !important;
    }
    
    .testimonial-item {
        flex: 0 0 150px !important;
        margin-right: 8px !important;
    }
    
    section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ================================================== */
/* ====== ESTILOS MODERNOS PARA LANDING PAGE ====== */
/* ================================================== */

/* Importar fontes modernas */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Variáveis CSS para Landing Page */
:root {
    --landing-primary: #667eea;
    --landing-secondary: #764ba2;
    --landing-accent: #ff6b35;
    --landing-success: #28a745;
    --landing-dark: #1a1a2e;
    --landing-darker: #16213e;
    --landing-text: #ffffff;
    --landing-text-secondary: #b8c5d6;
    --landing-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --landing-gradient-hover: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    --landing-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --landing-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    --landing-glow: 0 0 20px rgba(102, 126, 234, 0.5);
}

/* Reset e base para Landing Page */
.landing-page {
    font-family: 'Poppins', sans-serif;
    background: var(--landing-dark);
    color: var(--landing-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section Landing */
.hero-section-landing {
    background: var(--landing-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-landing::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="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

.hero-title-landing {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--landing-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.hero-subtitle-landing {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--landing-text-secondary);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Grid */
.benefits-landing {
    animation: slideInUp 1s ease-out 0.4s both;
}

.benefit-item-landing {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--landing-shadow);
}

.benefit-item-landing:hover {
    transform: translateY(-10px);
    box-shadow: var(--landing-shadow-hover);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-item-landing i {
    font-size: 3rem;
    color: var(--landing-accent);
    margin-bottom: 1rem;
    display: block;
}

.benefit-item-landing h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--landing-text);
}

.benefit-item-landing p {
    color: var(--landing-text-secondary);
    font-size: 0.95rem;
}

/* Capture Section */
.capture-section {
    padding: 5rem 0;
    background: var(--landing-darker);
    position: relative;
}

.capture-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--landing-shadow);
    transition: all 0.3s ease;
}

.capture-form-container:hover {
    box-shadow: var(--landing-shadow-hover);
    transform: translateY(-5px);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--landing-text-secondary);
    font-size: 1.1rem;
}

/* Form Styles */
.capture-form .form-label {
    color: var(--landing-text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.capture-form .form-label i {
    color: var(--landing-accent);
    margin-right: 0.5rem;
}

.capture-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: var(--landing-text);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.capture-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--landing-accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    outline: none;
}

.capture-form .form-control::placeholder {
    color: var(--landing-text-secondary);
}

/* CTA Button Landing */
.btn-cta-landing {
    background: linear-gradient(45deg, var(--landing-accent), #ff8c42);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta-landing:hover::before {
    left: 100%;
}

.btn-cta-landing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff8c42, var(--landing-accent));
}

.btn-cta-landing:active {
    transform: translateY(-1px);
}

/* Results Preview */
.results-preview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: var(--landing-shadow);
}

.results-preview h4 {
    color: var(--landing-text);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.result-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.result-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.result-text {
    color: var(--landing-text-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.urgency-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Countdown Timer */
.countdown-timer {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.countdown-timer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-item label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Landing */
.testimonials-landing {
    padding: 5rem 0;
    background: var(--landing-dark);
}

.testimonials-landing h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-card-landing {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--landing-shadow);
    height: 100%;
}

.testimonial-card-landing:hover {
    transform: translateY(-10px);
    box-shadow: var(--landing-shadow-hover);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card-landing .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card-landing p {
    color: var(--landing-text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card-landing .author {
    color: var(--landing-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Security Section */
.security-landing {
    padding: 4rem 0;
    background: var(--landing-darker);
    text-align: center;
}

.security-landing h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--landing-text);
    margin-bottom: 2rem;
}

.security-badge {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Final CTA */
.final-cta {
    background: var(--landing-gradient);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.final-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--landing-text-secondary);
    margin-bottom: 2rem;
}

/* Footer Landing - REMOVIDO: Conflito com landing.php */

/* Disclaimer Text */
.disclaimer-text {
    color: var(--landing-text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.disclaimer-text i {
    color: var(--landing-success);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-landing {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-landing {
        font-size: 1.2rem;
    }
    
    .benefit-item-landing {
        margin-bottom: 2rem;
    }
    
    .capture-form-container {
        padding: 2rem;
    }
    
    .timer-display {
        gap: 1rem;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .timer-item span {
        font-size: 2rem;
    }
    
    .urgency-title {
        font-size: 2rem;
    }
    
    .testimonials-landing h3 {
        font-size: 2rem;
    }
    
    .final-cta h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-landing {
        font-size: 2rem;
    }
    
    .hero-subtitle-landing {
        font-size: 1rem;
    }
    
    .capture-form-container {
        padding: 1.5rem;
    }
    
    .btn-cta-landing {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .timer-display {
        flex-direction: column;
        align-items: center;
    }
    
    .timer-item {
        width: 100px;
    }
}

/* Animações de entrada */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efeitos de hover globais */
.landing-page * {
    transition: all 0.3s ease;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}
