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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-cyan);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    margin: 0 auto;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-section {
    margin-bottom: 2rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.mvd-text {
    color: var(--accent-cyan);
    display: block;
    font-size: 4rem;
    letter-spacing: 0.1em;
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-300);
    letter-spacing: 0.05em;
}

.hero-headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.urgency-box {
    background: linear-gradient(135deg, var(--warning), #f97316);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.urgency-icon {
    font-size: 1.5rem;
}

.urgency-text strong {
    display: block;
    font-size: 1.1rem;
}

.urgency-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.marcelo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Target Audience Section */
.target-audience {
    padding: 6rem 0;
    background: var(--white);
}

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

.audience-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.audience-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Course Content Section */
.course-content {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.course-content .section-header h2 {
    color: var(--white);
}

.days-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.day-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.day-number {
    background: linear-gradient(135deg, var(--accent-cyan), var(--secondary-blue));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.day-header h3 {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.period {
    margin-bottom: 2rem;
}

.period h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.period ul {
    list-style: none;
    padding-left: 0;
}

.period li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-300);
}

.period li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.break-time, .coffee-break {
    background: rgba(6, 182, 212, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
    font-weight: 500;
}

.coffee-break {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* What's Included Section */
.whats-included {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.included-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.included-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.included-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.included-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.included-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* About Marcelo Section */
.about-marcelo {
    padding: 6rem 0;
    background: var(--white);
}

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

.intro-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--gray-800);
}

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

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.achievement-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.achievement-text span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.testimonial-video {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Video */
@media (max-width: 768px) {
    .testimonial-video {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .testimonial-video {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

.gallery-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    text-align: center;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 0 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 16px;
    width: 100%;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 11px); /* 3 items per view on desktop */
    min-width: 0;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 200px; /* Reduced height for PC */
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: block;
}

.carousel-item img:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-cyan);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--accent-cyan);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: var(--accent-cyan);
    opacity: 0.8;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 calc(50% - 8px); /* 2 items per view on tablet */
    }
    
    .carousel-item img {
        height: 180px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: -20px;
    }
    
    .carousel-btn.next {
        right: -20px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .carousel-container {
        padding: 0 10px;
    }
    
    .carousel {
        padding: 15px;
    }
    
    .carousel-track {
        gap: 12px;
    }
    
    .carousel-item {
        flex: 0 0 100%; /* 1 item per view on mobile */
    }
    
    .carousel-item img {
        height: 160px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: -17px;
    }
    
    .carousel-btn.next {
        right: -17px;
    }
    
    .carousel-indicators {
        margin-top: 15px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

/* Sponsors Section */
.sponsors {
    padding: 6rem 0;
    background: var(--white);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.sponsor-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-logo {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.pricing .section-header h2 {
    color: var(--white);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.pricing-card.featured {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--secondary-blue));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.vagas {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    display: block;
}

.payment-method {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.pricing-installments {
    margin-bottom: 2rem;
    color: var(--gray-300);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--secondary-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.pricing-button.secondary {
    background: linear-gradient(135deg, var(--gray-600), var(--gray-800));
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--warning);
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: var(--light-bg);
}

.location-content {
    max-width: 600px;
    margin: 0 auto;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-item i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-top: 0.25rem;
}

.location-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.location-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-bg));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray-300);
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--secondary-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.footer-logo p {
    color: var(--gray-300);
}

.footer-contact h4,
.footer-location h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.footer-contact p,
.footer-location p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-cyan);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .mvd-text {
        font-size: 3rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .days-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .achievements {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .carousel-item {
        min-width: 250px;
        height: 180px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
    
    /* Mobile text optimizations */
    .hero-description {
        font-size: 1.1rem;
    }
    
    .intro-text {
        font-size: 1.2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .audience-item p,
    .included-item p {
        font-size: 0.9rem;
    }
    
    .period li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .mvd-text {
        font-size: 2.5rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .day-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .carousel-item {
        min-width: 120px;
        height: 100px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .scroll-to-top {
        bottom: 80px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}


/* Carousel Styles */
.carousel-container {
    margin-top: 2rem;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 188, 212, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: rgba(0, 188, 212, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #00bcd4;
    transform: scale(1.2);
}

/* Mobile Responsive for Carousel */
@media (max-width: 768px) {
    .carousel-slide {
        width: 250px;
        height: 160px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        width: 200px;
        height: 130px;
    }
    
    .carousel-wrapper {
        padding: 15px;
    }
}


/* Carousel Styles - Corrigido */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.carousel-track {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 250px;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-slide {
    display: none !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex: 0 0 auto;
}

.carousel-slide.active {
    display: block !important;
    opacity: 1;
}

.carousel-slide img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.carousel-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #00d4ff;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 123, 191, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0, 123, 191, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 123, 191, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #007bbf;
    transform: scale(1.2);
}

/* Modal Styles - Corrigido */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #00d4ff;
}

/* Responsive Carousel - Corrigido */
@media (max-width: 768px) {
    .carousel-slide img {
        width: 250px;
        height: 170px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-wrapper {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        width: 200px;
        height: 140px;
    }
    
    .carousel-wrapper {
        min-height: 200px;
    }
    
    .carousel-track {
        padding: 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}


/* Video Styles - Otimizado para Mobile */
.video-testimonials {
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #007bbf;
    background: #000;
}

/* Mobile Video Optimization */
@media (max-width: 768px) {
    .testimonial-video {
        max-width: 100%;
        width: 95%;
        margin: 0 auto;
        border-radius: 10px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .testimonial-video {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
        border-radius: 8px;
        border-width: 1px;
        max-height: 250px;
    }
    
    .video-testimonials {
        margin-bottom: 2rem;
        padding: 0 10px;
    }
}


/* Mobile Optimization - Geral */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .included-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .included-item p {
        font-size: 0.85rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .audience-item h3 {
        font-size: 1rem;
    }
    
    .audience-item p {
        font-size: 0.85rem;
    }
}

/* Otimização de imagens para PC e Mobile */
.marcelo-image {
    max-width: 300px; /* Reduzido de 400px */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide img {
    width: 200px; /* Reduzido de 300px */
    height: 150px; /* Reduzido de 200px */
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-logo {
    max-width: 120px; /* Reduzido de 150px */
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Otimizações específicas para tablet */
@media (max-width: 768px) {
    .marcelo-image {
        max-width: 250px; /* Reduzido para tablet */
    }
    
    .carousel-slide img {
        width: 180px; /* Reduzido para tablet */
        height: 135px;
    }
    
    .sponsor-logo {
        max-width: 100px; /* Reduzido para tablet */
    }
}

/* Otimizações específicas para mobile */
@media (max-width: 480px) {
    .marcelo-image {
        max-width: 200px; /* Bem menor para mobile */
    }
    
    .carousel-slide img {
        width: 150px; /* Bem menor para mobile */
        height: 112px;
    }
    
    .sponsor-logo {
        max-width: 80px; /* Bem menor para mobile */
    }
    
    .hero-image {
        margin-top: 2rem;
        text-align: center;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-items: center;
    }
}

