/* === RESETEO BÁSICO === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}


/* ===============================
   🔹 HEADER Y LOGO CENTRADO
   =============================== */
.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  font-size: 48px;
}

.logo-gray {
  color: #c9c9c9; /* gris igual al de tu imagen */
}

.logo-green {
  color: #7ccfc7; /* verde menta igual al de la imagen */
}

.logo-foot {
  width: 55px;
  height: 55px;
  fill: #7ccfc7;  /* mismo verde menta */
}

.logo-sub {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  margin-top: -10px;
  color: #333;
}




/* ======== ESTILO TEXTO DE MARCA / LOGO SIN IMAGEN ======== */






.logo-title span {
  display: block;
  font-size: 14px;           /* línea inferior */
  font-weight: 400;
  color: #4a4a4a;            /* gris suave */
  margin-top: 4px;
}

/* CENTRARLO EN EL HEADER */
.logo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}



.nav {
  display: flex;
  gap: 25px;
  font-weight: 600;
}

.nav a {
  color: #1b4eb3;
  transition: 0.3s;
}

.nav a:hover {
  color: #0a7fda;
}


/* ===============================
   🔹 HERO (BANNER CON FOTO)
   =============================== */
.hero-con-fondo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.hero-con-fondo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* oscurece la imagen */
  z-index: 1;
}

.hero-con-fondo * {
  position: relative;
  z-index: 2;
}

.hero-con-fondo h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-con-fondo p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


/* ===============================
   🔹 BOTÓN PRINCIPAL
   =============================== */
/* =========================
    BOTÓN WHATSAPP ANIMADO
========================= */
.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 180, 150, 0.25);
  border: 2px solid transparent;
}

/* Hover con cambio fuerte */
.btn-whatsapp:hover {
  background: #1ec059;
  box-shadow: 0 15px 40px rgba(0, 180, 150, 0.45);
  transform: translateY(-4px);
  border-color: #00e4c0;
}




/* === TARJETAS ARREGLADAS === */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;

  /* 💡 Misma altura para todas */
  height: 520px;

  /* 💡 Se elimina el negro y se aplica degradado suave */
  background: linear-gradient(135deg, #e9faff 0%, #ffffff 100%) !important;
  border-radius: 22px;
  padding: 25px;
  border: 1px solid #d6f3f7;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  color: #222;
  overflow: hidden;
}

/* 📌 Imagen del servicio (todas iguales y centradas) */
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* 📌 Títulos centrados y consistentes */
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 10px 0;
}

/* 📌 Texto parejo */
.service-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 0 10px;
  flex-grow: 1;
}

/* 📌 Botón alineado abajo siempre */
.service-card a {
  margin-top: auto;
}
/* ==== TARJETAS DE SERVICIOS ==== */
.servicio-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

/* HOVER: RELIEVE, SOMBRA Y LIGERO ZOOM */
.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: #0fb9a1;
}

/* Imagenes dentro de las cards */
.servicio-card img {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.servicio-card:hover img {
  transform: scale(1.1);
}
/* ================================
   TARJETAS DE SERVICIO MEJORADAS
================================== */
.servicio-card {
  background: linear-gradient(135deg, #e9faff, #ffffff);
  padding: 40px;
  border-radius: 30px;
  border: 2px solid transparent;
  box-shadow: 0 8px 40px rgba(0, 180, 200, 0.18);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}




/* Borde animado estilo glow recorriendo */


.servicio-card:hover::after {
  opacity: 1;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Imagen con zoom */
.servicio-card img {
  width: 60px;
  transition: transform 0.3s ease;
}
.servicio-card:hover img {
  transform: scale(1.18);
}

/* --- tarjetas para mostrar los servicios  --- */
.service-card {
  height: 630px;
  background: linear-gradient(135deg, #e8f9ff, #ffffff);
  border-radius: 80px;
  padding: 80px;
  border: 2px solid transparent;
  box-shadow: 0 60px 80px rgba(0,0,0,0.12);
  transition: .4s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 50px;
  overflow: hidden;
}





/* Imagen grande y consistente */
.service-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 15px;
}

/* Título */
.service-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #222;
}

/* Texto */
.service-text {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  padding: 0 10px;
}

/* BOTÓN */
.service-btn {
  background: #00c853;
  color: white;
  padding: 13px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  box-shadow: 0 4px 12px rgba(0, 200, 83, .4);
}

.service-btn:hover {
  background: #009f44;
  box-shadow: 0 6px 16px rgba(0, 200, 83, .55);

  


/* Título más ordenado */
.service-card h3 {
  margin: 10px 0 8px 0;
}

/* Texto alineado como en la referencia */
.service-card p {
  padding: 0 5px;
  margin-bottom: 15px;
}

/* Botón queda fijo abajo y centrado */
.service-card a {
  margin-top: auto;
}
}



/* ===============================
   📱 RESPONSIVE MÓVIL
   =============================== */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-con-fondo h1 {
    font-size: 2rem;
  }

  .hero-con-fondo p {
    font-size: 1rem;
  }
}
.hero-info {
  text-align: center;
  padding: 90px 15px;
  background: linear-gradient(135deg, #e4f5ff, #ffffff);
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);







  




 


}




  






























