/*
 * REFACTORIZACIÓN DEL ARCHIVO STYLES.CSS
 * Objetivo: Eliminar !important, código duplicado/redundante,
 * mantener la consistencia visual y reutilizar estilos.
 */

/* ----------------------------------------
 * RESET Y ESTILOS BASE
 * ----------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    overflow: auto;
}

/* ----------------------------------------
 * TIPOGRAFÍA
 * ----------------------------------------*/

/* Variable para el color de acento */
:root {
    --accent-color: #0ef;
    --primary-color: black;
    --light-bg: #f7f7f7;
    --text-color-dark: #333;
    --text-color-light: #495057;
}

/* Base para la fuente decorativa 'Funnel Display' */
.funnel-font {
    font-family: 'Funnel Display', sans-serif;
    font-weight: 400; /* Funnel Display es solo Regular */
}

/* Aplicación de Funnel Display a TÍTULOS GRANDES y elementos de marca */
h1, h2, h3, .footer-logo, .tagline-funnel {
    font-family: 'Funnel Display', sans-serif;
}

/* Aplicación específica para elementos clave con letter-spacing */
/* Ahora sobrescribe con mayor especificidad sin usar !important */
.content-page-container h1,
.car-list-column h1,
.about-heading,
.footer-logo {
    font-family: 'Funnel Display', sans-serif;
    letter-spacing: 1.5px; /* Mejora la apariencia de esta fuente decorativa */
}

/* Excepción: Mantenemos la navegación con Arial para legibilidad */
#navigationBar a {
    font-family: Arial, Helvetica, sans-serif;
}

/* Estilos de párrafo general */
p {
    color: var(--text-color-dark);
}

/* ----------------------------------------
 * VIDEO HERO
 * ----------------------------------------*/

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: -1;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 120%;
    min-height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.logo-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* La opacidad original es 0.6 */
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1;
}

/* ----------------------------------------
 * BARRA DE NAVEGACIÓN
 * ----------------------------------------*/

#navigationBar {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    min-width: 80px;
}

.navLogo-img {
    width: 200px;
    height: auto;
    opacity: 1;
}

#navigationBar ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

#navigationBar li {
    display: inline-block;
}

#navigationBar a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

/* Pseudoclase :hover */
#navigationBar a:hover {
    color: var(--accent-color);
}

/* ----------------------------------------
 * BOTONES REUTILIZABLES
 * ----------------------------------------*/

/* Estilo base para todos los botones de acción principal */
.primary-button, .aboutUs-button, .reserve-btn,
.search-button, .apply-sort-btn, .apply-filters-btn, .seeMore-button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
}

/* Sobrescritura de padding para elementos más grandes o pequeños */
.search-button {
    padding: 15px 25px; /* Más grande en la barra principal */
    border-radius: 0 8px 8px 0;
}

.reserve-btn {
    padding: 8px 15px; /* Más pequeño en tarjeta de resultado */
}

.seeMore-button {
    padding: 10px 20px;
}

.apply-sort-btn, .apply-filters-btn {
    padding: 10px; /* Ajuste para el panel de control */
    border-radius: 4px;
}

