:root {
  --bg-dark: #6b4c4a;
  --text-light: #fff;
  --accent: #22c55e;
  --menu-bg: #40022c;
  --hover-bg: #8e2a66;
  --toast-bg: #043d26;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  transition: background 0.3s, color 0.3s;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}
.logo {
  text-align: center;
  margin-bottom: 1rem;
}
/* ==== DECORACIÓN DE FLORES ==== */

.decorations {
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background-image: url('assets/flor.png');
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(0.5px);
}


/* Aseguramos que el contenido esté por encima de las flores */
.container {
  position: relative;
  z-index: 1;
}
.logo-img {
  max-width: 80%;
  width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.logo h1 {
  font-family: 'Georgia', serif;
  font-size: 2.8rem;
  margin: 0;
  line-height: 1;
}

.logo h1 span {
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
}

.logo p {
  margin-top: 0.5rem;
  font-size: 1rem;
  letter-spacing: 1px;
}

.top-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.custom-btn {
  background-color: #40022c;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

.redes {
  margin: 1.5rem 0;
}

.redes a {
  margin: 0 0.6rem;
  color: inherit;
  font-size: 1.4rem;
}

.telefono {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.copy-btn {
  background-color: #22c55e;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--toast-bg);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #22c55e;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.hidden {
  display: none !important;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-btn {
  background: var(--menu-bg);
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.menu-btn:hover {
  background: var(--hover-bg);
}

.agenda-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  margin-top: 2rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  margin-top: 1rem;
}

#videoContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.volver {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.volver:hover {
  background: white;
  color: #7b124f;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  padding: 2rem 0 1rem;
}


@media (max-width: 600px) {
  .top-buttons {
    justify-content: space-between;
    padding: 1rem 1.2rem;
  }
}

.info-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: nowrap;
  padding: 0 1rem;
}

/* Ya existente */
.custom-info-btn {
  background-color: var(--menu-bg);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  flex: 1 1 0;
  min-width: 45%;
  max-width: 48%;
  line-height: 1.3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
  height: auto;
}

/* Solo para CMP */
.custom-info-btn.btn-cmp {
  font-size: 1.1rem; /* texto más grande */
  font-weight: 600;
}

.custom-info-btn:hover {
  background-color: var(--hover-bg); /* Tono más claro al pasar el mouse */
}

@media (max-width: 480px) {
  .info-buttons {
    padding: 0 1.5rem;
  }
}

