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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #0A0A0A;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge i {
    color: #FF3366;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

.hero-title .title-main {
    display: block;
    background: linear-gradient(45deg, #FF3366, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.hero-title .price-highlight {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
}

.hero-title .promo-tag {
    background: linear-gradient(45deg, #FF3366, #FFD700);
    color: #000000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    animation: pulse 2s infinite;
    display: inline-block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, #00FF88, #00CC6A);
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.4rem;
}

/* Botão da Oferta Melhorado */
.offer-section .cta-button.large {
    padding: 30px 60px;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-section .cta-button.large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6);
}

.offer-section .cta-button.large::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 ease;
}

.offer-section .cta-button.large:hover::before {
    left: 100%;
}

/* Informações de Garantia */
.guarantee-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 150px;
}

.guarantee-item i {
    font-size: 2rem;
    color: #00FF88;
    margin-bottom: 5px;
}

.guarantee-item span {
    font-size: 14px;
    color: #CCCCCC;
    font-weight: 600;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-item i {
    color: #4ecdc4;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-social-container {
    text-align: center;
    max-width: 500px;
}

.proof-social-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-social-title i {
    color: #4ecdc4;
    font-size: 1.5rem;
}

.proof-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.proof-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 15px;
}

.proof-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.proof-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.proof-image-card:hover .proof-image {
    filter: brightness(1.2) contrast(1.2);
}

.proof-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.proof-image-card:hover .proof-overlay {
    opacity: 1;
}

.proof-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.proof-badge i {
    font-size: 1.5rem;
    color: #4ecdc4;
}

.proof-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #4ecdc4;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Efeitos de brilho para as imagens */
.proof-image-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d, #4ecdc4);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proof-image-card:hover::before {
    opacity: 1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    }
    to {
        box-shadow: 0 0 40px rgba(78, 205, 196, 0.8);
    }
}

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

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #111111;
    color: #FFFFFF;
}

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

.problem-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.2;
}

.problem-text {
    font-size: 1.3rem;
    color: #CCCCCC;
    margin-bottom: 50px;
}

.highlight-text {
    color: #FFFFFF;
    background: linear-gradient(45deg, #FF3366, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 50px 40px;
    border-radius: 25px;
    min-width: 250px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparison-item.negative {
    background: rgba(255, 51, 102, 0.1);
    color: #FF3366;
    border: 1px solid #FF3366;
}

.comparison-item.positive {
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
    border: 1px solid #00FF88;
}

.comparison-item i {
    font-size: 3rem;
}

.comparison-image {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.comparison-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-item:hover .comparison-image::before {
    opacity: 1;
}

.comparison-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 25px;
    border: 6px solid;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1) contrast(1.1);
}

.comparison-item.negative .comparison-img {
    border-color: #FF3366;
}

.comparison-item.positive .comparison-img {
    border-color: #00FF88;
}

.comparison-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    filter: brightness(1.2) contrast(1.2);
}

.comparison-item:hover .comparison-img {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.comparison-item.negative:hover {
    background: rgba(255, 51, 102, 0.15);
    transform: translateY(-5px);
}

.comparison-item.positive:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateY(-5px);
}

.comparison-item span {
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.vs {
    font-size: 1.5rem;
    font-weight: 900;
    color: #CCCCCC;
    background: #fff;
    padding: 15px 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.testimonials-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 1000 1000"><defs><radialGradient id="e" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%234A90E2" stop-opacity="0.05"/><stop offset="100%" stop-color="%234A90E2" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="120" fill="url(%23e)"/><circle cx="700" cy="400" r="100" fill="url(%23e)"/><circle cx="200" cy="700" r="80" fill="url(%23e)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #CCCCCC;
    font-weight: 500;
    margin-bottom: 40px;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.testimonials-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(74, 144, 226, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    min-width: 120px;
}

.testimonials-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #4A90E2;
    margin-bottom: 5px;
    text-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.testimonials-stats .stat-label {
    font-size: 0.9rem;
    color: #CCCCCC;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #00FF88, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(74, 144, 226, 0.15);
}

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

.testimonial-image {
    position: relative;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    height: 220px;
}

.testimonial-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.05);
}