/* Pseudoclase :hover para botones primarios */
.primary-button:hover, .aboutUs-button:hover, .reserve-btn:hover,
.search-button:hover, .apply-sort-btn:hover, .apply-filters-btn:hover, .seeMore-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    /* Manteniendo el estilo hover de .primary-button para consistencia */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Botón secundario (bordeado) */
.secondary-button {
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: var(--primary-color) solid 1px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.secondary-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Botón de limpiar filtros */
.clear-filters-btn {
    background-color: #eee;
    color: #333;
    margin-top: 10px;
}

.clear-filters-btn:hover {
    background-color: #ddd;
    color: black;
}

/* ----------------------------------------
 * SECCIÓN DE CONTENIDO GENERAL
 * ----------------------------------------*/

.content h1 {
    text-align: center;
    padding: 15px 0;
}

.content p {
    text-align: center;
}

/* ----------------------------------------
 * BARRA DE BÚSQUEDA PRINCIPAL (HEADER)
 * ----------------------------------------*/

.searchBar-container {
    left: 50%;
    margin: 20px auto;
    width: 90%;
    max-width: 700px;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.search-form {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}

.search-form input, .compact-search-form .search-input {
    flex-grow: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-right: none;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.location-input {
    border-radius: 8px 0 0 8px;
    border-right: 2px solid #ddd;
}

.date-input {
    border-radius: 0;
    border-right: 2px solid #ddd;
    color: #888;
}

/* El penúltimo input es el que debe tener borde derecho en la forma completa */
.search-form input:nth-last-child(2) {
    border-right: 2px solid #ddd;
}

/* Eliminar el borde derecho del último input si no es el botón */
#searchBar_dateEnd {
    border-right: none;
}

/* ----------------------------------------
 * BARRA DE BÚSQUEDA COMPACTA EN HEADER
 * ----------------------------------------*/
.compact-search-form {
    flex-grow: 1;
    max-width: 650px;
    margin: 0 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: none;
}

/* Estilo de los inputs dentro de la barra compacta */
.compact-search-form .search-input {
    padding: 10px 12px;
    font-size: 0.9rem;
    border: none;
    border-right: 1px solid #eee; /* Separador sutil */
}

/* El último input en la compacta */
.compact-search-form .date-input:last-of-type {
    border-right: none;
}

.compact-search-form .location-input {
    border-radius: 0;
}

.compact-search-form .search-button {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 0;
}

/* ----------------------------------------
 * CARRUSEL DE OPCIONES DE COCHE
 * ----------------------------------------*/

.carOptions {
    padding: 40px;
    margin: 0;
}

.carOptions h2 {
    margin: 0 50px 25px 50px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.carOptionsCarousel-container {
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Pseudoelemento para ocultar scrollbar en Webkit */
    &::-webkit-scrollbar {
        display: none;
    }

    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    cursor: grab;
    user-select: none;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    padding-left: 50px;
    padding-right: 50px;
}

.carOptionsCarousel-container.active {
    cursor: grabbing;
}

.carCard {
    flex: 0 0 300px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-snap-align: start;
}

/* Pseudoclase :hover */
.carCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.card-details {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: normal;
    margin-bottom: 15px;
}

.card-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.seeMore-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%); /* Centrado */
    width: fit-content;
}

/* ----------------------------------------
 * SECCIÓN DE INFORMACIÓN (ACERCA DE, FAQ)
 * ----------------------------------------*/

.infoSection {
    padding: 60px 50px;
    background-color: var(--light-bg);
}

.infoSection-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.col-aboutUs, .col-faq {
    flex: 1;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.infoSection-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.col-aboutUs {
    line-height: 1.6;
    color: var(--primary-color);
}

#thera-resumen p {
    padding: 10px;
}

/* ----------------------------------------
 * FAQ GENERAL (Reutilizado en InfoSection y FAQ Page)
 * ----------------------------------------*/

.faq-item {
    border-bottom: 1px solid #e9ecef; /* Usando color de la sección de página */
    transition: background-color 0.3s;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Pseudoclase :hover */
.faq-item:hover {
    background-color: #f8f9fa;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 15px 0;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    padding-right: 30px;
    /* Ajuste para la página de FAQ para que se vea más grande/espaciado */
    font-size: 1.1rem;
    padding: 18px 0;
    padding-right: 40px;
    color: #333;
}

/* Pseudoelemento ::after para el icono de flecha */
.faq-question::after {
    content: '\203A'; /* Carácter de ángulo hacia la derecha */
    font-size: 1.5rem;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease;
    /* Color de acento para el icono de la página de FAQ */
    color: var(--accent-color);
    font-size: 1.8rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 0 0 15px 0;
    color: var(--primary-color);
    line-height: 1.5;
    /* Ajuste para la página de FAQ */
    padding: 0 10px 18px 0;
    color: #555;
    font-size: 0.95rem;
}

/* Pseudoclase :checked para mostrar la respuesta y rotar el icono */
.faq-toggle:checked ~ .faq-answer {
    max-height: 200px;
}

.faq-toggle:checked ~ .faq-question::after {
    transform: translateY(-50%) rotate(-90deg);
}

/* ----------------------------------------
 * SECCIÓN JOIN US
 * ----------------------------------------*/

.joinUs {
    background-color: white;
    color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
}

.joinUs-container {
    max-width: 700px;
    margin: 0 auto;
}

.joinUs-container h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.joinUs-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* ----------------------------------------
 * PIE DE PÁGINA
 * ----------------------------------------*/

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px 50px;
    position: relative;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.brand-info {
    flex-grow: 1.5;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-weight: bold;
}

.tagline {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #999;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 8px;
    transition: color 0.3s, padding-left 0.3s;
}

/* Pseudoclase :hover */
.footer-col a:hover {
    color: var(--accent-color);
    text-decoration: underline;
    padding-left: 5px;
}

/* ----------------------------------------
 * PÁGINA DE RESULTADOS DE BÚSQUEDA
 * ----------------------------------------*/

.search-results-page {
    display: flex;
    height: calc(100vh - 80px); /* Altura total de la vista menos un estimado del header */
    width: 100%;
}

/* ----------------------------------------
 * CONTROLES DE RESULTADOS (FILTROS Y ORDENAR)
 * ----------------------------------------*/

.controls-bar-split {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.control-group {
    position: relative;
    z-index: 500;
}

.toggle-control-btn {
    padding: 10px 15px;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s, border-color 0.2s;
}

/* Pseudoclase :hover */
.toggle-control-btn:hover {
    background-color: var(--light-bg);
    border-color: #bbb;
}

.toggle-control-btn .icon {
    font-size: 1.1rem;
    line-height: 1;
}

.control-panel {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 250px;
    max-width: 300px;
    z-index: 600;
}

.control-panel.hidden {
    display: none;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-color-dark);
    font-weight: bold;
}

.filter-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.filter-group label {
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-group input[type="checkbox"],
.filter-group input[type="range"] {
    margin-right: 5px;
}

.control-panel hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.sort-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* --- COLUMNA DE LISTA --- */
.car-list-column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-width: 350px;
}

.car-list-column h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.results-list {
    overflow-y: scroll;
    padding-right: 10px;
}

/* --- TARJETA DE RESULTADO DE BÚSQUEDA --- */
.search-car-card {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
    cursor: pointer;
}

/* Pseudoclase :hover */
.search-car-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-thumbnail {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.card-details {
    flex-grow: 1;
}

.car-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.daily-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
}

/* --- COLUMNA DEL MAPA --- */
.map-column {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

#map-container {
    width: 100%;
    height: 100%;
}

#map-container iframe {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* ----------------------------------------
 * AUTENTICACIÓN (INICIO DE SESIÓN / REGISTRO)
 * ----------------------------------------*/

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-bg);
    position: relative; /* Para posicionar el botón de regreso */
}

