/* Importar tipografía */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Body limpio */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* HERO con fondo */
.hero {
  position: relative;
  height: 100vh;
  background: url('Amarres-de-amor-online.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Overlay solo en hero */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75));
  z-index: 1;
}

/* Contenido dentro de hero */
.hero .content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInDown 1.2s ease;
}

.hero .content h1 {
  font-size: 3em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px black;
  letter-spacing: 1px;
}

.hero .content h2 {
  font-size: 1.6em;
  margin-bottom: 25px;
  font-weight: 600;
  text-shadow: 1px 1px 3px black;
}

.hero .content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Botón principal */
.btn {
  display: inline-block;
  padding: 15px 28px;
  background: #e11d48;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0px 5px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #be123c;
  transform: scale(1.08);
}

/* Texto de urgencia */
.urgencia {
  margin-top: 15px;
  font-size: 1em;
  font-style: italic;
  color: #ffbaba;
  animation: pulse 2s infinite;
}


/* ==========================
   SECCIÓN DE TARJETAS
   ========================== */
.contenedor {
  background: #fafafa;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card .contenido {
  padding: 20px;
  text-align: center;
}

.card .contenido h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

.card .contenido p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

/* Botón de tarjetas */
/* Botón de tarjetas */
.card .contenido .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #e11d48, #9b1b4d, #6d214f);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.card .contenido .btn:hover {
  background: linear-gradient(135deg, #ff4d6d, #b91372, #7d1b6b);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}

/* BLOG ARTÍCULO */
.blog-articulo {
  background: #f9f9f9;
  padding: 70px 20px;
}

.blog-container {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  animation: fadeIn 1.5s ease;
}

.blog-articulo h1 {
  font-size: 2.4em;
  margin-bottom: 25px;
  color: #b91c1c;
  text-align: center;
}

.blog-articulo .intro {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #444;
}

.blog-articulo .señal {
  margin-bottom: 35px;
}

.blog-articulo h2 {
  font-size: 1.4em;
  margin-bottom: 12px;
  color: #d63384;
  border-left: 5px solid #d63384;
  padding-left: 12px;
}

.blog-articulo p {
  font-size: 1em;
  color: #555;
}

.blog-articulo .cta {
  margin-top: 40px;
  padding: 30px;
  background: #fff0f5;
  border-left: 6px solid #b91c1c;
  border-radius: 10px;
  text-align: center;
}

.blog-articulo .cta h3 {
  color: #b91c1c;
  margin-bottom: 15px;
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.07);
}

/* ==========================
   FOOTER
   ========================== */
.footer {
  background: #111;
  color: #ccc;
  padding: 25px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 12px;
  font-size: 0.95em;
}

.redes a {
  color: #ccc;
  margin: 0 10px;
  font-size: 1.3em;
  transition: color 0.3s ease, transform 0.2s ease;
}

.redes a:hover {
  color: #e11d48;
  transform: scale(1.2);
}

/* ==========================
   ANIMACIONES
   ========================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.blog-articulo {
  background: #b80040; /* rojo pasión en lugar del degradado */
  padding: 60px 30px;
  border-radius: 20px;
  max-width: 1000px;
  margin: 50px auto;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  color: #fff; /* texto blanco para contraste */
}


.blog-articulo h1 {
  text-align: center;
  color: #b80040; /* rojo pasión */
  font-size: 2.2em;
  margin-bottom: 25px;
}


.blog-articulo .intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.blog-articulo .señal {
  margin-bottom: 30px;
}

.blog-articulo .señal h2 {
  color: #e11d48;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.blog-articulo .señal p {
  line-height: 1.6;
  font-size: 1em;
}

.blog-articulo .cta {
  margin-top: 40px;
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.blog-articulo .cta h3 {
  color: #b80040;
  margin-bottom: 15px;
}

.btn-whatsapp {
  display: inline-block;
  background: linear-gradient(135deg, #e11d48, #b91c1c); /* rojo pasión */
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #ff1a4d, #c9184a); /* rojo más vivo */
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.6);
}
.experiencia {
  background: linear-gradient(135deg, #7b2cbf, #9d4edd, #b983ff);
  color: white;
  padding: 50px 20px;
  border-radius: 15px;
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}


.experiencia h2 {
  font-size: 2em;
  color: #fbbf24; /* dorado místico */
  margin-bottom: 25px;
  font-weight: bold;
  position: relative;
}

.experiencia h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f43f5e; /* rojo pasión para contraste */
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.experiencia ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experiencia ul li {
  font-size: 1.1em;
  color: #
}
.testimonios {
  background: #f9f9f9; /* Fondo claro para resaltar confianza */
  color: #333;
  text-align: center;
  padding: 80px 20px;
}

.testimonios h2 {
  font-size: 2.4em;
  margin-bottom: 15px;
  color: #b91c1c; /* Rojo pasión elegante */
}

.testimonios .intro {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #555;
}

.testimonios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonio {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonio p {
  font-size: 1em;
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.testimonio h4 {
  font-size: 1.1em;
  font-weight: bold;
  color: #b91c1c;
}
/* Contenedor del botón y mensaje */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}

/* Botón WhatsApp */
.btn-flotante {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-flotante:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* Mensaje flotante */
.mensaje-flotante {
  background: #ffffff;
  color: #333;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  animation: aparecer 1s ease forwards, parpadeo 2s infinite;
  opacity: 0;
}

/* Animaciones */
@keyframes aparecer {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes parpadeo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
