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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'El Messiri', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-image: url('Bckground.png');
    background-size: cover;
    background-repeat: repeat-y;
    background-position: center top;
    will-change: background-position;
    min-height: 100vh;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #862B3C, #a0334a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a0334a, #862B3C);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(134, 43, 60, 0.3) 100%);
    padding: 4rem 2rem 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

.logo-container {
    margin-bottom: 3rem;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    line-height: 1.2;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Countdown Styles */
.countdown-container {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(134, 43, 60, 0.08) 0%, rgba(134, 43, 60, 0.03) 100%);
    border-radius: 25px;
    border: 1px solid rgba(134, 43, 60, 0.15);
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.countdown-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #862B3C, rgba(134, 43, 60, 0.3));
    border-radius: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.countdown-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    flex: 1;
    max-width: 120px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(134, 43, 60, 0.1);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(145deg, #862B3C, rgba(134, 43, 60, 0.5));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.countdown-item:hover {
    background: linear-gradient(145deg, #862B3C, #a0334a);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(134, 43, 60, 0.25);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: #862B3C;
    display: block;
    line-height: 1;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(134, 43, 60, 0.1);
}

.countdown-item:hover .countdown-number {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.countdown-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.8rem;
    transition: all 0.4s ease;
}

.countdown-item:hover .countdown-label {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive countdown */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 1.5rem;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 1.5rem 1rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .countdown-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}

/* Parallax Banners */
.parallax-banner {
    background: linear-gradient(135deg, #862B3C, #000000);
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    height: 80px;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-text {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    animation: scrollHorizontal 15s linear infinite;
    will-change: transform;
}

@keyframes scrollHorizontal {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.benefits-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.benefits-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.3rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(145deg, #862B3C, rgba(134, 43, 60, 0.5));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(134, 43, 60, 0.25);
    background: linear-gradient(145deg, #862B3C 0%, #a0334a 100%);
    color: white;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #862B3C;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-number {
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: white;
}

.benefit-description {
    color: #666;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-description {
    color: white;
}

.benefit-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #862B3C;
    background: rgba(134, 43, 60, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.benefit-card:hover .benefit-highlight {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.benefits-cta {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 30px;
    border: 2px solid #25D366;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    font-family: 'El Messiri', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    border-color: #128C7E;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    margin-right: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.btn-primary:hover .whatsapp-icon {
    transform: scale(1.1) rotate(5deg);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Offer Section */
.offer-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.offer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.offer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.offer-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    margin-bottom: 2.5rem;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #862B3C, rgba(134, 43, 60, 0.3));
    border-radius: 2px;
}

.offer-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(145deg, #862B3C, rgba(134, 43, 60, 0.5), #862B3C);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

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

.offer-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(134, 43, 60, 0.3);
    background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
}

.offer-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #862B3C;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.offer-card-description {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.product-image-container {
    text-align: center;
}

.offer-product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

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

/* Social Proof Section */
.social-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.social-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.social-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
    margin-bottom: 1rem;
}

.social-subtitle {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-weight: 500;
}

.testimonials-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: #862B3C;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.faq-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #862B3C;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

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

.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
}



/* Botão de Mensagem Lateral */
.message-button {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.message-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #862B3C;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(134, 43, 60, 0.3);
    transition: all 0.3s ease;
}

.message-button a:hover {
    background: #000;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.message-button svg {
    width: 28px;
    height: 28px;
}

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

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Section improvements */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(134, 43, 60, 0.3), transparent);
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .banner-text {
        font-size: 2rem;
    }
    
    .benefits-title,
    .offer-title,
    .social-title,
    .faq-title {
        font-size: 2rem;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-title {
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto 3rem auto;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
        min-height: 250px;
    }
    
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-text {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .message-button {
        right: 15px;
    }
    
    .message-button a {
        width: 50px;
        height: 50px;
    }
    
    .offer-cards {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .offer-card {
        padding: 1.5rem 1rem;
    }
    
    .countdown-timer {
        gap: 0.8rem;
    }
    
    .countdown-item {
        padding: 1rem 0.5rem;
        min-width: 70px;
        max-width: 80px;
    }
    
    .message-button svg {
        width: 24px;
        height: 24px;
    }
    
    /* FAQ Mobile Styles - Tablet */
    .faq-section .faq-container {
        max-width: 100%;
        margin: 0 auto 3rem;
        padding: 0 15px;
    }
    
    .faq-section .faq-question {
        padding: 1.3rem 1.2rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-section .faq-toggle {
        font-size: 1.4rem;
        min-width: 32px;
        text-align: center;
    }
    
    .faq-section .faq-answer {
        padding: 0 1.2rem;
        transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
        visibility: hidden;
    }
    
    .faq-section .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.3rem;
        max-height: 600px;
        visibility: visible;
    }
    
    .faq-section .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Botões responsivos para tablet */
    .btn-primary {
        padding: 16px 28px;
        font-size: 0.95rem;
        white-space: nowrap;
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-large {
        padding: 18px 32px;
        font-size: 1.05rem;
        min-height: 54px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
        margin-right: 7px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .banner-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .benefits-title,
    .offer-title,
    .social-title,
    .faq-title {
        font-size: 1.8rem;
    }
    
    .benefit-number {
        font-size: 2rem;
    }
    
    .social-proof-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Botões responsivos para mobile */
    .btn-primary {
        padding: 14px 24px;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        white-space: nowrap;
        max-width: 95%;
        margin: 0 auto;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 0.9rem;
    }
    
    .whatsapp-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
        min-height: 52px;
    }
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .parallax-banner {
        transform: skewY(0deg);
        margin: 1rem 0;
    }
    
    .banner-content {
        transform: skewY(0deg);
    }
    
    /* FAQ Mobile Small Screens */
    .faq-section .faq-container {
        padding: 0 10px;
    }
    
    .faq-section .faq-question {
        padding: 1rem 0.9rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .faq-section .faq-question span:first-child {
        flex: 1;
        min-width: 0;
    }
    
    .faq-section .faq-toggle {
        font-size: 1.2rem;
        min-width: 28px;
        flex-shrink: 0;
    }
    
    .faq-section .faq-answer {
        padding: 0 0.9rem;
        transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
        visibility: hidden;
    }
    
    .faq-section .faq-item.active .faq-answer {
        padding: 0 0.9rem 1rem;
        max-height: 700px;
        visibility: visible;
    }
    
    .faq-section .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #862B3C 0%, #a0334a 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(134, 43, 60, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::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;
}

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

.cta-button:hover {
    background: linear-gradient(135deg, #a0334a 0%, #862B3C 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(134, 43, 60, 0.5);
}

/* Footer Styles */
.footer {
    position: relative;
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: brightness(0.3);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

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

.footer-logo .logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item svg {
    color: #862B3C;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item span {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-item a {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FF6B35;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo .logo {
        max-width: 150px;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-info {
        gap: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-item {
        margin-bottom: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
    
    .footer-logo .logo {
        max-width: 120px;
    }
}

/* Smooth scrolling and performance optimizations */
.parallax-banner {
    will-change: transform;
}