/* --- ESTILOS ESPECÍFICOS PARA SOBRE WORKSKY Y SOPORTE --- */

.about-page {
    padding-top: 100px; 
    background-color: white; 
    min-height: 100vh;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- HERO: SOBRE WORKSKY --- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-hero-content h1 span {
    background: linear-gradient(45deg, var(--brand-teal), var(--brand-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-content p {
    font-size: 1.15rem;
    color: var(--text-grey);
    line-height: 1.7;
}

.about-hero-img {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SECCIÓN 2: VALORES --- */
.about-values {
    background-color: #f8fafc;
    padding: 100px 0;
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 126, 119, 0.3);
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- SECCIÓN 3: SOPORTE --- */
.support-section {
    padding: 100px 0;
    background: white;
}

.support-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.support-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.support-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Tarjetas de contacto (Izquierda) */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.c-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.btn-support {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-support.primary {
    background: var(--brand-teal);
    color: white;
    border: none;
}
.btn-support.primary:hover { background: var(--brand-orange); }

.btn-support.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #cbd5e1;
}
.btn-support.secondary:hover { border-color: var(--brand-teal); color: var(--brand-teal); }

/* Acordeón FAQs (Derecha) */
.faq-container h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--brand-teal);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Clase activa para el JS */
.faq-item.active .faq-answer {
    max-height: 300px; /* Suficiente espacio para que se despliegue */
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-hero { grid-template-columns: 1fr; text-align: center; }
    .about-hero-img { height: 350px; }
    
    .values-grid { grid-template-columns: 1fr; }
    
    .support-layout { grid-template-columns: 1fr; }
}