/* === ESTILOS PARA AS NOVAS SEÇÕES === */

.content-sections {
    padding: 60px 0;
    background: #ffffff;
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Seção de IP */
.ip-section {
    text-align: center;
    margin-bottom: 35px;
}

.ip-section h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #3a0ca3;
}

.ip-card {
    background: linear-gradient(135deg, #f0f7ff, #e1f0ff);
    border: 1px solid #d0e3ff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.1);
}

.ip-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    border: 1px solid #e6f0ff;
}

.ip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(67, 97, 238, 0.15);
}

.ip-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #4361ee;
}

.ip-value {
    font-family: monospace;
    font-size: 1.1rem;
    word-break: break-word;
    color: #222;
}

/* Player de Vídeo */
.video-container {
    margin-bottom: 35px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f0f7ff, #e1f0ff);
    border: 1px solid #d0e3ff;
}

.video-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(67, 97, 238, 0.05);
    flex-wrap: wrap;
    border-bottom: 1px solid #e6f0ff;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }

.video-title {
    margin-left: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #4361ee;
}

.video-player {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player video {
    width: 100%;
    max-height: 450px;
    border-radius: 0 0 15px 15px;
}

/* Botão */
.btn-container {
    text-align: center;
    margin: 30px auto;
}

.lg-button {
    display: inline-block;
    background: linear-gradient(45deg, #4361ee, #3a0ca3);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    border: none;
    cursor: pointer;
}

.lg-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
    color: white;
    text-decoration: none;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
    .content-sections {
        padding: 40px 0;
    }
    
    .ip-section h2 {
        font-size: 1.3rem;
    }

    .ip-card {
        padding: 15px;
    }

    .ip-item {
        padding: 10px;
    }

    .video-player video {
        max-height: 250px;
    }

    .lg-button {
        width: 100%;
        max-width: 300px;
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .video-title {
        font-size: 0.9rem;
    }

    .ip-value {
        font-size: 0.95rem;
    }
}


/* Estilos para o Verificador de Portas */
.port-checker-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 12px;
}

.port-checker-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.port-checker-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(20,30,40,0.08);
    padding: 30px;
}

.port-checker-title {
    margin: 0 0 8px;
    font-size: 24px;
    color: #222;
    font-weight: 600;
}

.port-checker-subtitle {
    margin: 0 0 25px;
    color: #666;
    font-size: 14px;
}

.port-checker-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.port-checker-col {
    flex: 1;
    min-width: 200px;
}

.port-checker-label {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.port-checker-input, .port-checker-select {
    width: 100%;
    font-size: 14px;
    padding: 12px;
    border: 1px solid #e3e7eb;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
}

.port-checker-input:focus, .port-checker-select:focus {
    box-shadow: 0 0 0 3px rgba(11,116,255,0.08);
    border-color: #0b74ff;
}

/* CAPTCHA Styles */
.captcha-container {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e3e7eb;
}

.captcha-code {
    font-family: monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 8px;
    text-align: center;
    padding: 15px;
    background: white;
    border: 2px dashed #ccc;
    margin-bottom: 15px;
    user-select: none;
    border-radius: 6px;
}

.captcha-input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #e3e7eb;
    border-radius: 8px;
}

.captcha-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.captcha-refresh {
    background: none;
    border: none;
    color: #0b74ff;
    cursor: pointer;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.captcha-refresh:hover {
    background-color: #f0f5ff;
}

/* Botão de verificação */
.port-checker-btn {
    background: #0b74ff;
    color: #fff;
    border: 0;
    padding: 14px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s;
}

.port-checker-btn:hover {
    background: #0056cc;
}

.port-checker-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Resultados */
.port-checker-results {
    margin-top: 25px;
    display: none;
}

.port-checker-summary {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.port-checker-progress {
    height: 8px;
    background: #eef2f7;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 20px;
}

.port-checker-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0b74ff, #5ac8ff);
    transition: width 0.3s ease;
}

.port-checker-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.port-checker-table th, 
.port-checker-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f2f5;
    text-align: left;
    font-size: 14px;
}

.port-checker-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #444;
}

.status-open {
    color: #28a745;
    font-weight: 600;
}

.status-closed {
    color: #dc3545;
}

/* Responsivo */
@media (max-width: 768px) {
    .port-checker-row {
        flex-direction: column;
    }
    
    .port-checker-col {
        min-width: 100%;
    }
    
    .port-checker-card {
        padding: 20px;
    }
    
    .captcha-code {
        font-size: 20px;
        letter-spacing: 6px;
        padding: 12px;
    }
}