 * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #000;
      color: #fff;
      overflow-x: hidden;
    }

    header {
      text-align: center;
      padding: 80px 20px 40px;
    }

    header h1 {
      font-size: 3rem;
      letter-spacing: 6px;
      text-transform: uppercase;
    }

    header p {
      color: #ccc;
      max-width: 700px;
      margin: 20px auto 0;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* === SECCIONES PRINCIPALES === */
    .cocktail-card {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      max-width: 1100px;
      margin: 40px auto;
      min-height: 400px;
      overflow: hidden;
      border-radius: 12px;
    }

    .cocktail-card:nth-child(even) {
      flex-direction: row-reverse;
    }

    .cocktail-text {
      flex: 1 1 50%;
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .cocktail-image {
      flex: 1 1 50%;
      overflow: hidden;
    }

    .cocktail-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.5s ease;
    }

    .cocktail-image:hover img {
      transform: scale(1.05);
    }

    .light { background-color: #f5eee7; color: #111; }
    .dark { background-color: #111; color: #fff; }

    /* === TEXTO INTERNO === */
    .top-title {
      position: absolute;
      top: 25px;
      right: 40px;
      color: #c4c4c4;
      font-size: 1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .divider {
      width: 100%;
      height: 1px;
      background-color: currentColor;
      opacity: 0.3;
      margin: 25px 0;
    }

    .cocktail-name {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 10px;
    }

    .cocktail-info {
      font-size: 0.95rem;
      letter-spacing: 1px;
      line-height: 1.6;
    }

    .cocktail-info strong {
      text-transform: uppercase;
      font-weight: 700;
      display: block;
      margin-bottom: 8px;
    }

    /* === PRESENTACIONES + BOTÓN === */
    .presentaciones {
      margin-top: 15px;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .presentaciones strong {
      text-transform: uppercase;
      font-weight: 700;
      display: block;
      margin-bottom: 5px;
    }

    .btn-cotizar {
      margin-top: 15px;
      display: inline-block;
      background-color: #000;
      color: #fff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .btn-cotizar:hover { background-color: #333; }

    .dark .btn-cotizar {
      background-color: #f5eee7;
      color: #000;
    }
    .dark .btn-cotizar:hover { background-color: #ddd1c2; }

    /* === CONTACTO === */
    .contact-card {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      max-width: 1100px;
      margin: 40px auto 100px;
      min-height: 400px;
      border-radius: 12px;
      overflow: hidden;
    }

    .contact-left {
      flex: 1 1 50%;
      background-color: #111;
      color: #fff;
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 20px;
    }

    .contact-left p {
      font-size: 1rem;
      line-height: 1.8;
      color: #ddd;
      margin-bottom: 40px;
    }

    .btn-whatsapp {
      background-color: #25d366;
      color: #fff;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 1rem;
      text-decoration: none;
      display: inline-block;
      width: fit-content;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .btn-whatsapp:hover {
      background-color: #1ebe5d;
      transform: scale(1.05);
    }

    .contact-right {
      flex: 1 1 50%;
      background-color: #f5eee7;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .contact-right .social-icons {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-right a {
      color: #000;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: opacity 0.3s ease, transform 0.2s ease;
    }

    .contact-right a:hover {
      opacity: 0.7;
      transform: translateX(5px);
    }

    footer {
      text-align: center;
      padding: 40px;
      font-size: 0.9rem;
      color: #888;
      background-color: #000;
      border-top: 1px solid #333;
    }

    /* === RESPONSIVE OPTIMIZADO === */
    @media (max-width: 900px) {
      .cocktail-card,
      .contact-card {
        flex-direction: column !important;
        max-width: 95%;
      }

      .cocktail-text,
      .contact-left,
      .contact-right {
        padding: 35px 25px;
        text-align: center;
      }

      .cocktail-image {
        min-height: 260px;
        order: -1;
      }

      .cocktail-name {
        font-size: 2rem;
        letter-spacing: 2px;
      }

      .top-title {
        position: static;
        text-align: center;
        margin-bottom: 15px;
      }

      .btn-cotizar {
        width: 100%;
        text-align: center;
      }

      .contact-card {
        margin: 20px auto 80px;
      }

      .contact-right {
        background-color: #fff;
        padding: 25px 0;
      }

      .contact-left h2 { font-size: 2rem; }

      .contact-right .social-icons {
        align-items: center;
        gap: 10px;
      }

      .contact-right a {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      header h1 { font-size: 2.2rem; }
      header p { font-size: 0.9rem; }
      .cocktail-text { padding: 25px 20px; }
      .cocktail-name { font-size: 1.8rem; }
      .cocktail-info, .presentaciones { font-size: 0.9rem; }
      .btn-cotizar, .btn-whatsapp { font-size: 0.9rem; padding: 10px 22px; }
    }