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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    min-height: 100vh;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f97316, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #15803d, #166534);
}

.btn-consultation {
    background: linear-gradient(135deg, #d97706, #ea580c);
    color: white;
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #c2410c, #ea580c);
}

.btn-hope {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-main-cta {
    background: linear-gradient(135deg, #16a34a, #15803d, #166534);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(88, 28, 135, 0.9), rgba(15, 23, 42, 0.95));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 1rem;
    width: 100%;
    opacity: 0;
    transform: translateY(2.5rem);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.main-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.main-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.sparkle-icon {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #facc15, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sparkle-icon i {
    width: 1rem;
    height: 1rem;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #dc2626, #ec4899);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.section-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 64rem;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(4px);
}

.video-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.video-info {
    text-align: center;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.video-info p {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Pain Section */
.pain-section {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
}

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

.pain-image {
    position: relative;
    order: 1;
}

.pain-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
    border-radius: 1.5rem;
}

.image-text {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.image-text p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.pain-descriptions {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pain-card {
    padding: 1.5rem;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 1.5rem;
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.pain-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pain-card:nth-child(1) h3 { color: #fca5a5; }
.pain-card:nth-child(2) h3 { color: #fdba74; }
.pain-card:nth-child(3) h3 { color: #fde047; }

.pain-card p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Hope Section */
.hope-section {
    padding: 6rem 0;
}

.hope-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(88, 28, 135, 0.8));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

.hope-image {
    position: relative;
    min-height: 300px;
    order: 1;
}

.hope-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hope-content {
    padding: 3rem;
    order: 2;
}

.hope-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hope-description {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hope-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
}

.feature i {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

.feature span {
    color: white;
    font-weight: 500;
}

/* Credibility Section */
.credibility-section {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(4px);
}

.credibility-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.credibility-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.credibility-content {
    max-width: 56rem;
    margin: 0 auto;
}

.credibility-points ul {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.credibility-points li {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.credibility-content p {
    font-size: 1.125rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credibility-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.credibility-content h3 i {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

.commitment-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(4px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(51, 65, 85, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.testimonial-card p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #fbbf24;
    font-weight: 600;
}

.testimonial-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.process-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(168, 85, 247, 0.2));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.process-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.3), rgba(194, 65, 12, 0.3), rgba(245, 158, 11, 0.3));
    backdrop-filter: blur(4px);
}

.cta-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(153, 27, 27, 0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #dc2626, #ea580c, #fbbf24);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.cta-icon i {
    width: 3rem;
    height: 3rem;
    color: white;
    animation: pulse 2s infinite;
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.urgency-message {
    background: rgba(153, 27, 27, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.urgency-message p {
    font-size: 1.125rem;
    color: #fca5a5;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.urgency-message p:last-child {
    color: #e2e8f0;
    margin-bottom: 0;
}

.cta-description {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-info {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fbbf24;
}

.service-info {
    color: #94a3b8;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    text-align: center;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-specialty {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.btn-floating {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-floating:hover {
    transform: scale(1.1);
}

.btn-floating i {
    width: 2rem;
    height: 2rem;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hope-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .pain-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hope-card {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hope-image {
        min-height: auto;
    }
    
    .main-icon {
        width: 6rem;
        height: 6rem;
    }
    
    .main-icon i {
        width: 3rem;
        height: 3rem;
    }
    
    .sparkle-icon {
        width: 2.5rem;
        height: 2.5rem;
        top: -0.75rem;
        right: -0.75rem;
    }
    
    .sparkle-icon i {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .floating-whatsapp {
        bottom: 2rem;
        right: 2rem;
    }
    
    .btn-floating {
        width: 4rem;
        height: 4rem;
    }
    
    .btn-floating i {
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-card h2 {
        font-size: 3rem;
    }
}

/* MEDIA QUERIES RESPONSIVAS COMPLETAS */

/* Extra Small Devices - Celulares pequenos (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .success-counter {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .counter-item {
        width: 100%;
        max-width: 200px;
        padding: 1.5rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-info h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .video-info p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-video-small {
        font-size: 0.7rem;
        padding: 0.5rem 0.875rem;
        width: 100%;
        max-width: 180px;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .process-card {
        padding: 1.25rem;
    }
    
    .pain-card, .hope-feature {
        padding: 1.25rem;
    }
    
    .cta-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .btn-gallery-main {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Small Devices - Celulares grandes (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .success-counter {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .counter-item {
        min-width: 140px;
        max-width: 160px;
        padding: 1.75rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .btn-video-small {
        font-size: 0.8rem;
        padding: 0.625rem 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices - Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .btn {
        padding: 1.125rem 2rem;
        font-size: 1rem;
        max-width: none;
    }
    
    .success-counter {
        gap: 2rem;
        justify-content: center;
    }
    
    .counter-item {
        min-width: 160px;
        padding: 2rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pain-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hope-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Devices - Desktop pequeno (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .success-counter {
        gap: 2.5rem;
    }
    
    .counter-item {
        min-width: 180px;
        padding: 2.25rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large Devices - Desktop grande (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .success-counter {
        gap: 3rem;
    }
    
    .counter-item {
        min-width: 200px;
        padding: 2.5rem;
    }
    
    .counter-number {
        font-size: 3.5rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .video-thumbnail {
        height: 220px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Ultra Wide Devices - Monitores grandes (1441px+) */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 6.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 4.5rem;
    }
    
    .success-counter {
        gap: 4rem;
    }
    
    .counter-item {
        min-width: 220px;
        padding: 3rem;
    }
    
    .counter-number {
        font-size: 4rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .video-thumbnail {
        height: 240px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
    
    .btn-gallery-main {
        padding: 1.5rem 3rem;
        font-size: 1.25rem;
    }
}



/* NOVAS SEÇÕES ADICIONADAS */

/* Seção de Resultados Reais */
.results-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.3), rgba(37, 99, 235, 0.3));
    backdrop-filter: blur(4px);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.success-counter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.testimonials-grid-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-card-featured {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-featured:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.testimonial-result {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-author strong {
    color: #f59e0b;
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.results-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-results-main {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    margin-bottom: 1rem;
}

.btn-results-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    animation: none;
}

.results-guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Galeria de Vídeos */
.video-gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    backdrop-filter: blur(4px);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-gallery-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 400px;
}

.video-gallery-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem 1rem 0 0;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-video-small {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-video-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.video-gallery-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-gallery-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-gallery-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-gallery-main {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gallery-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}



