/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fondo y contenedor centrado */
  body {
    background-color: #F0DDDD; 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 20px;
  }
  
  /* Contenedor que envuelve logo + texto */
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Imagen SVG responsive */
  .logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
  }
  
  /* Texto bajo el logo */
  .tagline {
    font-weight: 500; /* Medium */
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* responsive */
    color: #333;
    margin-top: 10px;
  }