  :root {
      --rosa-fondo: #f5e8ec;
      --rosa-acento: #f15388dd;
      --texto: #2b2b2b;
      --blanco: #fff;
      --gris-claro: #f9f9f9;
      --fuente: 'Montserrat', sans-serif;
      --titulo: 'Playfair Display', serif;
    }
 
    body {
      font-family: var(--fuente);
      background-color: var(--rosa-fondo);
      color: var(--texto);
      margin: 0;
      scroll-behavior: smooth;
    }

    /* ---------- HEADER ---------- */
    header {
      background: linear-gradient(90deg, #C98AA1,#E5BFCB);
      color: var(--blanco);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 3rem;
      flex-wrap: wrap;
      box-shadow: 0 5px 18px rgba(0,0,0,0.2);
      position: sticky;
      top: 0;
      z-index: 300;
      
    }

    header img.logo {
      height: 10%;
      width: 10%;
      border-radius: 70%;
    }

    nav a {
      color: var(--blanco);
      text-decoration: none;
      font-weight: 800;
      margin: 0 0.7rem;
      transition: color 0.5s ease;
      color: black;
      font-size: 21px;
      margin: 0 25px;
      text-decoration: none;
      
    }

    nav a:hover {
      color: #161515;
    }

    /* ---------- HERO ---------- */
    .hero {
      background: linear-gradient(rgba(235, 169, 169, 0.4), rgba(201, 81, 141, 0.4)),
                  url('img/hero-about.jpg') center/cover no-repeat;
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--negro);
      text-align: center;
      padding: 2rem;
    }

    .hero h1 {
      font-family: var(--titulo);
      font-size: 3rem;
      
    }

    /* ---------- SECCIÓN HISTORIA ---------- */
    section {
      padding: 4rem 2rem;
      text-align: center;
    }

    section h2 {
      font-family: var(--titulo);
      color: var(--rosa-acento);
      font-size: 2.3rem;
      margin-bottom: 1rem;
      color: rgba(214, 67, 133, 0.758);
    }

    section p {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
      font-size: 1.05rem;
      color: #4a4a4a;
    }

    /* ---------- MISIÓN / VISIÓN ---------- */
    .info-boxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 3rem;
    }

    .info-card {
      background: var(--blanco);
      border-radius: 1rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      max-width: 320px;
      padding: 2rem;
      transition: all 0.3s;
    }

    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .info-card i {
      color: var(--rosa-acento);
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .info-card h3 {
      font-family: var(--titulo);
      color: var(--rosa-acento);
      margin-bottom: 0.5rem;
    }

    /* ---------- EQUIPO ---------- */
    .equipo {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      margin-top: 4rem;
    }

    .equipo img {
      width: 280px;
      border-radius: 1rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .equipo .texto {
      max-width: 500px;
      text-align: left;
    }

    .equipo .texto h3 {
      font-family: var(--titulo);
      color: var(--rosa-acento);
      margin-bottom: 1rem;
      color: palevioletred;
    }

    /* ---------- FOOTER ---------- */
    footer {
      background-color: #ecc5d4;
      color: var(--negro);
      text-align: center;
      padding: 2rem 1rem;
      margin-top: 4rem;
      
    }

    footer a {
      color: var(--blanco);
      text-decoration: none;
      color: #161515;
    }

    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      header { flex-direction: column; text-align: center; }
      .hero h1 { font-size: 2.3rem; }
      .equipo { flex-direction: column; text-align: center; }
      .equipo .texto { text-align: center; }
    }
    .floating-btn {
      position: fixed;
      right: 50px;
      width: 50px;
      height: 50px;
      border-radius: 50px;
      color: rgb(244, 241, 241);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 35px;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: transform 0.5s;
    }
    .floating-btn:hover {
      transform: scale(1.1);
    }
    .whatsapp { background: #25D366; bottom: 100px; }
    .facebook { background: #3b5998; bottom: 180px; }
    .instagram { background: #E1306C; bottom: 260px; }

    /* Map */
    iframe {
      border-radius: 12px;
      border: none;

    }
    .col-md-4{
      text-align: left;
      justify-content: flex-end;
    }