/* ===================================
   Estilos generales para TODAS las fichas
=================================== */
body {
    font-family: Arial, sans-serif;
    background-color: #fdfdfd;
    color: #101010;
    margin: 0;
    padding: 0;
}

/* Header simple para fichas */
header {
    background: #92f5f8;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.ficha-tecnica-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
   
    max-width: 700px;
    margin: 40px auto;
    border: 1px solid #eee;
}

.ficha-tecnica-container h2 {
    color: #ff99cc;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #92f5f8;
    padding-bottom: 10px;
}


/* Estilo del botón Regresar */
.btn-regresar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #67c9cc;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
    cursor: pointer;
    margin: 20px;
    
    /* ESTAS TRES LÍNEAS QUITARÁN EL BORDE */
    border: none;      
    outline: none;     
    appearance: none;  /* Ayuda a que el botón no tenga estilos de fábrica */
}

.btn-regresar:hover {
    background-color: #ff99cc;
    color: white;
    border: none; /* Asegura que al pasar el mouse no aparezca */
}

/* Para centrar el botón dentro del nav */
nav {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.ficha-tecnica-container h4 {
    color: #67c9cc;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #92f5f8;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    width: 100%;
}