/* css/sobre.css - Estilos específicos da página Sobre */

.about {
    padding: var(--header-height) 0; /* antes 120px 0 */
    background: var(--primary-black);
    position: relative;
    z-index: 1;
    /* margin-top removido */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 30px;
}

.image-placeholder {
    background: var(--primary-black);
    padding: 15px;
    border-left: 3px solid var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    height: fit-content;
}

/* IMAGEM MAIOR - PRINCIPAL ALTERAÇÃO */
.test-image {
    max-width: 90%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.status {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.status-message {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--primary-black);
    border-left: 3px solid var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.status-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    text-align: center;
}

.separator-line {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 60px 0;
}

/* Botão moderno e arredondado */
.status-badge {
    display: inline-block;
    padding: 16px 42px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--text-primary) 0%, #ffffff 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.status-badge:hover {
    color: var(--primary-black);
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.status-badge:hover::before {
    left: 0;
}

.status-badge:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.status-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.status-badge:hover::after {
    opacity: 1;
}

/* Background específico da página sobre */
.bg-left {
    background-image: url('../images/cubokok.gif');
}

/* Melhorias de acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsividade específica da página sobre */
@media (max-width: 968px) {
    .section-title {
        font-size: 2rem;
    }
    
    .test-image {
        max-width: 95%;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .status-badge {
        padding: 15px 38px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about {
        margin-top: 0; /* removido margin-top */
        padding: var(--header-height) 0;
    }
    
    .image-placeholder {
        padding: 10px;
        min-height: 200px;
    }
    
    .status-message {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .separator-line {
        margin: 40px 0;
    }
    
    .test-image {
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: start;
    }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-text p {
        margin-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .status-badge {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
    
    .about-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .about-text p {
        margin-bottom: 15px;
    }
    
    .status-text {
        font-size: 1.1rem;
    }
    
    .image-placeholder {
        min-height: 180px;
        padding: 8px;
        display: flex;
        align-items: center;
    }
    
    .test-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .status-badge {
        padding: 12px 30px;
        font-size: 0.9rem;
        border-width: 1.5px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        align-items: start;
    }
    
    .about-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .about-text p {
        margin-bottom: 12px;
    }
    
    .image-placeholder {
        min-height: 160px;
        padding: 6px;
        display: flex;
        align-items: center;
    }
    
    .test-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .status-badge {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: start;
    }
    
    .about-text {
        font-size: 0.7rem;
    }
    
    .image-placeholder {
        min-height: 150px;
        padding: 5px;
    }
    
    .test-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}