.testimonial-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(74, 144, 226, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.testimonial-badge {
    display: none;
}

.testimonial-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    margin-bottom: 25px;
    flex: 1;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FFFFFF;
    font-style: italic;
    text-align: center;
}

.testimonial-text strong {
    color: #4A90E2;
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-name {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.8rem;
    color: #CCCCCC;
}

.author-result {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 144, 226, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.author-result i {
    color: #4A90E2;
    font-size: 1rem;
}

.author-result span {
    font-size: 0.9rem;
    color: #4A90E2;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.cta-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    color: #CCCCCC;
    font-weight: 600;
    background: rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px 30px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    display: inline-flex;
}

.cta-text i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* More Testimonials Section */
.more-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.more-testimonials-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 1000 1000"><defs><radialGradient id="c" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23FFD700" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FFD700" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23c)"/><circle cx="800" cy="200" r="120" fill="url(%23c)"/><circle cx="500" cy="700" r="90" fill="url(%23c)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #CCCCCC;
    margin-bottom: 40px;
    font-weight: 500;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.results-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
}

.results-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.results-stats .stat-label {
    font-size: 0.9rem;
    color: #CCCCCC;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-slide {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    padding: 0;
    text-align: left;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #00FF88, #FF3366);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

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

.testimonial-image {
    position: relative;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    height: 200px;
}

.testimonial-slide .testimonial-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.05);
}

/* Ajuste específico para o card 2 (segunda imagem) - parte superior esquerda com receita */
.testimonial-slide:nth-child(2) .testimonial-img {
    object-position: top left;
    height: 200px;
}

/* Ajuste específico para o card 3 (terceira imagem) - lateral direita */
.testimonial-slide:nth-child(3) .testimonial-img {
    object-position: right center;
    height: 200px;
}

.image-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    justify-content: center;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-style: italic;
    text-align: center;
    flex: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-name {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1rem;
}

.author-role {
    font-size: 0.8rem;
    color: #CCCCCC;
}

.author-result {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.author-result i {
    color: #00FF88;
    font-size: 0.9rem;
}

.author-result span {
    font-size: 0.8rem;
    color: #00FF88;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.cta-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    color: #CCCCCC;
    font-weight: 600;
    background: rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px 30px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: inline-flex;
}

.cta-text i {
    color: #00FF88;
    font-size: 1.5rem;
}




/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #0A0A0A;
    color: #FFFFFF;
}

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

