/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000000;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0 40px;
    color: white;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background: transparent;
    z-index: 10;
    cursor: default;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    display: none !important;
    opacity: 0 !important;
}

/* Mobile Play Button */
.mobile-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.mobile-play-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 20px;
    padding: 25px 35px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(238, 90, 36, 0.4);
    transition: all 0.3s ease;
    min-width: 240px;
    justify-content: center;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(238, 90, 36, 0.6);
}

.mobile-play-button:active {
    transform: translateY(0);
}

.play-icon {
    font-size: 2rem;
    line-height: 1;
}

.play-text {
    font-size: 1.1rem;
}

/* Modal Discreta de Cookies - Tela Toda */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    cursor: pointer;
    backdrop-filter: blur(2px);
    padding: 20px;
}

.cookie-modal {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: cookieFadeIn 0.3s ease-out;
    cursor: default;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cookie-content h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

.cookie-accept-btn {
    background: #007bff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.cookie-accept-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

@keyframes cookieFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .video-overlay {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .video-overlay {
        height: 220px;
    }
}



#mainVideo {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    #mainVideo {
        height: 300px;
    }
}

@media (max-width: 480px) {
    #mainVideo {
        height: 220px;
    }
}

.progress-container {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 20px 0 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.time-display {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: white;
    border-radius: 8px;
    padding: 50px 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cta-section.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 25px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-button span {
    font-size: 1.5rem;
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 1rem;
    color: #4caf50;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    background: white;
    border-radius: 8px;
    padding: 50px 40px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.benefits-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
    background: white;
    border-radius: 8px;
    padding: 50px 40px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.testimonials-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.testimonial-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    max-width: 100%;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.testimonial-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.schedule-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}



/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}





@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section.show {
    animation: fadeInUp 0.6s ease forwards;
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .video-section,
    .cta-section,
    .benefits-section,
    .testimonials-section {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        padding: 0 15px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .testimonial-item {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
    
    .play-popup {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .play-content h2 {
        font-size: 1.5rem;
    }
    
    .play-video-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cookie-popup {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .cookie-content h3 {
        font-size: 1.2rem;
    }
    
    .cookie-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .video-section,
    .cta-section,
    .benefits-section,
    .testimonials-section {
        padding: 20px 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial-item {
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 8px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .video-overlay {
        height: 300px;
    }

    /* Correções específicas para imagens no mobile */
    .testimonials-section {
        overflow-x: hidden !important;
    }
    
    .testimonials-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .testimonial-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .testimonial-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    /* Mobile Play Button - Responsivo */
    .mobile-play-button {
        padding: 18px 25px !important;
        font-size: 0.95rem !important;
        min-width: 220px !important;
        gap: 10px !important;
    }
    
    .play-icon {
        font-size: 1.4rem !important;
    }
    
    .play-text {
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
    }
}
