:root {
  --acento: #4FA0B5;
  --fondo: #f4f7f8;
  --texto: #2b2b2b;
  --suave: #777;
  --card: #ffffff;
}

/* RESET SUAVE */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: var(--fondo);
  color: var(--texto);
}

/* LOGO */
.logo {
  text-align: center;
  padding: 20px 0;
}

.logo img {
  height: 40px;
}

/* HEADER */
.header {
  background: var(--acento);
  text-align: center;
  padding: 25px 0;
  color: white;
}

.header h1 {
  margin: 0;
  font-weight: normal;
}

/* CATÁLOGO */
.catalogo {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: var(--card);
  border-radius: 10px;
  width: 250px;
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h2 {
  margin: 10px 0;
  font-weight: normal;
}

/* BOTÓN SECUNDARIO */
.btn-secundario {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 20px;
  background: #3BB8D8;
  color: #2a9db0;
  text-decoration: none;
  font-size: 14px;
}
.btn-secundario:hover {
  background: #2a9db0;
}

/* CTA */
.cta {
  text-align: center;
  padding-bottom: 60px;
}

.cta p {
  color: var(--suave);
  margin-bottom: 15px;
}

/*BOTÓN CATÁLOGO*/

.btn-catalogo {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  border-radius: 10px;
  background: #4FA0B5;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}

.btn-catalogo:hover {
  background: #3d8c9f;
  transform: translateY(-2px);
}


/* BOTÓN WHATSAPP */
.btn-whatsapp {
  display: inline-block;
  background: var(--acento);
  color: #2a9db0;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease;
}

.btn-whatsapp:hover {
  background: #3d8c9f;
}
/*TIPOGRAFÍA*/

body {
  font-family: 'Roboto', sans-serif;
}

h1, h2 {
  font-family: 'Poppins', sans-serif;
}

/* BOTÓN LINK WHATSAPP*/
.ayuda {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3BB8D8;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.icono {
  font-size: 14px;
}

/*TÍTULO INDEX*/

.suave {
  color: #777;
  font-size: 14px;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: 45px auto 25px;
  padding: 0 20px;
}

.intro h1 {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.15;
}

.intro p {
  margin: 8px 0;
  font-size: 18px;
  color: #444;
}

.intro p {
  line-height: 1.5;
}

/* FOOTER */
.footer {
  background: #48a9c5;
  color: white;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* LOGO */
.footer-logo img {
  max-width: 120px;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #e6f7fb;
  transform: translateX(3px);
}

/* CONTACTO */
.footer-contacto {
  display: flex;
  flex-direction: column;
  align-items: center; /* centra todo */
  text-align: center;
  gap: 8px;
}

.footer-contacto p {
  margin: 6px 0;
  font-size: 14px;
}

/* ICONOS SOBRE DIRECCIÓN */
.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-social a {
  display: inline-flex;
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* ICONOS GENERALES */
.footer-contacto i {
  margin-right: 8px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center; /* ← agregar esto */
  text-align: center;  /* ← agregar esto */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


}
.footer-contacto a {
  color: white;
  text-decoration: none;
}

.footer-contacto a:hover {
  color: #e6f7fb;
}
.footer-logo {
  margin-top: -15px;
}
.footer-logo {
  display: flex;
  align-items: flex-start;
}
.footer-contacto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

/* Muckup */

/* ---- Variables ---- */
:root {
  --bg:          #f7f5f2;
  --surface:     #ffffff;
  --accent:      #3abfd4;
  --accent-dark: #2a9aaf;
  --text-dark:   #1a1a1a;
  --text-mid:    #555;
  --text-light:  #888;
  --border:      #e2ddd8;
  --shadow:      0 8px 32px rgba(0,0,0,0.08);
  --radius:      14px;
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Roboto', sans-serif;
}
 
/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
html { font-size: 16px; }
 
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
 
/* ============================================
   CONTENEDOR MOCKUP 
   ============================================ */
.mockup-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
 
/* ---- Imagen ---- */
.mockup-img {
  flex: 0 0 auto;
  width: 340px;
  max-width: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  /* Subtle top accent bar */
  border-top: 4px solid var(--accent);
  /* Entrance animation */
  animation: fadeSlideLeft 0.6s ease both;
}
 
.mockup-img img {
  width: 100%;
  height: auto;
  display: block;
}
 

.mockup-img:not(:has(img[src*="mockup"])) {
  padding: 40px 24px;
}
 
/* ---- Info panel ---- */
.mockup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeSlideRight 0.6s ease 0.15s both;
}
 
.mockup-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
 
.mockup-info .detalle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(58, 191, 212, 0.1);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
}
 
.mockup-info .precio {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-weight: bold;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
 
.mockup-info .mensaje {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  max-width: 420px;
}
 
/* ---- Divisor sutil ---- */
.mockup-info::after {
  content: '';
  /* spacer handled by gap */
}
 
/* ============================================
   BOTONES DE ACCIÓN
   ============================================ */
.acciones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
 
/* Botón principal — pago online */
.btn-principal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(58, 191, 212, 0.3);
  letter-spacing: 0.01em;
}
 
.btn-principal:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(58, 191, 212, 0.4);
}
 
.btn-principal:active {
  transform: translateY(0);
}
 
/* Botón secundario — pago presencial */
.btn-secundario {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
 
.btn-secundario:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(58, 191, 212, 0.05);
}
 
/* Nota RM bajo el botón secundario */
.btn-secundario::after {
  content: '';
}
 
/* Nota pequeña de validez */
.nota-rm {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: -4px;
  padding-left: 2px;
}

/*RESPONSIVO*/

@media (max-width: 768px) {

  .catalogo {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
  }

  .card {
    width: calc(100% - 32px);
    max-width: 100%;
    margin: 0 auto;
    padding: 18px;
  }

  .card img {
    width: 100%;
    height: auto;          
    object-fit: contain;   
  }

  .card h2 {
    font-size: 22px;
  }

  

  .card .btn-secundario {
    width: 100%;
    padding: 13px 0;
    font-size: 15px;
    box-sizing: border-box;
  }

}

.precio {
  font-weight: bold;
}

.precio {
  font-weight: bold;
  font-size: 1.3rem;
}