.solution-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-subtitle {
    font-size: 1.3rem;
    color: #CCCCCC;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.solution-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

.solution-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #4A90E2, #00FF88);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.solution-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.solution-content p {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.solution-highlight {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.solution-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3366, #FFD700, #00FF88);
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.offer-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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23FF3366" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FF3366" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

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

/* Badge de Urgência */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #FF3366, #FFD700);
    color: #000000;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

/* Título da Oferta */
.offer-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.offer-subtitle {
    font-size: 1.3rem;
    color: #CCCCCC;
    margin-bottom: 50px;
    font-weight: 500;
}

.price-comparison {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.price-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3366, #FFD700, #00FF88);
}

.old-price {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.old-price .price {
    text-decoration: line-through;
    font-weight: 600;
    color: #FF3366;
    font-size: 1.8rem;
}

/* Badge de Desconto */
.discount-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF3366, #FFD700);
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

/* Opções de Preço */
.price-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-main {
    text-align: center;
}

.price-value {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #00FF88;
    text-shadow: 0 4px 8px rgba(0, 255, 136, 0.3);
    line-height: 1;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-top: 5px;
}

.price-divider {
    font-size: 1.2rem;
    color: #CCCCCC;
    font-weight: 600;
}

.price-installments {
    text-align: center;
}

.installment-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.installment-total {
    display: block;
    font-size: 1rem;
    color: #CCCCCC;
    margin-top: 5px;
}

.installments {
    display: block;
    font-size: 1.2rem;
    opacity: 0.9;
}


/* Target Audience Section */
.audience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.audience-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 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%2300FF88" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300FF88" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="120" fill="url(%23b)"/><circle cx="700" cy="400" r="100" fill="url(%23b)"/><circle cx="200" cy="600" r="80" fill="url(%23b)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.audience-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.audience-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-subtitle {
    font-size: 1.3rem;
    color: #CCCCCC;
    font-weight: 500;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.audience-item {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00FF88, #FFD700, #FF3366);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

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

.audience-icon {
    text-align: center;
    margin-bottom: 25px;
}

.audience-icon i {
    font-size: 3.5rem;
    color: #00FF88;
    background: linear-gradient(45deg, #00FF88, #00CC6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 255, 136, 0.3));
}

.audience-content {
    text-align: center;
    flex: 1;
}

.audience-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.audience-content p {
    color: #CCCCCC;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.audience-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.audience-benefit i {
    font-size: 1rem;
    color: #00FF88;
}

.audience-benefit span {
    font-size: 0.9rem;
    color: #00FF88;
    font-weight: 600;
}

.audience-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.audience-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.audience-highlight i {
    font-size: 3rem;
    color: #00FF88;
}

.highlight-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.highlight-text p {
    font-size: 1.2rem;
    color: #00FF88;
    font-weight: 600;
    margin: 0;
}

.audience-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #CCCCCC;
    font-weight: 500;
}

.audience-guarantee i {
    font-size: 1.5rem;
    color: #00FF88;
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-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 1000 1000"><defs><radialGradient id="d" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%234A90E2" stop-opacity="0.1"/><stop offset="100%" stop-color="%234A90E2" stop-opacity="0"/></radialGradient></defs><circle cx="400" cy="200" r="100" fill="url(%23d)"/><circle cx="600" cy="600" r="120" fill="url(%23d)"/><circle cx="200" cy="800" r="80" fill="url(%23d)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #CCCCCC;
    font-weight: 500;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    color: #FFFFFF;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #00FF88, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

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

.faq-item.active {
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
}

.faq-question:hover {
    background: rgba(74, 144, 226, 0.05);
}

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

.question-icon {
    font-size: 1.5rem;
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
}

.chevron-icon {
    font-size: 1.2rem;
    color: #4A90E2;
    transition: transform 0.3s ease;
    background: rgba(74, 144, 226, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .chevron-icon {
    transform: rotate(180deg);
    background: rgba(74, 144, 226, 0.2);
}

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

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

.answer-content {
    padding: 0 30px 30px;
}

.answer-content p {
    color: #CCCCCC;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.answer-content strong {
    color: #4A90E2;
    font-weight: 700;
}

.answer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(74, 144, 226, 0.15);
    transform: translateX(5px);
}

.benefit-item i {
    color: #4A90E2;
    font-size: 0.9rem;
}

.benefit-item span {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.cta-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    color: #CCCCCC;
    font-weight: 600;
    background: rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px 30px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    display: inline-flex;
}

.cta-text i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.urgency-text {
    font-size: 1.1rem;
    margin-top: 30px;
    opacity: 0.9;
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.checkout-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-content {
    background: #1a1a1a;
    border-radius: 20px;
    max-width: 500px;
    color: #FFFFFF;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
}

.checkout-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #CCCCCC;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background: #f8f9fa;
}

.checkout-body {
    padding: 30px;
}

.product-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.product-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.price-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 2rem;
    font-weight: 900;
    color: #4ecdc4;
}

.payment-methods h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #4ecdc4;
    background: #f8fffe;
}

.payment-option.active {
    border-color: #4ecdc4;
    background: #f0fffe;
}

.payment-option i {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-right: 15px;
}

.payment-option span:first-of-type {
    flex: 1;
    font-weight: 600;
    color: #2c3e50;
}

.payment-option .price {
    font-weight: 700;
    color: #4ecdc4;
    font-size: 1.1rem;
}

.checkout-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #CCCCCC;
}

.checkout-guarantee i {
    color: #4ecdc4;
}

.checkout-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .title-sub {
        font-size: 1.8rem;
    }
    
    .hero-title .price-highlight {
        font-size: 1.5rem;
    }
    
    .hero-title .promo-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-title .price {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .vs {
        transform: none;
        writing-mode: horizontal-tb;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .countdown {
        flex-direction: column;
        gap: 15px;
    }
    
    .countdown-separator {
        display: none;
    }
    
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .proof-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .proof-image-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-img {
        height: 150px;
    }
    
    .testimonial-slide .testimonial-img {
        height: 120px;
    }
    
    /* Ajuste específico para o card 2 em mobile - parte superior esquerda com receita */
    .testimonial-slide:nth-child(2) .testimonial-img {
        object-position: top left;
        height: 160px;
    }
    
    /* Ajuste específico para o card 3 em mobile - lateral direita */
    .testimonial-slide:nth-child(3) .testimonial-img {
        object-position: right 20% center;
        height: 140px;
    }
    
    .problem-section,
    .solution-section,
    .offer-section,
    .audience-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    /* Responsividade da Seção de Audience */
    .audience-header h2 {
        font-size: 2.2rem;
    }
    
    .audience-subtitle {
        font-size: 1.1rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .audience-item {
        padding: 30px 20px;
    }
    
    .audience-content h3 {
        font-size: 1.4rem;
    }
    
    .audience-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .audience-guarantee {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .title-sub {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .solution-item {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-number {
        font-size: 2rem;
        padding: 15px;
        min-width: 60px;
    }
    
    .proof-social-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .proof-image-card {
        max-width: 250px;
        padding: 10px;
    }
    
    .proof-stats {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .testimonials-section h2,
    .more-testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    /* Responsividade da Seção de Testimonials */
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-stats {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-stats .stat-item {
        min-width: 200px;
        padding: 20px;
        width: 100%;
        max-width: 280px;
    }
    
    .testimonials-stats .stat-number {
        font-size: 2.2rem;
    }
    
    .testimonials-stats .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .testimonials-stats .stat-item {
        min-width: 160px;
        padding: 15px;
        max-width: 240px;
    }
    
    .testimonials-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .testimonials-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .author-result {
        align-self: stretch;
        justify-content: center;
    }
    
    .cta-text {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
    
    /* Responsividade da Seção de Testimonials */
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .results-stats {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .results-stats .stat-item {
        min-width: 200px;
        padding: 20px;
        width: 100%;
        max-width: 280px;
    }
    
    .results-stats .stat-number {
        font-size: 2.2rem;
    }
    
    .results-stats .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .results-stats .stat-item {
        min-width: 160px;
        padding: 15px;
        max-width: 240px;
    }
    
    .results-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .results-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .author-result {
        align-self: stretch;
        justify-content: center;
    }
    
    .cta-text {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
    
    /* Responsividade da Seção FAQ */
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .question-content {
        gap: 15px;
    }
    
    .question-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .answer-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-item {
        padding: 10px 12px;
    }
    
    .answer-content {
        padding: 0 20px 20px;
    }
    
    .answer-content p {
        font-size: 1rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .testimonial-slide {
        padding: 20px;
    }
    
    .testimonial-slide .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .comparison-img {
        width: 140px;
        height: 140px;
    }
    
    .comparison-item {
        min-width: 200px;
        padding: 40px 25px;
    }
    
    .comparison-item span {
        font-size: 1.1rem;
    }
    
    /* Responsividade da Seção de Oferta */
    .offer-title {
        font-size: 2.5rem;
    }
    
    .price-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .installment-value {
        font-size: 1.5rem;
    }
    
    .guarantee-info {
        gap: 20px;
    }
    
    .guarantee-item {
        min-width: 120px;
    }
    
    .offer-section .cta-button.large {
        padding: 25px 40px;
        font-size: 1.3rem;
    }
}
