/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on all devices */
html {
    overflow-x: hidden;
    max-width: 100vw;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure all containers respect viewport width */
.container,
.hero-container,
.nav-container {
    max-width: 100vw;
    box-sizing: border-box;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive text */
h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e8f4f8;
    background-color: #0d1117;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #161b22 0%, #1a1f26 50%, #161b22 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    padding: 8px 0 12px 0;
}

.navbar {
    padding: 0.4rem 0 0.6rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #e8f4f8;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00ff5f;
}

.whatsapp-header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #000;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.whatsapp-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 95, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e8f4f8;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1c2128 100%);
    color: white;
    padding: 60px 0 40px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 95, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 200, 81, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-welcome {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #8b949e;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 95, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e8f4f8;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 95, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00c851, #00a844);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 95, 0.4);
    text-decoration: none;
    color: #0d1117;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff5f;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #161b22;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #21262d;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 1px solid #30363d;
    transition: all 0.3s;
}

.feature:hover {
    border-color: #00ff5f;
    box-shadow: 0 8px 25px rgba(0, 255, 95, 0.2);
}

.feature i {
    font-size: 3rem;
    color: #00ff5f;
    margin-bottom: 1rem;
}

.feature h2,
.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e8f4f8;
}/
* Packages Section */
.packages {
    padding: 150px 0;
    background: #0d1117;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.packages-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.packages-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.package {
    background: #21262d;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #30363d;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 95, 0.15);
    border-color: #00ff5f;
}

.package-popular {
    transform: scale(1.05);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.package-popular:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: #ff4500;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #ffffff;
    padding: 10px 45px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
}

.package-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #161b22, #21262d);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.package-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.package:hover .package-image img {
    transform: scale(1.05);
}



.package-bestseller {
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.package-bestseller:hover {
    border-color: #ff4500;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.25);
}

.package-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.package-banner {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    margin: 0.5rem 1rem 0;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.package-header {
    padding: 0.5rem 1rem 0;
    text-align: center;
}



.package-count {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff5f;
    line-height: 1;
    margin-bottom: 0;
}

.package-label {
    font-size: 1rem;
    color: #e8f4f8;
    font-weight: 500;
}

.package-price {
    padding: 0.3rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8f4f8;
}

.price-original {
    display: block;
    font-size: 1.2rem;
    color: #8b949e;
    text-decoration: line-through;
    margin-top: 0.5rem;
}

.package-btn {
    width: calc(100% - 2rem);
    margin: 0.3rem 1rem 1rem;
    padding: 12px;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.package-btn:hover {
    background: linear-gradient(135deg, #00c851, #00a844);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 95, 0.3);
    text-decoration: none;
    color: #0d1117;
}

.packages-footer {
    text-align: center;
    margin-top: 3rem;
}

.packages-footer p {
    color: #c9d1d9;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.packages-footer i {
    color: #00ff5f;
    font-size: 1.3rem;
}

/* Results Section */
.results {
    padding: 60px 0;
    background: linear-gradient(135deg, #161b22 0%, #21262d 100%);
    color: white;
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.result-stat {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00ff5f;
}

.result-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #161b22;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
}



.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00ff5f;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #8b949e;
}

.about-text .subtitle {
    font-size: 1rem;
    color: #c9d1d9;
    margin-top: 1rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #0d1117;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e8f4f8;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #8b949e;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    padding: 2rem;
    background: #21262d;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #30363d;
    transition: all 0.3s;
}

.benefit:hover {
    border-color: #00ff5f;
    box-shadow: 0 8px 25px rgba(0, 255, 95, 0.2);
}

.benefit i {
    font-size: 3rem;
    color: #00ff5f;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e8f4f8;
}

.benefit p {
    line-height: 1.7;
    color: #8b949e;
}

/* Why Buy Section */
.why-buy {
    padding: 80px 0;
    background: linear-gradient(135deg, #161b22 0%, #21262d 100%);
    color: white;
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
}

.why-buy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-buy-text {
    text-align: left;
}

.why-buy h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.why-buy p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.why-buy-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.2);
}

/* Guarantees Section */
.guarantees {
    padding: 100px 0;
    background: #0d1117;
    text-align: center;
}

.guarantees h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1.5rem;
}

.guarantees .section-subtitle {
    font-size: 1.3rem;
    color: #8b949e;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.guarantee-item {
    background: #21262d;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #30363d;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-item:hover {
    transform: translateY(-8px);
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.2);
}

.guarantee-item i {
    font-size: 3.5rem;
    color: #00ff5f;
    margin-bottom: 1.5rem;
    display: block;
}

.guarantee-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.guarantee-item p {
    font-size: 1.1rem;
    color: #8b949e;
    line-height: 1.7;
}

.guarantee-cta {
    margin-top: 2rem;
}

/* Numbers Section */
.numbers {
    padding: 80px 0;
    background: #161b22;
}

.numbers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.numbers-text {
    text-align: left;
}

.numbers h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e8f4f8;
}

