/*
Theme Name: Mediación Fácil
Description: Estilos personalizados para la plantilla Mediación Fácil.
Author: Tu Nombre
Version: 1.0
*/


/* Estilos trasladados del head */
  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Nunito', sans-serif;
    background: #f4f8fb;
    color: #333;
    line-height: 1.6;
  }
  header {
    background: linear-gradient(to right, #205375, #112B3C);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
  }
  header img.logo {
    width: 80px;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  header p {
    font-size: 1.2rem;
  }
  nav {
    background: #112B3C;
    padding: 0.8rem;
    text-align: center;
  }
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
  }
  section {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: auto;
  }
  section h2 {
    color: #205375;
    margin-bottom: 1rem;
  }
  .card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  .card img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 1rem;
  }
  footer {
    background: #112B3C;
    color: white;
    text-align: center;
    padding: 1.5rem;
  }
  button {
    background-color: #F66B0E;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
  }
  form input, form select, form textarea {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  @media (max-width: 600px) {
    header h1 {
      font-size: 1.8rem;
    }
    header p {
      font-size: 1rem;
    }
  }