/* Landing Page - Promotores SEO */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: #e7f3ff;
    color: #0d6efd;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 212, 170, 0.5);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4aa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-warning {
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    border: none;
    color: #000;
}

.btn-warning:hover {
    background: linear-gradient(45deg, #ff8c00, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary {
    background: linear-gradient(45deg, #00d4aa, #0099cc);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0099cc, #00d4aa);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.4);
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-warning {
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    color: #856404;
}

/* Social Proof */
.social-proof {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Features */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
    color: white;
    font-size: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

/* Urgency Counter */
.urgency-counter {
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    animation: pulse 2s infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .d-flex.gap-3 .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* SEO Optimizations */
.seo-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.seo-highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
}

.trust-badge i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #00d4aa, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Success Animation */
.success-checkmark {
    color: #28a745;
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ========================================
   PLAYER DE VÍDEO PERSONALIZADO
   ======================================== */

.video-player-container {
    max-width: 100%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

/* Controles do Vídeo */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

/* Barra de Progresso Fixa */
.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #0099cc;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 153, 204, 0.5);
}

/* Botões de Controle */
.controls-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}



/* Controle de Volume */
.volume-control {
    position: relative;
    display: flex;
    align-items: center;
}

.volume-slider {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.volume-control:hover .volume-slider {
    opacity: 1;
    visibility: visible;
}

.volume-slider input[type="range"] {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #00d4aa;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #00d4aa;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Overlay de Play */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    font-size: 80px;
    color: white;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.overlay-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* Estados do Vídeo */
.video-player.playing + .video-controls .play-pause-btn i {
    transform: scale(0.8);
}

.video-player.playing + .video-controls .play-pause-btn i::before {
    content: "\f04c"; /* Ícone de pausa */
}

/* Responsivo */
@media (max-width: 768px) {
    .video-controls {
        padding: 15px 10px 10px;
    }
    
    .controls-buttons {
        gap: 10px;
    }
    
    .control-btn {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }
    
    .time-display {
        font-size: 12px;
    }
    
    .play-button {
        font-size: 60px;
    }
    
    .overlay-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .video-wrapper {
        border-radius: 10px;
    }
    
    .controls-buttons {
        gap: 8px;
    }
    
    .control-btn {
        font-size: 14px;
        width: 28px;
        height: 28px;
    }
    
    .play-button {
        font-size: 50px;
    }
}

/* ========================================
   SEÇÃO DE INTEGRAÇÕES
   ======================================== */

.productivity-badge {
    display: inline-block;
    background: white;
    border: 2px solid #333;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.integrations-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.integrations-track {
    display: flex;
    gap: 20px;
    animation: scroll-integrations 30s linear infinite;
    width: max-content;
}

@keyframes scroll-integrations {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animação no hover */
.integrations-carousel:hover .integrations-track {
    animation-play-state: paused;
}

.integration-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    flex-shrink: 0;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #0099cc;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.integration-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    display: block;
}

/* Cores específicas para cada integração */
.google-tag-manager {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.taboola {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.google-ads {
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853);
}

.google-analytics {
    background: linear-gradient(135deg, #fbbc04, #ea4335);
}

.meta {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.webhooks {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.tiktok {
    background: linear-gradient(135deg, #000000, #25f4ee, #fe2c55);
}

.api {
    background: linear-gradient(135deg, #00d4aa, #0099cc);
}

/* Hover effects para os ícones */
.integration-card:hover .integration-icon {
    transform: scale(1.1);
}

/* Responsivo para integrações */
@media (max-width: 768px) {
    .integrations-track {
        gap: 15px;
    }
    
    .integration-card {
        padding: 20px 15px;
        min-width: 150px;
    }
    
    .integration-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .integration-name {
        font-size: 13px;
    }
    
    .integrations-track {
        animation-duration: 25s;
    }
}

@media (max-width: 576px) {
    .integrations-track {
        gap: 10px;
    }
    
    .integration-card {
        padding: 15px 10px;
        min-width: 120px;
    }
    
    .integration-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .integration-name {
        font-size: 12px;
    }
    
    .integrations-track {
        animation-duration: 20s;
    }
} 