/* ====================================================
   JUNTA DE PLANIFICACIÓN - ESTILOS CLÁSICOS SENCILLOS
   Diseño simple y limpio basado en la imagen de referencia
   ==================================================== */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    background-color: #f5f5f5;
}

/* ====================================================
   HEADER CLÁSICO
   ==================================================== */
.modern-header {
    background-color: white;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.main-logo {
    height: 80px;
    width: auto;
}

.main-logo-v2 {
    height: 100px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #333;
}

.nav-link.active {
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
}

/* ====================================================
   CONTENIDO PRINCIPAL
   ==================================================== */
.modern-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: calc(100vh - 120px);
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* ====================================================
   TÍTULO Y SECCIÓN DE INSTRUCCIONES
   ==================================================== */
.hero-section {
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.hero-title {
    font-size: 20px;
    font-weight: bold;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.hero-underline {
    width: 50px;
    height: 3px;
    background-color: #c9a961;
    margin: 0 0 20px 0;
}

.hero-subtitle {
    display: none;
}

/* Sección de instrucciones */
.instructions-modern {
    margin-bottom: 30px;
}

.info-card {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.info-title {
    display: none;
}

.info-grid {
    display: block;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #4a4a4a;
}

.info-number {
    font-weight: bold;
    margin-right: 5px;
}

.equal-opp-notice {
    background: none;
    border: none;
    padding: 0;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.4;
    text-align: justify;
}

.equal-opp-notice i {
    display: none;
}

/* ====================================================
   FORMULARIO CLÁSICO
   ==================================================== */
.modern-form {
    background: none;
}

.form-card {
    background: none;
    border: none;
    box-shadow: none;
    margin-bottom: 30px;
    padding: 0;
}

.card-header {
    background: none;
    border: none;
    padding: 0 0 15px 0;
}

.card-header h2 {
    font-size: 16px;
    font-weight: bold;
    color: #4a4a4a;
    margin: 0;
}

.card-header i {
    display: none;
}

.card-body {
    padding: 0;
}

/* ====================================================
   CAMPOS DE FORMULARIO
   ==================================================== */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: normal;
    color: #6b4423;
    margin-bottom: 5px;
}

.required {
    color: #d00;
    font-weight: bold;
}

/* ...existing code... */
:root {
    --border-radius: 8px;
    /* ajusta aquí si quieres más o menos redondeo */
}

/* ...existing code... */

.form-control {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border-radius: var(--border-radius);
    /* <-- agregado */
}

.form-control:focus {
    outline: none;
    border-color: #999;
    background-color: #ffffff;
}

/* ...existing code... */

.upload-item {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fafafa;
    border-radius: var(--border-radius);
    /* <-- agregado */
}

/* ...existing code... */

.declaration-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.4;
    text-align: justify;
    border-radius: var(--border-radius);
    /* <-- agregado */
}

/* ...existing code... */

.form-card {
    background: none;
    border: none;
    box-shadow: none;
    margin-bottom: 30px;
    padding: 0;
    border-radius: var(--border-radius);
    /* opcional si quieres redondear la tarjeta */
}

/* ...existing code... */

.btn-submit {
    background-color: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: calc(var(--border-radius) - 2px);
    /* botones un poco menos redondeados */
}

/* ...existing code... */

/* ====================================================
   RADIO BUTTONS CLÁSICOS
   ==================================================== */
.radio-section {
    margin-bottom: 15px;
}

.radio-question {
    display: block;
    font-size: 13px;
    font-weight: normal;
    color: #6b4423;
    margin-bottom: 5px;
}

.radio-options {
    display: flex;
    gap: 20px;
}

.radio-modern {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
}

.radio-modern input[type="radio"] {
    margin-right: 5px;
    transform: scale(1);
}

.radio-custom {
    display: none;
}

.radio-label {
    color: #333;
}

/* ====================================================
   SUBIDA DE ARCHIVOS
   ==================================================== */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.upload-item {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fafafa;
}

.upload-label {
    display: block;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    color: #333;
}

.upload-label i {
    display: block;
    font-size: 24px;
    color: #666;
    margin-bottom: 8px;
}

.upload-label span {
    display: block;
}

.upload-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.upload-note i {
    margin-right: 5px;
}

.file-name {
    font-size: 12px;
    color: #2c5aa0;
    margin-top: 5px;
    font-weight: bold;
}

/* ====================================================
   DECLARACIÓN
   ==================================================== */
.declaration-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.4;
    text-align: justify;
}

.checkbox-modern {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    gap: 8px;
}

.checkbox-modern input[type="checkbox"] {
    margin: 0;
    transform: scale(1.1);
}

.checkbox-custom {
    display: none;
}

.checkbox-label {
    color: #333;
    line-height: 1.3;
}

/* ====================================================
   BOTÓN DE ENVÍO
   ==================================================== */
.submit-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.btn-submit {
    background-color: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
}

.btn-submit:hover {
    background-color: #1e3f73;
}

.btn-submit i {
    margin-right: 8px;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-secondary i {
    margin-right: 8px;
}

/* ====================================================
   FOOTER
   ==================================================== */
.modern-footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 12px;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-links a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: #ccc;
}

/* ====================================================
   ALERTAS
   ==================================================== */
.flash-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.alert {
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    font-size: 13px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert i {
    margin-right: 8px;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .modern-main {
        padding: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        min-width: auto;
    }

    .radio-options {
        flex-direction: column;
        gap: 8px;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Sobrescritura de estilo para form-control (inputs, select, textarea) */
.form-control,
select.form-control,
textarea.form-control,
input.form-control {
    padding: 8px 10px;
    border: 1px solid #d1d1d1;
    background-color: #fafafa;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* ====================================================
   ESTADOS DE FOCUS PARA ACCESIBILIDAD
   ==================================================== */
.form-control:focus,
select.form-control:focus,
textarea.form-control:focus,
input.form-control:focus {
    outline: none;
    border-color: #999;
    background-color: #ffffff;
}

.radio-modern input:focus,
.checkbox-modern input:focus,
.btn-submit:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* ====================================================
   UTILIDADES PARA OCULTAR ICONOS MODERNOS
   ==================================================== */
.fas,
.fab {
    display: none !important;
}

/* Excepciones para iconos necesarios en uploads */
.upload-label .fas {
    display: block !important;
}

.upload-note .fas {
    display: inline !important;
}

.alert .fas {
    display: inline !important;
}

.btn-submit .fas,
.btn-secondary .fas {
    display: inline !important;
}

/* ====================================================
   ESTILOS PARA DIRECTORIO DE EMPLEOS
   ==================================================== */

/* Estilos específicos para la página de directorio */
.directorio-header {
    background-color: white;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.directorio-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.directorio-main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 50px;
}

.directorio-page-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    margin: 3rem 1rem 1rem 1rem;
}

.directorio-title-underline {
    width: 50px;
    height: 3px;
    background-color: #d4b06a;
    margin: 0 auto 40px;
}

.directorio-description {
    text-align: left;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 14px;
}

/* Job Links */
.job-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-link {
    color: #5fa7d6;
    text-decoration: underline;
    font-size: 14px;
    line-height: 1.4;
}

.job-link:hover {
    color: #2c5aa0;
}

/* Dropdown Styles */
.job-dropdown {
    position: relative;
    margin-bottom: 8px;
}

.job-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.job-dropdown-header:hover .job-dropdown-title {
    color: #2c5aa0;
}

.job-dropdown-title {
    color: #5fa7d6;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: underline;
    flex: 1;
}

.job-dropdown-arrow {
    color: #5fa7d6;
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.job-dropdown.active .job-dropdown-arrow {
    transform: rotate(180deg);
}

.job-dropdown-content {
    display: none;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px;
    margin-top: 4px;
    margin-left: 16px;
}

.job-dropdown.active .job-dropdown-content {
    display: block;
    animation: slideDownJob 0.3s ease;
}

@keyframes slideDownJob {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-info-section {
    margin-bottom: 12px;
}

.job-info-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: black;
    margin-bottom: 4px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.job-info-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #444;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    white-space: pre-wrap;
}

.job-salary {
    font-family: 'Roboto', sans-serif;
    color: black;
    font-weight: 500;
    font-size: 14px;
}

.job-apply-btn {
    display: inline-block;
    background: #d4b06a;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
    transition: background 0.3s ease;
}

.job-apply-btn:hover {
    background: #c19d52;
    color: white;
}

/* ====================================================
   ESTILOS PARA PÁGINA DE RESULTADO (SUBMIT_RESULT)
   ==================================================== */

/* Header simple para resultado */
.result-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.result-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.result-header .logo img {
    width: 300px;
    height: 100px;
    border-radius: 50%;
}

/* Contenido principal de resultado */
.result-main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.result-container {
    max-width: 600px;
    width: 100%;
}

/* Tarjeta de resultado */
.result-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease-out;
}

.result-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icono de resultado */
.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.result-icon.success {
    background: #28a745;
    color: white;
}

.result-icon.error {
    background: #dc3545;
    color: white;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Título de resultado */
.result-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.result-title.success {
    color: #28a745;
}

.result-title.error {
    color: #dc3545;
}

/* Línea decorativa */
.title-underline {
    width: 50px;
    height: 3px;
    margin: 0 auto 30px;
}

.title-underline.success {
    background-color: #28a745;
}

.title-underline.error {
    background-color: #dc3545;
}

/* Mensaje de resultado */
.result-message {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ID de resultado */
.result-id {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #d4a853;
}

.result-id p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.result-id strong {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 600;
}

/* Botones de acción en resultado */
.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mensajes flash en resultado */
.flash-messages {
    margin-bottom: 20px;
}

.flash-message {
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Estados específicos */
.success-state {
    border-left: 4px solid #28a745;
}

.error-state {
    border-left: 4px solid #dc3545;
}

/* Footer de resultado */
.result-footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
}

.result-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* Responsive para resultado */
@media (max-width: 768px) {
    .result-header-content {
        padding: 0 20px;
    }

    .result-main-content {
        padding: 40px 20px;
    }

    .result-card {
        padding: 40px 20px;
    }

    .result-title {
        font-size: 24px;
    }

    .result-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .result-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .result-footer .footer-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
}

/* Mission Section - CON IMAGEN DE MAPA NARANJA */
.mission {
    background: url('/static/map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 60px 250px 60px;
    /* Más padding abajo para el espacio de las tarjetas */
    text-align: center;
    position: relative;
    overflow: visible;
    /* Importante para que no corte nada si se sale */
    z-index: 1;
}

.mission h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission-underline {
    width: 140px;
    height: 3px;
    background: white;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Section - SUPERPUESTA AL MAPA */
.contact-section {
    display: flex;
    gap: 60px;
    padding: 0 60px 120px;
    /* Quitamos padding top */
    background: transparent;
    /* Fondo transparente para ver el mapa detrás */
    position: relative;
    margin-top: -150px;
    /* Mueve la sección hacia arriba sobre el mapa */
    z-index: 10;
    /* Asegura que esté por encima del mapa */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    position: relative;
    z-index: 1;
}

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 50px 40px;
}

.contact-icon {
    color: #1a7a8a;
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.contact-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    margin-top: 30px;
}

.contact-info p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-phone {
    color: #c4a557 !important;
    font-weight: 600;
    margin-top: 20px;
}

.footer-logo-jp {
    max-width: 600px;
    height: auto;
    margin: -7rem 1rem 1rem 55rem;
}

/* ====================================================
   CLASES UTILITARIAS PARA HEADER
   ==================================================== */

/* Background colors */
.bg-white {
    background-color: #ffffff;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

/* Border utilities */
.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

/* Position */
.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

/* Z-index */
.z-50 {
    z-index: 50;
}

/* Max width */
.max-w-7xl {
    max-width: 80rem;
    /* 1280px */
}

/* Margin */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Padding */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* Gap */
.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

/* Height */
.h-12 {
    height: 3rem;
}

/* Text sizes */
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Font weight */
.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

/* Text colors */
.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-900 {
    color: #111827;
}

/* Border radius */
.rounded-lg {
    border-radius: 0.5rem;
}

/* Transitions */
.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Hover states */
.hover\:text-gray-900:hover {
    color: #111827;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

/* Responsive utilities */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
/* ====================================================
   RESPONSIVE PARA SECCIN DE CONTACTO
   ==================================================== */
@media (max-width: 768px) {
    /* Ajustar seccin de misin para mvil */
    .mission {
        padding: 60px 20px 120px 20px;
    }

    .mission h2 {
        font-size: 28px;
    }

    .mission-underline {
        width: 80px;
    }

    /* Ajustar seccin de contacto para mvil */
    .contact-section {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px 60px;
        margin-top: -80px;
    }

    /* Las tarjetas ahora se apilan verticalmente */
    .contact-card {
        flex-direction: column;
        max-width: 100%;
    }

    /* La imagen ahora est arriba y ms pequea */
    .contact-image {
        min-height: 200px;
        width: 100%;
    }

    /* La informacin ahora est abajo con menos padding */
    .contact-info {
        padding: 30px 20px;
    }

    .contact-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .contact-info h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-info h4 {
        font-size: 18px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .contact-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Logo del footer tambin se ajusta en mvil */
    .footer-logo-jp {
        max-width: 100%;
        margin: 2rem 1rem 1rem 1rem;
        display: block;
    }
}