.back-button {
    position: absolute;
    top: 40px;
    left: 40px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, color 0.2s;
}

.back-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Pseudoelemento ::before */
.back-button::before {
    content: '\2190'; /* Carácter de flecha izquierda (←) */
    font-size: 1.2rem;
    line-height: 1;
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 30px 25px;
}

.hidden-form {
    display: none;
}

.auth-tab-header {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #ced4da;
}

.auth-tab-button {
    flex-grow: 1;
    padding: 10px 0;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s;
}

.auth-tab-button.active {
    color: var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    margin-bottom: -1px;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.auth-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Pseudoclase :focus */
.auth-form-group input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 238, 255, 0.25);
    outline: none;
}

.auth-btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.auth-btn-submit:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.auth-forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

.auth-forgot-password a {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.auth-forgot-password a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.auth-message {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* ----------------------------------------
 * ESTRUCTURA GENERAL DE PÁGINAS DE CONTENIDO (FAQ, ABOUT, etc.)
 * ----------------------------------------*/

.content-page-wrapper {
    padding: 60px 20px;
    /* Altura mínima: Altura de la vista - Header - Footer (ajustando la estimación) */
    min-height: calc(100vh - 80px - 100px);
    background-color: var(--light-bg);
}

.content-page-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-page-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.content-page-container .tagline {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif; /* Sobrescribir Funnel Display si no tiene tagline-funnel */
    letter-spacing: normal;
}

/* El .faq-container aquí solo sirve de wrapper sin estilos de caja adicionales */
.faq-container {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

/* ----------------------------------------
 * ESTILOS ESPECÍFICOS DE ABOUT US
 * ----------------------------------------*/

.about-section {
    padding: 20px 0;
    margin-bottom: 30px;
}

.about-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
    font-weight: bold;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color-light);
    margin-bottom: 15px;
}

.about-section ul,
.about-section ol {
    margin-left: 20px;
    padding: 0;
    margin-bottom: 20px;
}

.about-section li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--text-color-light);
}

.about-section li strong {
    color: var(--primary-color);
}

.mission-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.mission-item {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fcfcfc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Pseudoclase :hover */
.mission-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-title {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: bold;
}