.numbers p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #8b949e;
    line-height: 1.6;
}

.numbers-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.2);
}/* Test
imonials Section */
.testimonials {
    padding: 80px 0;
    background: #0d1117;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonials-text {
    text-align: left;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e8f4f8;
}

.testimonial {
    background: #21262d;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #00ff5f;
    border: 1px solid #30363d;
}

.testimonial h3 {
    color: #00ff5f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #8b949e;
}

.testimonials-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.2);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #161b22;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.reviews-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fallback para garantir compatibilidade */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #21262d;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid #30363d;
    transition: all 0.4s ease;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.15);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    justify-content: center;
    flex-shrink: 0;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
    flex-grow: 1;
}

.review-text::before {
    content: '"';
    font-size: 1.8rem;
    color: #00ff5f;
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    font-family: serif;
    opacity: 0.7;
}

.review-text::after {
    content: '"';
    font-size: 1.8rem;
    color: #00ff5f;
    position: absolute;
    bottom: 3.5rem;
    right: 1rem;
    font-family: serif;
    opacity: 0.7;
}

.review-author {
    text-align: center;
    border-top: 1px solid #30363d;
    padding-top: 1rem;
    margin-top: auto;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 1.1rem;
    color: #00ff5f;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.review-author span {
    color: #8b949e;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #0d1117;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00ff5f;
    box-shadow: 0 5px 15px rgba(0, 255, 95, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8f4f8;
    margin: 0;
}

.faq-question i {
    color: #00ff5f;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px !important;
    padding: 0 2rem 1.5rem;
    opacity: 1;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
    color: #8b949e;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #010409;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #21262d;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff5f;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #c9d1d9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00ff5f;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #00ff5f;
}

.footer-bottom {
    border-top: 1px solid #21262d;
    padding-top: 2rem;
    text-align: center;
    color: #c9d1d9;
}

.footer-legal {
    border-top: 1px solid #21262d;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #8b949e;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c9d1d9;
}

.footer-legal .copyright {
    color: #8b949e;
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: #161b22;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    padding: 1rem;
    border-top: 1px solid #21262d;
    z-index: 999;
    box-sizing: border-box;
    margin-left: calc(-1.5rem);
}

.nav-menu.active a {
    padding: 0.8rem 0;
    border-bottom: 1px solid #21262d;
    text-align: center;
}

.nav-menu.active a:last-child {
    border-bottom: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hamburger base styles */
.hamburger span {
    width: 25px;
    height: 3px;
    background: #e8f4f8;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.nav-container {
    position: relative;
    overflow: hidden;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #161b22;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.4);
        border-top: 1px solid #21262d;
        z-index: 1000;
        margin-left: calc(-1.5rem);
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid #21262d;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .header {
        padding: 6px 0 10px 0;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #161b22;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.4);
        border-top: 1px solid #21262d;
        z-index: 1000;
        margin-left: calc(-1.5rem);
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid #21262d;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .whatsapp-header-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.3rem;
        white-space: nowrap;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.3rem 0 0.5rem 0;
    }
    
    .hero .hero-container {
        display: flex !important;
        flex-direction: column-reverse !important;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image img {
        max-width: 280px;
        height: auto;
    }
    
    .hero-welcome {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: 85vh;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .packages {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .package {
        min-height: 320px;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-popular {
        transform: none;
    }
    
    .packages-header h2 {
        font-size: 2.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .package-count {
        font-size: 2.5rem;
    }
    
    .package-label {
        font-size: 0.9rem;
        text-align: center;
        word-wrap: break-word;
    }
    
    .package-price {
        margin: 1rem 0;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .package-btn {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        box-sizing: border-box;
    }
    
    .results-stats {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-buy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-buy-text {
        text-align: center;
    }
    
    .why-buy-image {
        order: -1;
    }
    
    .numbers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .numbers-text {
        text-align: center;
    }
    
    .numbers-image {
        order: -1;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-image {
        order: -1;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .testimonials-text {
        text-align: center;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guarantees h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .reviews .reviews-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .whatsapp-header-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.2rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .packages {
        padding: 60px 0;
    }
    
    .packages-header h2 {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .package {
        min-height: 350px;
        padding: 1.5rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .package-image {
        height: 120px;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .package-header {
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .package-count {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .package-label {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .package-price {
        padding: 1rem 0;
        text-align: center;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .package-btn {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
    }
    
    .package-discount {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .package-banner {
        margin: 0.5rem 0;
        padding: 8px 0;
        font-size: 0.8rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    h2 {
        font-size: 1.8rem !important;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Esta media query foi consolidada na seção principal de 480px */
        font-size: 0.8rem;
    }
    
    .package-banner {
        margin: 0.2rem 0.5rem 0;
        padding: 5px 0;
        font-size: 0.7rem;
    }
    
    .package-discount {
        top: 6px;
        right: 6px;
        padding: 3px 8px;
        font-size: 0.65rem;
    }
}
    
    .package-count {
        font-size: 2.3rem;
    }
    
    .package-badge {
        font-size: 0.8rem;
        padding: 6px 30px;
    }
    
    .why-choose h2,
    .reviews-header h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .reviews .reviews-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}/*
 Dark Theme Enhancements */
body {
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
}

/* Scrollbar Dark Theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #161b22;
}

::-webkit-scrollbar-thumb {
    background: #00ff5f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00c851;
}

/* Selection Color */
::selection {
    background: #00ff5f;
    color: #0d1117;
}



/* Enhanced Button Glow */
.cta-button {
    position: relative;
    overflow: hidden;
}

.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;
}

.cta-button:hover::before {
    left: 100%;
}

/* Card Hover Glow */
.feature:hover,
.benefit:hover,
.blog-post:hover {
    box-shadow: 0 8px 32px rgba(0, 255, 95, 0.15);
}

/* Text Glow for Numbers */
.stat-number,
.result-number {
    text-shadow: 0 0 20px rgba(0, 255, 95, 0.5);
}



/* Enhanced Package Cards */
.package.featured {
    position: relative;
    overflow: hidden;
}

.package.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff5f, #00c851, #00ff5f);
    border-radius: 17px;
    z-index: -1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced WhatsApp Button */
.whatsapp-float a {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-float a:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.3);
}/
* Enhanced H1 Animation */
.hero-content h1 {
    animation: fadeInUp 1s ease-out;
    position: relative;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Welcome text animation */
.hero-welcome {
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



@media (max-width: 480px) {
    .hero-welcome {
        font-size: 0.8rem;
    }
    

}

/* Tablet responsiveness for reviews */
@media (min-width: 769px) and (max-width: 1024px) {
    .reviews .reviews-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

/* Small tablet responsiveness for reviews */
@media (min-width: 600px) and (max-width: 768px) {
    .reviews .reviews-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .reviews-header h2 {
        font-size: 2.2rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

/* Desktop optimization - 3 columns */
@media (min-width: 1025px) {
    .reviews .reviews-grid,
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
        max-width: 1200px;
    }
    
    .review-card {
        padding: 2rem;
        min-height: 320px;
    }
}

/* Large desktop optimization */
@media (min-width: 1400px) {
    .reviews .reviews-grid,
    .reviews-grid {
        gap: 2.5rem;
        max-width: 1400px;
    }
    
    .review-card {
        padding: 2.5rem;
        min-height: 350px;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
}/
* Urgency Section */
.urgency {
    padding: 80px 0 60px 0;
    margin-top: 40px;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
}

.urgency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.urgency h2 {
    font-size: 2.3rem;
    color: #e8f4f8;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.urgency p {
    font-size: 1.3rem;
    color: #8b949e;
    margin-bottom: 2rem;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.urgency-stat {
    text-align: center;
}

.urgency-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff5f;
    margin-bottom: 0.5rem;
}

.urgency-label {
    font-size: 1rem;
    color: #8b949e;
}

.cta-button.urgent {
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    font-size: 1.3rem;
    padding: 18px 40px;
    font-weight: 700;
    animation: glow-green 2s ease-in-out infinite alternate;
}

.urgency-disclaimer {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #00ff5f;
    font-weight: 500;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0 60px 0;
    background: #0d1117;
}

.social-proof h2 {
    text-align: center;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .social-proof-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
    }
}

.proof-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #161b22;
    border-radius: 15px;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proof-stat:hover {
    transform: translateY(-5px);
    border-color: #00ff5f;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.1);
}

.proof-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff5f, #00c851);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proof-stat:hover::before {
    opacity: 1;
}

.proof-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00ff5f;
    margin-bottom: 1rem;
}

.proof-label {
    font-size: 1rem;
    color: #8b949e;
    line-height: 1.4;
}

.live-activity {
    background: #161b22;
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid #30363d;
    max-width: 700px;
    margin: 0 auto 80px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.live-activity h3 {
    color: #e8f4f8;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.live-activity h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00ff5f;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 95, 0.5);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #21262d;
    border-radius: 10px;
    border-left: 3px solid #00ff5f;
}

.activity-text {
    color: #e8f4f8;
    font-size: 0.95rem;
    font-weight: 500;
}

.activity-text::first-letter {
    color: #00ff5f;
    font-weight: 600;
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #8b949e;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.privacy-note i {
    color: #00ff5f;
    margin-right: 0.5rem;
}

.activity-time {
    color: #8b949e;
    font-size: 0.85rem;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.about-stat {
    text-align: center;
}

.about-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff5f;
    margin-bottom: 0.5rem;
}

.about-label {
    font-size: 0.9rem;
    color: #8b949e;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr !important;
    }
}

.comparison-item {
    background: #21262d;
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid #30363d;
    position: relative;
}

.comparison-item.winner {
    border-color: #00ff5f;
    background: linear-gradient(135deg, #21262d 0%, #1a2332 100%);
}

.comparison-item.competitor {
    opacity: 0.8;
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.comparison-item h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #e8f4f8;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.comparison-item li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #30363d;
}

.comparison-item li:last-child {
    border-bottom: none;
}

.comparison-item.winner li i {
    color: #00ff5f;
}

.comparison-item.competitor li i {
    color: #ff4444;
}

.competitor-warning {
    text-align: center;
    background: #b91c1c;
    color: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid #dc2626;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    border-top: 1px solid #30363d;
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.3rem;
    color: #8b949e;
    margin-bottom: 3rem;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.final-stat {
    text-align: center;
}

.final-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff5f;
    margin-bottom: 0.5rem;
}

.final-label {
    font-size: 1rem;
    color: #8b949e;
}

.final-urgency {
    background: #161b22;
    border: 2px solid #00ff5f;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.urgency-text {
    font-size: 1.2rem;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.countdown-final {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff5f;
}

.cta-button.final {
    font-size: 1.4rem;
    padding: 20px 50px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    animation: pulse 2s infinite;
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.guarantee-item-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b949e;
}

.guarantee-item-small i {
    color: #00ff5f;
}

.final-disclaimer {
    font-size: 1.1rem;
    color: #00ff5f;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

/* Manter alinhamento à esquerda no mobile */
@media (max-width: 768px) {
    .final-disclaimer {
        text-align: left;
    }
}

/* Animations */
@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.8);
    }
}

@keyframes glow-green {
    from {
        box-shadow: 0 0 20px rgba(0, 255, 95, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 255, 95, 0.8);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .whatsapp-header-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 1.2rem;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: 85vh;
    }
    
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .before .number, .after .number {
        font-size: 2.3rem;
    }
}
    
    /* Títulos H2 no tablet */
    .problem-side h2,
    .solution-side h2,
    .social-proof h2,
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        gap: 3rem;
        align-items: center;
    }
    
    .about-image {
        align-items: center;
    }
    
    .testimonials-content {
        gap: 3rem;
        align-items: center;
    }
    
    .trust-logos {
        gap: 2.5rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .urgency-stats,
    .final-stats,
    .final-guarantees {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem;
    }
    
    .final-stat,
    .guarantee-item-small {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .final-number {
        font-size: 2rem;
    }
    

    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    

}
    
    /* Padronização de títulos H2 no mobile */
    .urgency h2,
    .final-cta h2,
    .problem-side h2,
    .solution-side h2,
    .social-proof h2,
    .about-text h2 {
        font-size: 1.8rem !important;
    }
    
    .faq-header h2,
    .reviews-header h2,
    .packages-header h2,
    .success-cases h2,
    .how-it-works h2,
    .comparison h2,
    .objections h2,
    .benefits-impact h2 {
        font-size: 1.9rem !important;
    }
}/* Problem
 Solution Section */
.problem-solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.problem-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-side, .solution-side {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.problem-side {
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1111 100%);
    border: 2px solid #ff4444;
}

.solution-side {
    background: linear-gradient(135deg, #1b2d1b 0%, #111a11 100%);
    border: 2px solid #00ff5f;
}

.problem-side h2, .solution-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e8f4f8;
}

.problem-intro, .solution-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #8b949e;
}

.problems-list, .solutions-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.problems-list li, .solutions-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #e8f4f8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.problems-list li i {
    color: #ff4444;
    font-size: 1.2rem;
}

.solutions-list li i {
    color: #00ff5f;
    font-size: 1.2rem;
}

.problem-impact, .solution-impact {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.problem-impact {
    background: rgba(255, 68, 68, 0.1);
    color: #ff6b6b;
}

.solution-impact {
    background: rgba(0, 255, 95, 0.1);
    color: #00ff5f;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #0d1117;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: #161b22;
    border-radius: 20px;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: #00ff5f;
    box-shadow: 0 20px 40px rgba(0, 255, 95, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #e8f4f8;
    margin: 2rem 0 1rem 0;
}

.step-content p {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-icon {
    font-size: 3rem;
    color: #00ff5f;
    margin-bottom: 1rem;
}

.process-guarantee {
    text-align: center;
    background: #161b22;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #30363d;
    max-width: 600px;
    margin: 0 auto;
}

.process-guarantee p {
    color: #e8f4f8;
    font-size: 1.1rem;
    margin: 0;
}

.process-guarantee i {
    color: #00ff5f;
    margin-right: 0.5rem;
}

/* Success Cases Section */
.success-cases {
    padding: 80px 0;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.success-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.case {
    background: #21262d;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
}

.case:hover {
    transform: translateY(-5px);
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.1);
}

.case-header {
    text-align: center;
    margin-bottom: 2rem;
}

.case-header h3 {
    color: #e8f4f8;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.case-location {
    color: #8b949e;
    font-size: 0.9rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #161b22;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.before, .after {
    text-align: center;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

.before .label, .after .label {
    display: block;
    font-size: 0.8rem;
    color: #8b949e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.before .number, .after .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    white-space: nowrap;
}

.before .number {
    color: #ff6b6b;
}

.after .number {
    color: #00ff5f;
}

.before .text, .after .text {
    font-size: 0.9rem;
    color: #8b949e;
}

.arrow {
    margin: 0 1rem;
    color: #00ff5f;
    font-size: 1.5rem;
}

.case-result p {
    color: #e8f4f8;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-metrics span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff5f;
    font-size: 0.9rem;
    font-weight: 600;
}

.success-cta {
    text-align: center;
}

.success-text {
    font-size: 1.3rem;
    color: #e8f4f8;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Objections Section */
.objections {
    padding: 80px 0;
    background: #0d1117;
}

.objections h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.objection {
    background: #161b22;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #30363d;
    text-align: center;
    transition: all 0.3s ease;
}

.objection:hover {
    transform: translateY(-5px);
    border-color: #00ff5f;
    box-shadow: 0 10px 25px rgba(0, 255, 95, 0.1);
}

.objection-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ff5f;
}

.objection h3 {
    color: #e8f4f8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.objection p {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.objection-proof {
    background: rgba(0, 255, 95, 0.1);
    color: #00ff5f;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.objections-cta {
    text-align: center;
}

.objections-text {
    font-size: 1.3rem;
    color: #e8f4f8;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Enhanced Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .problem-solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .before .number, .after .number {
        font-size: 2.2rem;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
    }
}/* Icon S
tyling for Headers */
.problem-side h2 i,
.solution-side h2 i,
.final-cta h2 i {
    margin-right: 1rem;
    font-size: 1.1em;
}

.problem-side h2 i {
    color: #ff6b6b;
}

.solution-side h2 i,
.final-cta h2 i {
    color: #00ff5f;
}

.urgency-badge i {
    margin-right: 0.5rem;
}

.urgency-disclaimer i,
.urgency-text i,
.final-disclaimer i {
    margin-right: 0.5rem;
    color: #00ff5f;
}

/* Estilos específicos para ícones das seções ajustadas */
.objection-icon .icon {
    width: 40px !important;
    height: 40px !important;
}

.benefit .icon {
    width: 36px !important;
    height: 36px !important;
}

@media (max-width: 768px) {
    .objection-icon .icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .benefit .icon {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Live Activity Icon */
.live-activity h3 i {
    margin-right: 0.5rem;
    animation: pulse-green 2s infinite;
}/* 
Trust Indicators Section */
.trust-indicators {
    padding: 40px 0;
    background: #161b22;
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
}

.trust-text {
    text-align: center;
    color: #c9d1d9;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-item i {
    font-size: 2rem;
    color: #00ff5f;
}

.trust-item span {
    font-size: 0.9rem;
    color: #c9d1d9;
    font-weight: 500;
}

/* Benefits Impact Section */
.benefits-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.benefits-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.impact-item {
    background: #21262d;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-item:hover {
    transform: translateY(-10px);
    border-color: #00ff5f;
    box-shadow: 0 20px 40px rgba(0, 255, 95, 0.1);
}

.impact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff5f, #00c851);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-item:hover::before {
    opacity: 1;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
}

.impact-item:hover .impact-icon {
    transform: scale(1.1);
}

.impact-icon i {
    font-size: 2rem;
    color: #0d1117;
}

.impact-item h3 {
    font-size: 1.5rem;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.impact-item p {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.impact-stat {
    background: rgba(0, 255, 95, 0.1);
    color: #00ff5f;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.impact-cta {
    text-align: center;
}

.impact-text {
    font-size: 1.3rem;
    color: #e8f4f8;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Sales Counter */
.sales-counter {
    margin: 2rem 0;
    text-align: center;
}

.sales-text {
    color: #e8f4f8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sales-text span {
    color: #00ff5f;
    font-weight: 700;
}

.sales-bar {
    width: 100%;
    max-width: 300px;
    height: 8px;
    background: #30363d;
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.sales-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff5f, #00c851);
    border-radius: 4px;
    width: 63.5%;
    transition: width 0.3s ease;
    animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .trust-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .trust-item {
        justify-self: center;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-item {
        padding: 2rem;
    }
    
    .benefits-impact h2 {
        font-size: 2rem;
    }
    
    .before .number, .after .number {
        font-size: 2rem;
    }
    
    .before-after {
        padding: 1rem;
    }
}

/* Extra small mobile (320px and below) */
@media (max-width: 320px) {
    .whatsapp-header-btn span {
        display: none;
    }
    
    .whatsapp-header-btn {
        padding: 0.4rem;
        min-width: 40px;
        justify-content: center;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .navbar {
        padding: 0.2rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .packages-header h2 {
        font-size: 1.5rem;
    }
    
    .package {
        min-height: 320px;
        padding: 1rem;
    }
    
    .package-count {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}/*
 Additional mobile padding adjustments */
@media (max-width: 768px) {
    /* Ensure first sections after header have adequate top padding */
    .features,
    .problem-solution,
    .social-proof,
    .urgency {
        padding-top: 100px;
    }
    
    /* Adjust about section for better mobile layout */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    /* More padding for very small screens */
    .features,
    .problem-solution,
    .social-proof,
    .urgency {
        padding-top: 80px;
    }
    
    /* Extra small mobile optimization */
    .whatsapp-header-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.2rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .navbar {
        padding: 0.3rem 0;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .about {
        padding: 50px 0;
    }
    
    /* Trust indicators mobile optimization */
    .trust-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 280px;
    }
    
    .trust-item i {
        font-size: 1.5rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
    
    /* Títulos ainda menores para telas muito pequenas */
    .problem-side h2,
    .solution-side h2,
    .social-proof h2,
    .about-text h2 {
        font-size: 1.6rem !important;
    }
    

}/*
 Padronização global de títulos */
.social-proof h2,
.about-text h2,
.success-cases h2,
.how-it-works h2,
.comparison h2,
.objections h2,
.benefits-impact h2,
.guarantees h2,
.testimonials h2,
.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

/* H3 padronizado */
.benefit h3,
.step-content h3,
.objection h3,
.impact-item h3,
.guarantee-item h3,
.testimonial h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 1rem;
}/* P
erformance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* About Page Hero Styles */
.hero .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero .hero-content {
    min-height: 400px;
}

.hero .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.2);
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background: #161b22;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e8f4f8;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #8b949e;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.2);
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #0d1117;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.team-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #21262d;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #30363d;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00ff5f;
    box-shadow: 0 8px 25px rgba(0, 255, 95, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    font-size: 1.1rem;
    color: #00ff5f;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.member-info p {
    font-size: 1.1rem;
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.expertise-tag {
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #161b22;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.values-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-item {
    background: #21262d;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #30363d;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(0, 255, 95, 0.3);
}

.value-icon .icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(8%) sepia(8%) saturate(1567%) hue-rotate(162deg) brightness(95%) contrast(94%);
}

.value-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    color: #8b949e;
    line-height: 1.7;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: #0d1117;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e8f4f8;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-text h3 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #e8f4f8;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #8b949e;
    line-height: 1.7;
}

.mission-cta {
    margin-top: 3rem;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.2);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #161b22 0%, #21262d 100%);
    text-align: center;
    border-top: 1px solid #30363d;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: #c9d1d9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.final-stat {
    text-align: center;
}

.final-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00ff5f;
    text-shadow: 0 0 20px rgba(0, 255, 95, 0.5);
}

.final-label {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #c9d1d9;
}

.final-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: #00ff5f;
    border: 2px solid #00ff5f;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background: #00ff5f;
    color: #0d1117;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 95, 0.4);
    text-decoration: none;
}

.cta-button-secondary .icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(97%) saturate(2477%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.cta-button-secondary:hover .icon {
    filter: brightness(0) saturate(100%) invert(8%) sepia(8%) saturate(1567%) hue-rotate(162deg) brightness(95%) contrast(94%);
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero .hero-image {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-image {
        order: -1;
    }
    
    .final-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .team-header h2,
    .values-header h2 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-text h2,
    .mission-text h2,
    .mission-text h3 {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-expertise {
        flex-direction: column;
        align-items: center;
    }
    
    .expertise-tag {
        width: fit-content;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .mission-text h3 {
        font-size: 1.6rem;
    }
}/* C
ontact Page Styles */
.contact-methods {
    padding: 100px 0;
    background: #161b22;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #21262d;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #30363d;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.2);
}

.whatsapp-card {
    border-color: #25d366;
    background: linear-gradient(135deg, #21262d 0%, #1a2f1f 100%);
}

.whatsapp-card:hover {
    border-color: #25d366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.info-card .contact-icon {
    background: linear-gradient(135deg, #00ff5f, #00c851);
    box-shadow: 0 8px 25px rgba(0, 255, 95, 0.3);
}

.icon-dark-contact {
    width: 50px !important;
    height: 50px !important;
    filter: brightness(0) saturate(100%) invert(0%) !important;
}

.contact-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.contact-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #25d366;
    margin-bottom: 1.5rem;
}

.contact-card p {
    font-size: 1.1rem;
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-info strong {
    color: #e8f4f8;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #000000;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #0f6b5c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: #000000;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: #0d1117;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.location-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 2rem;
}

.address-details p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #8b949e;
    line-height: 1.7;
}

.address-details strong {
    color: #e8f4f8;
}

.location-cta {
    margin-top: 3rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 255, 95, 0.2);
    border: 2px solid #30363d;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.3);
}

/* FAQ Contact Section */
.faq-contact {
    padding: 100px 0;
    background: #161b22;
}

.faq-contact .faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-contact .faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.faq-contact .faq-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero .hero-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .location-info {
        order: 1;
    }
    
    .location-map {
        order: -1;
    }
    
    .contact-header h2,
    .location-header h2,
    .faq-contact .faq-header h2 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: center;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-number {
        font-size: 1.3rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}/
* Products Page Styles */
.products-grid {
    padding: 100px 0;
    background: #161b22;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.products-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.products-categories {
    max-width: 1400px;
    margin: 0 auto;
}

.category-section {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: #21262d;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #30363d;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 95, 0.15);
    border-color: #00ff5f;
}

.product-card.featured {
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.product-card.featured:hover {
    border-color: #ff4500;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #ffffff;
    padding: 10px 45px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #161b22, #21262d);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.product-info p {
    font-size: 1rem;
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 95, 0.1);
    color: #00ff5f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 95, 0.2);
}

.feature-tag .icon {
    width: 14px;
    height: 14px;
}

.product-price {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: #8b949e;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff5f;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    color: #0d1117;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.product-btn:hover {
    background: linear-gradient(135deg, #00c851, #00a844);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 95, 0.3);
    text-decoration: none;
    color: #0d1117;
}

.product-btn-disabled {
    background: #30363d;
    color: #8b949e;
    cursor: not-allowed;
    text-transform: none;
}

.product-btn-disabled:hover {
    background: #30363d;
    color: #8b949e;
    transform: none;
    box-shadow: none;
}

/* Why Choose Products Section */
.why-choose-products {
    padding: 100px 0;
    background: #0d1117;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e8f4f8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.why-choose-header p {
    font-size: 1.3rem;
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: #21262d;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #30363d;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: #00ff5f;
    box-shadow: 0 15px 35px rgba(0, 255, 95, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff5f, #00c851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(0, 255, 95, 0.3);
}

.icon-dark-benefit {
    width: 40px !important;
    height: 40px !important;
    filter: brightness(0) saturate(100%) invert(0%) !important;
}

.benefit-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8f4f8;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #8b949e;
    line-height: 1.7;
    text-align: center;
    hyphens: auto;
    word-wrap: break-word;
    max-width: 280px;
    margin: 0 auto;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #161b22;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.4);
        border-top: 1px solid #21262d;
        z-index: 1000;
        margin-left: calc(-1.5rem);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Responsiveness for Products Page */
@media (max-width: 768px) {
    .hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero .hero-image {
        order: -1;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        min-height: 450px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 2rem;
    }
    
    .products-header h2,
    .category-title,
    .why-choose-header h2 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        min-height: 400px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h4 {
        font-size: 1.4rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon .icon {
        width: 30px;
        height: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}/* Melho
rias adicionais de responsividade */

/* Garantir que todos os elementos de texto sejam responsivos */
@media (max-width: 768px) {
    .section-subtitle,
    .hero-content p,
    .package-label,
    .faq-answer p,
    .testimonial-text,
    .guarantee-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Melhorar espaçamento em dispositivos móveis */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Garantir que botões sejam totalmente responsivos */
    .cta-button,
    .package-btn,
    .whatsapp-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        box-sizing: border-box;
    }
    
    /* Melhorar grids em mobile */
    .benefits-grid,
    .guarantees-grid,
    .steps-grid,
    .cases-grid,
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .reviews .reviews-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ajustes específicos para reviews em mobile */
    .review-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .review-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .review-text::before,
    .review-text::after {
        font-size: 1.5rem;
    }
    
    /* Corrigir overflow de imagens */
    .hero-image img,
    .about-image img,
    .package-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* Melhorar FAQ em mobile */
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* Melhorar estatísticas em mobile */
    .hero-stats,
    .results-stats,
    .about-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .stat {
        text-align: center;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    /* Reduzir ainda mais o espaçamento em telas muito pequenas */
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    /* Melhorar tipografia em telas pequenas */
    .section-subtitle,
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .cta-button,
    .package-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Garantir que elementos não quebrem o layout */
    .package-discount,
    .package-banner {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

@media (max-width: 320px) {
    /* Ajustes para telas muito pequenas */
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .section-subtitle,
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .package {
        padding: 0.8rem;
        min-height: 280px;
    }
    
    .package-count {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
}

/* Correções específicas para elementos que podem causar overflow */
.whatsapp-float,
.hamburger,
.nav-logo {
    max-width: 100%;
    box-sizing: border-box;
}

/* Garantir que o menu mobile funcione corretamente */
@media (max-width: 1024px) {
    .nav-menu {
        width: 100vw;
        left: 0;
        right: 0;
        margin-left: calc(-50vw + 50%);
    }
}

/* Melhorar performance em dispositivos móveis */
@media (max-width: 768px) {
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .package:hover,
    .cta-button:hover,
    .package-btn:hover {
        transform: none;
    }
}
/*
 CORREÇÃO FINAL - Garantir layout de 3 colunas no desktop para reviews */
@media (min-width: 1025px) {
    .reviews .container .reviews-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
}

/* Garantir que funcione em todas as resoluções desktop */
@media (min-width: 1025px) {
    section.reviews .reviews-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
/* FAQ
 Fix - Garantir funcionamento correto */
.faq-item .faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease !important;
    padding: 0 2rem !important;
    opacity: 0 !important;
}

.faq-item.active .faq-answer {
    max-height: 300px !important;
    padding: 0 2rem 1.5rem !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .faq-item .faq-answer {
        padding: 0 1rem !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem !important;
    }
}/
* Live Activity Mobile Spacing */
@media (max-width: 768px) {
    .live-activity {
        margin: 0 auto 60px auto;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .live-activity {
        margin: 0 auto 40px auto;
        padding: 1.5rem;
    }
}