.elementor-1104 .elementor-element.elementor-element-41345fb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1104 .elementor-element.elementor-element-5f9d6d1{text-align:center;}.elementor-1104 .elementor-element.elementor-element-1055c1d{--display:flex;}.elementor-1104 .elementor-element.elementor-element-1055c1d:not(.elementor-motion-effects-element-type-background), .elementor-1104 .elementor-element.elementor-element-1055c1d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EEEEEE;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-40288a2 *//* Estilos para o Container Principal (simula o fundo arredondado) */
.container-principal {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px; /* Bordas arredondadas do container principal */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
    padding-top: 50px; /* Espaço para o "canto" laranja */
}

/* Simula o elemento de canto superior laranja */
.header-corner {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background-color: #508051; /* Laranja */
    border-radius: 8px;
}

/* --- 1. Seção do Vídeo --- */
.video-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    /* Proporção 16:9 - Truque para vídeos responsivos */
    padding-bottom: 56.25%; /* 9/16 = 0.5625 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Estilo para simular o layout da imagem (esmaecer e sobrepor) */
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Sobreposição escura */
    color: white;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.video-overlay p {
    font-size: 0.8em;
    font-weight: bold;
    color: #ff6600; /* Laranja */
    background-color: black;
    padding: 2px 5px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.video-overlay h2 {
    font-size: 2em;
    line-height: 1.1;
    margin: 0 0 15px 0;
}

.assistir-btn {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.assistir-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- 2. Seleção de Sistema Operacional --- */
.secao-drivers {
    margin-bottom: 40px;
}

.titulo-drivers {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.subtitulo-drivers {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 30px;
}

.cards-drivers {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaçamento entre os cards */
    flex-wrap: wrap; /* Para responsividade */
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 20px;
    width: 180px;
    text-align: center;
    transition: box-shadow 0.3s;
    min-height: 240px; /* Aumentado para acomodar botões extras */
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-so {
    display: block;
    margin: 0 auto 10px;
    color: #333; /* Cor do ícone */
}

.card p {
    font-weight: bold;
    margin-bottom: 15px; /* Reduzido para dar espaço aos botões */
    color: #333;
    flex-shrink: 0;
}

/* Container para os botões dentro do card */
.btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaçamento entre botões */
    flex-grow: 1;
    justify-content: flex-end;
}

.btn-download {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 0.9em;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    margin: 0; /* Remove margens padrão */
}

.btn-download:hover {
    background-color: #f0f0f0;
}

/* Botão secundário (segundo botão) com cor diferente */
.btn-download.secondary {
    background-color: #f8f9fa;
    border-color: #508051;
    color: #508051;
    font-weight: 600;
}

.btn-download.secondary:hover {
    background-color: #e9ecef;
}

/* Estilo específico para o card Mac (que tem apenas um botão) */
.card:has(.btn-container:only-child) .btn-download {
    margin-top: auto; /* Empurra o botão para baixo */
}

/* --- 3. Links de Navegação Inferiores --- */
.links-inferiores {
    margin: 40px 0 20px;
}

.links-inferiores p {
    font-size: 1em;
    color: #333;
    margin-bottom: 20px;
}

.btn-siga-em-frente {
    background-color: #508051; /* Laranja */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.btn-siga-em-frente:hover {
    background-color: #50805;
}

.btn-voltar {
    display: inline-flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 15px;
}

.icon-voltar::before {
    content: "←"; /* Seta para a esquerda */
    margin-right: 5px;
    font-size: 1.2em;
}

/* --- 4. Link do Manual --- */
.link-manual {
    font-size: 0.9em;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.link-manual a {
    color: #508051;
    font-weight: bold;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .cards-drivers {
        gap: 15px;
    }
    
    .card {
        width: 160px;
        min-height: 230px;
    }
}

@media (max-width: 576px) {
    .cards-drivers {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 200px;
    }
}/* End custom CSS */