/* ===== GENERAL ===== */
 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
	
	:root{
  --c-bg:#f4f4f4;
  --c-text:#11424d;
  --c-muted:#333;
  --c-brand:#45b8c4;
  --c-brand-2:#016080;
  --c-accent:#c0219f;
  --shadow:0 6px 20px rgba(0,0,0,.12);
  --radius:14px;

  /* scale */
  --space-1:.5rem; --space-2:1rem; --space-3:1.5rem;
  --space-4:2rem;  --space-5:3rem; --space-6:4.5rem;
}
html, body {
  overflow-x: hidden;
}
html { scroll-behavior:smooth; }

    body {
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
    }
/* ===== Layout helpers */
.container{ width:min(1100px, 100% - 2rem); margin-inline:auto; }
.section{ padding-block: var(--space-6); }
.stack>*+*{ margin-top: var(--space-2); }

main {
  padding-top: 90px; /* espacio para que no tape el header */
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #020617;
  color: #fff;
  line-height: 1.5;
}

/* CONTAINER GENERAL */
section {
  padding: 80px 20px;
}


   h2 {
      color: #11424d;
      font-size: 1.6rem;
      margin-top: 2rem;
    }

    h3 {
      color: #11424d;
      margin-top: 1.5rem;
    }

    p {
      margin: 0.5rem 0 1rem;
      line-height: 1.6;
    }

    a {
      color: #11424d;
      text-decoration: underline;
    }

    a:hover {
      color: #fff;/*#3295a4;*/
    }

  

    .logo-circle {
      width: 65px;
      height: 65px;
      background:radial-gradient(circle at center, #fff, #cbd5f5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-circle img {
      width: 100px;
	  height: 100px;
    }



/* Estado activo */
.nav-links li a.active {
  background: #016080; /* azul acento */
  color: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(69, 184, 196, 0.25) !important;
  background: radial-gradient(circle at center, #0f172a, #016080) !important;
  color: #fff !important; 
}


  .btn-reunion .text {
      font-size: 0.85rem;
      text-align: right;
      line-height: 1.2;
    }
	
	.btn-reunion .text p{
	   margin: 0.1rem 0 0.1rem;
       line-height: 1.0;
	}
 .text_rnr {
	font-size: 1.85rem !important;
	font-weight: normal !important;
	}	
	
	/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: sticky;
  top: 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5f5;
  font-size: 0.9rem;
  transition: 0.3s;
}


.nav-links .active {
  color: #016080;
}

  .nav-links li a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* BOTÓN CONSULTORÍA */
.btn-reunion {
  display: flex;
  align-items: center;
  background: #016080;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  gap: 10px;
  transition: 0.3s;
}

.btn-reunion:hover {
 
   transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(69, 184, 196, 0.25) !important;
  background: radial-gradient(circle at center, #0f172a, #016080) !important;
  color: #fff !important; 
}


/* Hamburguesa */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 22px;
}

/* ================= HERO ================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 120px 5%;
  background: radial-gradient(circle at top, #0f172a, #020617);
}

.hero-text {
  max-width: 550px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.highlight {
  color: #016080;
}

.hero p {
  color: #94a3b8;
  margin-bottom: 30px;
}

/* BOTONES HERO */
.btn {
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
  transition: 0.3s;
}

.btn-primary {
  background: #016080;
  color: white;
}

.btn-primary:hover {
  background: radial-gradient(circle at center, #0f172a, #016080);
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline {
  border: 1px solid #334155;
  color: #fff;
}

.btn-outline:hover {
  background: #1e293b;
}
/* ================= FORM ================= */
.form-container {
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #1e293b;
}

.form-container input,
.form-container textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: #020617;
  color: white;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #016080;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.submit-btn:hover {
  
    background: radial-gradient(circle at center, #0f172a, #016080);
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.more-btn {
    background-color: #020617;
    border: none;
    padding: 0.5rem;
    width: 100%;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 16px;
    }
.more-btn:hover {
	background: radial-gradient(circle at center, #fff, #cbd5f5);
	color:  #016080;
}

/*HERO CTA'S*/
.cta-hero {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-hero {
    flex-direction: column;
  }

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


@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.8);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 300px; /* ajustá según cantidad de links */
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(192, 33, 159, 0.25) !important;
  background: radial-gradient(circle at center, #0f172a, #016080) !important;
  color: #fff !important; 
}

 
  .menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }
  .btn-reunion {
    display: none; /* opcional ocultar botón en mobile */
  }
  
  
  form {
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
  }

  form input,
  form textarea,
  form button {
    width: 100%;
    font-size: 1rem;
  }

  form label {
    font-size: 0.9rem;
  }
  
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    order: 1;
	max-width:85%;
  }

  .form-container {
    order: 2;
    margin-top: 20px;
    width: 100%;
    max-width: 95%;
  }
  
}

	
	/* ================= SERVICES ================= */
.services-section {
  text-align: center;
}

.services-section h2 {
  margin-bottom: 15px;
}

.services-section p {
  color: #94a3b8;
  margin-bottom: 50px;
}

/* CARDS */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid #1e293b;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card h3 {
  margin: 15px 0;
}

/* BOTÓN + 
.toggle-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #020617;
  border: 1px solid #334155;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
*/
/* ================= CTA BAND ================= */
.cta-band {
  background: linear-gradient(135deg, #0f172a, #020617);
  text-align: center;
}

.cta-band-button {
  display: inline-block;
  margin-top: 20px;
  background: #016080;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}

.cta-band-button:hover {
  background: radial-gradient(circle at center, #0f172a, #016080);
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ================= ELEGIRNOS ================= */
.elegirnos {
  text-align: center;
}

.elegirnos-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.elegirnos-card {
  background: #0f172a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1e293b;
  transition: 0.3s;
}

.elegirnos-card:hover {
  transform: translateY(-5px);
  background: #1e293b;
}

.elegirnos-card i {
  font-size: 28px;
  margin-bottom: 10px;
  color: #016080;
}

/*===========================FOOTER=======================*/

.footer {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #cbd5f5;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* TITULOS */
.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

/* TEXTO */
.footer p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* LINKS */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #45b8c4;
}

/* BOTÓN */
.footer-btn {
  display: inline-block;
  margin-top: 10px;
  background: #45b8c4;
  padding: 12px 18px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #45b8c4;
  color: #016080;
}

/* REDES */
.footer-social {
  text-align: center;
  margin: 30px 0 10px;
}

.footer-social i {
  margin: 0 10px;
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social i:hover {
  color: #45b8c4;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 20px;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}

.toggle-btn {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background-color: #016080;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;              /* que quede por encima */
  pointer-events: auto;    /* por si algún contenedor aplica none */
  touch-action: manipulation; /* mejor respuesta en mobile */
}

.toggle-btn.active { transform: rotate(45deg); }

/* Transición suave controlada por JS (altura dinámica) */
.service-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1rem;
  background-color: inherit;
  color: #fff !important; /* si el card activo invierte colores */
}

.service-description p {
	color: #cbd5f5;
	line-height: 1.0;
}

/* Si usás .service-card.active para cambiar fondo/colores, mantenelo */
.service-card.active { background: #016080; color: #fff; }
.service-card.active h3 { color: #fff; }

 .service-card:hover{transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
 }
  .service-card.active .service-description {
      max-height: 300px;
      padding: 1rem;
    }
 
/*portfolio*/
	
	.portfolio {
  padding: 4rem 2rem;
  background: #f4f4f4;
}

.portfolio-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
}

.portfolio-item:nth-child(even) {
  flex-direction: row-reverse;
}

.portfolio-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-text {
  flex: 1;
  min-width: 280px;
}

.portfolio-text h3 {
  font-size: 1.8rem;
  color: #c0219f;
  margin-bottom: 1rem;
}

.portfolio-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn-portfolio {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #c0219f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-portfolio:hover {
  background-color: #a01985;
}

@media (max-width: 768px) {
  .portfolio-item {
    flex-direction: column;
  }
}
		
		

		
.portfolio-section {
 max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, #0f172a, #020617);
    border: 1px solid #1e293b;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.portfolio-section h1 {
text-align: center;
    font-size: 2.5rem;
    margin-top: 60px;
}

.portfolio-section h2 {
 text-align: center;
    color: #94a3b8;
    margin: 20px 0 60px;
    line-height: 1.6;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.case-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(34,197,94,0.1);
  color: #45b8c4;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.case-intro {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 20px;
}

.case-block {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

.case-block h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.case-block p {
  font-size: 14px;
  margin: 3px 0;
  color: #94a3b8;
}

.case-closing {
  margin-top: 20px;
  font-weight: 500;
  color: #e2e8f0;
}

/* ========================= */
/* BASE CASE STUDY */
/* ========================= */

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.project-img img {
  width: 100%;
  border-radius: 12px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 900px) {
  
  .case-study {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-img {
    order: 1;
  }

  .project-content {
    order: 2;
  }

  .project-content {
    padding: 10px 5px;
  }

  .project-content h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .case-intro {
    font-size: 15px;
  }

  .case-block {
    padding-left: 12px;
    border-left: 2px solid rgba(255,255,255,0.1);
  }

  .case-block h4 {
    font-size: 15px;
  }

  .case-block p {
    font-size: 14px;
  }

  .btn-ver-sitio {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 14px;
    font-size: 15px;
  }

  .case-tag {
    font-size: 11px;
  }
}

/* ========================= */
/* EXTRA SMALL (CELUS CHICOS) */
/* ========================= */

@media (max-width: 480px) {

  .project-content h3 {
    font-size: 20px;
  }

  .case-intro {
    font-size: 14px;
  }

  .case-block p {
    font-size: 13px;
  }

}
/*
.project-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
*/
.project-img {
  flex: 1 1 300px;
  max-height: 434px;  
    overflow-y: auto; /* scroll solo si es necesario */
}

.project-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}
/*
.project-content {
  flex: 1 1 400px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-content h3 {
  color: #11424d;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.project-content p {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
*/
.btn-ver-sitio {
  display: inline-block;
  background-color: #45b8c4;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-ver-sitio:hover {
  background-color: #3295a4;
  color: white;
}

@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
  }
}
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-btn:hover {
  background-color: rgba(50, 149, 164, 0.9);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/*tu clinica movil */
/* ========================= */
/* TU CLINICA MOVIL SECTION */
/* ========================= */

.clinica-section {
  padding: 100px 20px;
  /*background: radial-gradient(circle at top, #020617, #020617);*/
  background: linear-gradient(135deg, #0f172a, #020617);
}

.clinica-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.clinica-tag {
  font-size: 12px;
  color: #45b8c4;
  background: rgba(34,197,94,0.1);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 15px;
}

.clinica-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.clinica-content h2 span {
  color: #45b8c4;
}

.clinica-intro {
  color: #cbd5f5;
  margin-bottom: 20px;
}

.clinica-benefits {
  margin-bottom: 20px;
}

.clinica-benefits li {
  margin-bottom: 8px;
  color: #94a3b8;
}

.clinica-closing {
  margin-bottom: 25px;
  color: #e2e8f0;
}

/* CTA */
.clinica-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #016080;
  padding: 14px 24px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0284c7;
}

.btn-outline {
  border: 1px solid #016080;
  padding: 14px 24px;
  border-radius: 10px;
  color: #016080;
  text-decoration: none;
}

.btn-outline:hover {
  background: #016080;
  color: #fff;
}

/* VISUAL */
.clinica-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #1e293b;
}

.clinica-card p {
  margin-bottom: 10px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 900px) {
  .clinica-container {
    grid-template-columns: 1fr;
  }

  .clinica-content h2 {
    font-size: 26px;
  }

  .clinica-section {
    padding: 70px 20px;
  }
}
	.faq-section {
  background-color: #fff;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 3rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-section h2 {
  color: #11424d;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  color: #11424d;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  font-size: 20px;
  font-weight: bold;
  color: #45b8c4;
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(45deg); /* De + a x */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding-left: 36px;
}

.faq-answer.show {
  max-height: 500px;
  opacity: 1;
  margin-top: 0.5rem;
  color: #333;
}


/* CONTENEDOR GENERAL */
.reviews-section {
    padding: 40px 20px;
    margin-top: 40px;
	background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    
}

/* TÍTULO */
.reviews-title {
    text-align: center;
    font-size: 2rem;
    color: #007c7c;
    margin-bottom: 30px;
    font-weight: 700;
}

/* GRID DE CARDS */
.reviews-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* TARJETAS */
.review-card {
    background: #cbd5f5;
    border: 1px solid #d9e4e4;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

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

/* TEXTO */
.review-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* AUTOR */
.review-author {
    font-weight: bold;
    color: #015f5f;
    font-size: 0.95rem;
}

/* ================================
   RESEÑAS – ESTILOS BASE
================================ */
.reviews-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.review-card {
    background: #cbd5f5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.review-icon {
    font-size: 36px;
    color: #0aa19a; /* color institucional */
    flex-shrink: 0;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.review-author {
    margin-top: 10px;
    font-weight: bold;
    color: #0aa19a;
}



/* ================================
   VIDEO RESPONSIVE
================================ */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* relación 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* ================================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {

    .review-card {
        flex-direction: column;
        text-align: left;
        padding: 18px;
    }

    .review-icon {
        font-size: 32px;
    }

    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .reviews-container {
        padding: 10px;
    }

    .review-card {
        padding: 15px;
        border-radius: 8px;
    }

    .review-text {
        font-size: 0.95rem;
    }
}

/*politicaa */		
	

    header {
      background-color: #11424d;
      color: white;
      padding: 1.5rem;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: 2rem;
    }
/*
    main {
      max-width: 960px;
      margin: 3rem auto;
      padding: 2rem;
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
*/
    h2 {
      color: #016080;
      font-size: 1.6rem;
      margin-top: 2rem;
    }

    h3 {
      color: #cbd5f5;
      margin-top: 1.5rem;
    }

    p {
      margin: 0.5rem 0 1rem;
      line-height: 1.6;
    }

    a {
      color: #11424d;
      text-decoration: underline;
    }

    a:hover {
      color: #3295a4;
    }

  

.whatsapp-float { 
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* Icon */

	.icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon > .label {
			display: none;
		}

		.icon:before {
			line-height: inherit;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}
		
		/*DESARROLLO */
		
		main {
    /*   max-width: 960px;
      margin: 8rem auto;
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	 */  
	
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  border-radius: 20px;

  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid #1e293b;

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);

    }

	/* TITULOS */
.titulo-servicio {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 60px;
}

.titulo-servicio span {
  color: #45b8c4;
}

.subtitulo-servicio {
  text-align: center;
  color: #94a3b8;
  margin: 20px 0 60px;
  line-height: 1.6;
}

.descripcion-servicio p{
	 text-align: center;
}

	

/* GRID */
.planes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 5%;
}

/* CARD */
.plan {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER */
.plan:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #334155;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* DESTACADO (plan del medio) */
.plan-container:nth-child(2) .plan {
  border: 1px solid #45b8c4;
  background: linear-gradient(145deg, #022c22, #020617);
  transform: scale(1.03);
}

/* TITULO */
.plan h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* FEATURES */
.features {
  list-style: none;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 10px;
  color: #cbd5f5;
  font-size: 0.95rem;
}

/* BONUS DESCUENTO */
.features h3 {
  font-size: 0.9rem;
  color: #016080;
  margin-top: 15px;
}

/* CTA */
.cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  background: #016080;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta:hover {
  
  background: radial-gradient(circle at center, #0f172a, #016080) !important;
}

/* EFECTO PRO */
.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(34,197,94,0.15), transparent);
  opacity: 0;
  transition: 0.3s;
}

.plan:hover::before {
  opacity: 1;
}

.plan::before {
  pointer-events: none;
}	


    .checklist {
      list-style: none;
      margin: 1rem 0;
      padding: 0;
	  font-color: #11424d;
    }
	
	.checklist li::before {
  font-family: "Font Awesome 6 Free"; /* o la versión que uses */
  font-weight: 900; /* necesario para iconos sólidos */
  content: "\f00c"; /* Unicode del fa-check */
  margin-right: 0.5rem;
      color: #c0219f;
}

 .destacado {
      background-color: #e6f7f9;
      padding: 1rem;
      border-left: 5px solid #45b8c4;
      margin: 1rem 0;
      font-weight: bold;
    }

    .demo-link {
      display: inline-block;
      margin: 1rem 0;
      font-weight: bold;
      color: #11424d;
      text-decoration: underline;
    }

 

    .plan h2 span {
      color: #45b8c4;
    }

    .price {
      font-size: 1.2rem;
      font-weight: bold;
      margin: 0.5rem 0 1rem;
	  color: #45b8c4;
    }

    .features {
      list-style: none;
      margin-bottom: 1rem;
    }

    .features li {
      margin: 0.5rem 0;
      font-size: 0.95rem;
    }

 
    .badge {
      background-color: #45b8c4;
      color: white;
      font-size: 0.75rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      position: absolute;
      margin-top: -1.5rem;
      right: 1rem;
    }
.mensaje-planes {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 30px;
}

.mensaje-planes a {
  color: #45b8c4;
  text-decoration: none;
}



	
/* ==== Popup ==== */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.popup-overlay.show {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: popupFade 0.3s ease;
  position: relative;
}

.popup-content p {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
  line-height: 1.5;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

.popup-close:hover {
  color: #000;
}

/* Animación */
@keyframes popupFade {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ==== Responsive ==== */
@media (max-width: 480px) {
  .popup-content {
    padding: 1.5rem;
    max-width: 90%;
  }

  .popup-content p {
    font-size: 1rem;
  }
}

