/* ============================================
   PLUGIN SKETCHUP - DESIGN TECNOLÓGICO
   Estilo moderno inspirado no blog
   ============================================ */

/* ============================================
   VÍDEO DE FUNDO HERO
   ============================================ */

.pag1.video-background {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.pag1.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.pag1.video-background video {
    position: relative;
    z-index: 0;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .pag1.video-background {
        margin-top: 0;
        min-height: 50vh;
        height: auto;
        position: relative;
        top: 0;
    }
    
    .pag1.video-background video {
        width: 100%;
        height: 100%;
        min-height: 50vh;
        object-fit: cover;
        position: static;
        transform: none;
    }
    
    .pag1.video-background::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

/* Fix específico para iPhone/Safari */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .pag1.video-background {
            margin-top: 62px !important;
            padding-top: 0 !important;
            position: relative;
            overflow: visible;
        }
        
        .pag1.video-background video {
            position: relative !important;
            top: 0 !important;
            left: 0 !important;
            transform: none !important;
            width: 100% !important;
            height: auto !important;
            min-height: 300px;
        }
    }
}

/* ============================================
   BANNER PRINCIPAL
   ============================================ */

.banner h1 {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-shadow: none;
    animation: none;
}

.banner h1:first-child {
    font-size: 24px;
    margin-bottom: 8px;
}

.banner h1:nth-child(2) {
    font-size: 20px;
    margin: 4px 0;
}

.banner h1:last-child {
    font-size: 24px;
    margin-top: 8px;
}

/* ============================================
   BOTÃO DE DOWNLOAD PRINCIPAL
   ============================================ */

#downloadPluginBtn .botao,
#downloadPluginBtn2 .botao {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1px;
}

#downloadPluginBtn .botao::before,
#downloadPluginBtn2 .botao::before {
    display: none;
}

#downloadPluginBtn:hover .botao,
#downloadPluginBtn2:hover .botao {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* ============================================
   SEÇÃO DE VANTAGENS
   ============================================ */

.main > h1:not(.banner h1) {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 0;
    font-size: 20px;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.main > h1:not(.banner h1)::after {
    display: none;
}

.main > p:not(.vantagem-item span) {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 8px 0 16px 0;
    font-size: 13px;
}

/* ============================================
   VÍDEOS E PRINTS
   ============================================ */

.video_container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.video_container:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.custom_controls {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom_controls button {
    background: transparent;
    transition: all 0.2s ease;
}

.custom_controls button:hover {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    transform: scale(1.05);
}

.custom_controls input[type=range] {
    accent-color: #10b981 !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.custom_controls input[type=range]::-webkit-slider-thumb {
    background: #10b981 !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.custom_controls input[type=range]::-moz-range-thumb {
    background: #10b981 !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

/* ============================================
   PRINTS/SCREENSHOTS
   ============================================ */

.prints {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.prints:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.prints h1 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.prints_plugin {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.prints_plugin:hover {
    transform: scale(1.02);
}

/* ============================================
   SEÇÃO PRINCIPAL
   ============================================ */

.container-box {
    position: relative;
    background: #1a1a1a;
}

.container-box::before {
    display: none;
}

.container-box > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   SETA DE ROLAGEM
   ============================================ */

.seta_rolagem_container {
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

.seta_rolagem_circle {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.seta_rolagem_circle2 {
    animation-delay: 0.2s;
}

.seta_rolagem_circle3 {
    animation-delay: 0.4s;
}

.seta_rolagem_arrow {
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: #10b981;
    filter: drop-shadow(0 3px 8px rgba(16, 185, 129, 0.3));
}

/* ============================================
   CARD DE VANTAGENS
   ============================================ */

.vantagens-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin: 24px auto;
    max-width: 900px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vantagens-card::before {
    display: none;
}

.vantagens-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.vantagens-title i {
    color: #10b981;
    font-size: 16px;
    animation: none;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.vantagem-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    box-shadow: none;
}

.vantagem-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
    border-color: rgba(16, 185, 129, 0.3);
}

.vantagem-item i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
    filter: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #10b981;
    background-clip: unset;
}

.vantagem-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .vantagens-card {
        padding: 20px 16px;
        margin: 20px 0;
    }
    
    .vantagens-title {
        font-size: 18px;
        gap: 8px;
    }
    
    .vantagem-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .vantagem-item span {
        font-size: 12px;
    }
}

/* ============================================
   MELHORIAS GERAIS
   ============================================ */

.main {
    animation: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Textos com melhor contraste */
.main > p {
    text-shadow: none;
}

/* ============================================
   RODAPÉ - CORES PERSONALIZADAS
   ============================================ */

.footer-section h4 {
    color: #667eea !important;
}

.footer-section h4::after {
    background: #667eea !important;
}

.footer-logo h3 {
    color: #667eea !important;
}

.social-link {
    border-color: rgba(102, 126, 234, 0.3) !important;
    color: #667eea !important;
}

.social-link:hover {
    background: #667eea !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

.footer-links a:hover {
    color: #667eea !important;
}

.footer-links a::before {
    background: #667eea !important;
}

.contact-item i {
    color: #667eea !important;
}

.newsletter h5 {
    color: #667eea !important;
}

.newsletter-form button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5) !important;
}

.footer::before {
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea) !important;
}

.footer-bottom-links a:hover {
    color: #667eea !important;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .banner h1 {
        font-size: 2em;
    }
    
    .prints {
        width: 90%;
        padding: 20px;
    }
    
    .video_container {
        margin: 0 10px 20px 10px;
    }
}


