/* style3.css - basado en el diseño de referencia */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
  }
  
  /* Sección superior */
  .simple {
    display: flex;
    justify-content: center; 
    align-items: center;     
    padding: 80px 10%;
    gap: 20px;              
    text-align: center;      
  }
  
  .text-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin: 0;
  }
  
  
  .text-right {
    max-width: 400px;
  }
  
  .text-right p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
  }
  
  /* Botón */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #333;
  }
  
  /* Imagen inferior */
  .simple-image img {
    width: 60%;         /* la reduces al 60% del ancho del contenedor */
    max-width: 700px;   /* tamaño máximo (opcional) */
    display: block;
    margin: 40px auto;  /* auto centra horizontalmente */
    border-radius: 8px; /* opcional: bordes redondeados */
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .simple {
      flex-direction: column;
      text-align: center;
      padding: 60px 20px;
    }
    .text-left h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
  }
  