/* ========================================
   CSS PARA TRADUCCIONES - Fisio en Francia
   Solo estilos propios de esta página.
   Nav/footer vienen de ../style.css
   ======================================== */

/* ===== HERO SECTION ===== */
.traducciones-hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traducciones-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a4a72 0%, #3b6094 50%, #5a8abf 100%);
    z-index: 0;
}

.traducciones-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.traducciones-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 40px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.traducciones-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.traducciones-hero__badge i {
    color: #e9bb65;
    font-size: 1.1rem;
}

.traducciones-hero__badge span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.traducciones-hero__title {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease 0.2s both;
    width: 100%;
    max-width: 900px;
}

.traducciones-hero__highlight {
    background: linear-gradient(90deg, #e9bb65, #d4a24e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
    font-weight: 800;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.traducciones-hero__description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
    line-height: 1.7;
    font-weight: 400;
}

.traducciones-hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.traducciones-hero__stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.traducciones-hero__stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1;
}

.traducciones-hero__stat-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.traducciones-hero__cta {
    background: white;
    color: #3b6094;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease 0.8s both;
    border: 2px solid transparent;
}

.traducciones-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    background: #f8f8f8;
}

.traducciones-hero__cta i {
    transition: transform 0.3s ease;
}

.traducciones-hero__cta:hover i {
    transform: translateX(5px);
}

/* ===== CONTAINER GENERAL ===== */
.traducciones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10%;
}

/* ===== SECCION INFO ===== */
.traducciones-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef3f8 0%, #dce6f0 100%);
    text-align: center;
}

.traducciones-info h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #3b6094;
}

.traducciones-info p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4b5563;
}

.traducciones-btn {
    background: #3b6094;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 1rem;
}

.traducciones-btn:hover {
    background: #2a4a72;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 96, 148, 0.3);
}

/* ===== DOCUMENTOS NECESARIOS ===== */
.traducciones-documentos {
    padding: 80px 0;
    background: white;
}

.traducciones-documentos h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #3b6094;
}

.traducciones-documentos > .traducciones-container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4b5563;
    font-size: 1.1rem;
}

.traducciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.traducciones-card {
    background-color: #f7f9fc;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.traducciones-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.traducciones-card__title {
    color: #3b6094;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.traducciones-card__title i {
    color: #fff;
    background-color: #3b6094;
    padding: 5px;
    border-radius: 4px;
    margin-right: 8px;
}

.traducciones-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.traducciones-note {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

/* ===== PROCESO DE TRADUCCION ===== */
.traducciones-proceso {
    padding: 80px 0;
    background: #f9fafb;
}

.traducciones-proceso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.traducciones-proceso__content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #3b6094;
}

.traducciones-proceso__content > p {
    margin-bottom: 2rem;
    color: #4b5563;
    font-size: 1.1rem;
}

.traducciones-step {
    background-color: #fff;
    border: solid 2px #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    padding: 20px;
    gap: 20px;
    transition: all 0.3s ease;
}

.traducciones-step:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-color: #3b6094;
}

.traducciones-step__number {
    background-color: #3b6094;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.traducciones-step__content {
    flex: 1;
}

.traducciones-step__title {
    color: #3b6094;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 1.1rem;
}

.traducciones-step__content p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.traducciones-proceso__visual {
    position: sticky;
    top: 120px;
}

.traducciones-proceso__visual img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ===== VENTAJAS SECTION ===== */
.traducciones-ventajas {
    padding: 80px 0;
    background: white;
}

.traducciones-ventajas h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #3b6094;
}

.traducciones-ventajas > .traducciones-container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4b5563;
    font-size: 1.1rem;
}

.traducciones-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.traducciones-ventaja-card {
    background-color: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.traducciones-ventaja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #3b6094;
}

.traducciones-ventaja-card i {
    color: #fff;
    background-color: #3b6094;
    font-size: 1.8rem;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.traducciones-ventaja-card span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.traducciones-ventaja-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FORMULARIO SECTION ===== */
.traducciones-formulario {
    padding: 80px 0;
    background: linear-gradient(135deg, #dce6f0 0%, #c5d5e8 100%);
}

.traducciones-formulario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.traducciones-formulario__info h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #3b6094;
}

.traducciones-formulario__info p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
}

.traducciones-formulario__benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.traducciones-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.traducciones-benefit i {
    color: #e9bb65;
    font-size: 1.2rem;
}

.traducciones-benefit span {
    color: #374151;
    font-weight: 500;
}

.traducciones-formulario__wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.traducciones-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.traducciones-form label {
    color: #374151;
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.traducciones-form input,
.traducciones-form select,
.traducciones-form textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.traducciones-form input:focus,
.traducciones-form select:focus,
.traducciones-form textarea:focus {
    outline: none;
    border-color: #3b6094;
    background: #fff;
}

.traducciones-form input[type="submit"],
.traducciones-form button {
    background: linear-gradient(135deg, #3b6094, #5a8abf);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

.traducciones-form input[type="submit"]:hover,
.traducciones-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 96, 148, 0.4);
}

/* File upload area */
.file-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
    margin-top: 8px;
}

.file-upload-area:hover {
    border-color: #3b6094;
}

.file-upload-area label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.file-upload-area i {
    font-size: 28px;
    color: #3b6094;
}

.file-hint {
    font-size: 12px;
    color: #94a3b8;
    margin: 6px 0 0;
}

#file-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    text-align: left;
    font-size: 13px;
    color: #475569;
}

#file-list li {
    padding: 3px 0;
    border-bottom: 1px solid #f1f5f9;
}

#form-mensaje {
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
}

/* ===== FAQ ===== */
.traducciones-faq {
    padding: 80px 0;
    background: white;
}

.traducciones-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #3b6094;
}

.traducciones-faq__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.traducciones-faq__item {
    margin-bottom: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.traducciones-faq__item:hover {
    border-color: #3b6094;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.traducciones-faq__question {
    padding: 1.5rem;
    background: #f9fafb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.traducciones-faq__question:hover {
    background: #f3f4f6;
}

.traducciones-faq__question span {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.05rem;
}

.traducciones-faq__question i {
    color: #3b6094;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.traducciones-faq__item.active .traducciones-faq__question i {
    transform: rotate(45deg);
}

.traducciones-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.traducciones-faq__item.active .traducciones-faq__answer {
    max-height: 500px;
}

.traducciones-faq__answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .traducciones-hero__title { font-size: 2.8rem; }
    .traducciones-hero__description { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .traducciones-hero {
        min-height: 80vh;
    }

    .traducciones-hero__title { font-size: 2rem; }
    .traducciones-hero__description { font-size: 1rem; }
    .traducciones-hero__stats { gap: 2rem; }
    .traducciones-hero__stat-number { font-size: 2rem; }

    .traducciones-proceso-grid,
    .traducciones-formulario-grid {
        grid-template-columns: 1fr;
    }

    .traducciones-proceso__visual {
        position: relative;
        top: 0;
    }

    .traducciones-ventajas-grid { grid-template-columns: 1fr; }
    .traducciones-grid { grid-template-columns: 1fr; }
}