/* ===== 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 { 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 */
}

   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;*/
    }

    footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      color: #666;
    }
	
footer a.icon {
  margin-right: 10px;
  font-size: 24px;
}

    header.navbar {
   
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #45b8c4; /* fondo para que no se superponga con el contenido */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
 	flex-wrap: wrap;
	gap: 1rem;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    }

    .logo-circle {
      width: 50px;
      height: 50px;
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-circle img {
      width: 75px;
    }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.logo-circle img {
  height: 50px;
}

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

.nav-links li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover con fondo */
.nav-links li a:hover {
  background: rgba(1, 96, 128, 0.2); /* azul translúcido */
  color: #fff;
}

/* 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;
}


/* Botón reunión */
  .btn-reunion {
      display: flex;
      align-items: center;
      
      color: #fff;
      font-weight: 600;
      text-decoration: none;
	  transition: 0.3s ease;
    }

    .btn-reunion:hover {
      background-color: #016080; /*#3295a4;*/
	  border-radius: 10px;
	  padding: 0.5rem;
    }

    .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;
	}
	

    .btn-reunion .icon {
      margin-left: 0.5rem;
      background-color: #016080;
      padding: 1.5rem 1rem;
      border-radius: 10px;
    }

    .btn-reunion .icon img {
      width: 20px;
      height: 20px;
    }
	

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

  .hero {
      background-color: #e6f7fa;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem;
      margin-top: 2rem;
      border-radius: 15px;
	
    }

    .hero-text {
      max-width: 50%;
    }

    .hero-text h1 {
      font-size: 2.5rem;
      font-weight: 900;
      color: #45b8c4;
    }

    .hero-text h1 .highlight {
      color: #016080;
    }

    .hero-text p {
      margin-top: 1rem;
      font-size: 1.1rem;
	   color: #016080;
    }
	
 .form-container {
      background-color: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      width: 45%;
      box-shadow: var(--shadow); 
	  border-left: 4px solid #016080;
	  z-index:100;
	  }
 
   .form-container input,
    .form-container textarea {
       width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-family: 'Lato', sans-serif;
    }

    .form-container textarea {
      resize: vertical;
      height: 100px;
    }
    
    .formulario button {
      background-color: #45b8c4;
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    .formulario button:hover {
      background-color: #3295a4;
    }

    .form-container label {
      display: flex;
      align-items: center;
      font-size: 0.9rem;
	  margin-bottom:0.5rem;
    }

    .form-container label input[type="checkbox"] {
      margin-right: 0.5rem;
	  width: 5%;
	  margin-bottom: 0rem;
    }

    .form-container .submit-btn {
      background-color: #016080;
      border: none;
      padding: 0.75rem;
      width: 100%;
      font-size: 1rem;
      font-weight: bold;
      color: #fff;
      cursor: pointer;
    }
	
		.more-btn {
     background-color: #016080;
    border: none;
    padding: 0.5rem;
    width: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    /*margin-top: 10px;*/
    }

/* ===== SECCIONES =====
section {
  min-height: 100vh;
  padding: 50px 20px;
}
 */
/* ===== RESPONSIVE ===== */
/* @media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px;
    border: 1px solid #ddd;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .btn-reunion {
    display: none; /* opcional ocultar botón en mobile */
 /* }
} */


@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px; /* altura del navbar */
    left: 0;
    width: 100%;
    background: #016080;
    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: block;
    padding: 15px;
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .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-section {
      position: relative;
      background: #fff;
      padding: 6rem 2rem 4rem;
      margin-top: -5rem;
    }


    .services-section h2 {
      font-size: 2.5rem;
      color: #11424d;
      margin-bottom: 1rem;
    }

    .services-section span {
      color: #45b8c4;
    }

    .services-section p {
      font-size: 1.25rem;
      color: #333;
      max-width: 800px;
    }

    .service-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
      margin-top: 3rem;
    }


	.service-card {
		position: relative;
		background: #f4f4f4;
		padding: 2rem 1rem;
		text-align: center;
		border-radius: 15px;
		transition: background 0.3s ease;
		overflow: visible;
		box-shadow: var(--shadow);
	}
    .service-card.active {
      background: #45b8c4;
      color: #fff;
    }
	
	.service-card.active h3{
      color: #fff;
    }

    .service-card h3 {
      font-size: 1.2rem;
      margin-top:0rem; /* 1rem;*/
    }
  .service-description {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 1rem;
      background-color: inherit;
      color: #fff;
    }
	
	 .service-description p{
		 font-size: 0.8rem;
	 }

    .service-card.active .service-description {
      max-height: 150px;
      padding: 1rem;
    }

/* ==================== POR QUÉ ELEGIRNOS ==================== */
.elegirnos {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.elegirnos h2 {
  font-size: 2rem;
  color: #016080;
  margin-bottom: 40px;
}

.elegirnos-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.elegirnos-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elegirnos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.elegirnos-card i {
  font-size: 2.5rem;
  color: #c0219f; /* acento Pramana */
  margin-bottom: 15px;
}

.elegirnos-card h3 {
  font-size: 1.2rem;
  color: #016080;
  margin-bottom: 10px;
}

.elegirnos-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.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; /* si el card activo invierte colores */
}

/* Si usás .service-card.active para cambiar fondo/colores, mantenelo */
.service-card.active { background: #45b8c4; 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);
 }
/*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 {
  background: #fff;
  padding: 1rem 2rem;
  max-width: 1100px;
  margin: 3rem auto;
}

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

.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; /* límite de altura */
    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: 50%;
  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(160, 26, 132, 0.9);
}

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

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

/*tu clinica movil */

	.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;
    background: #f8fafa;
    border-radius: 12px;
    margin-top: 40px;
}

/* 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: #ffffff;
    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: #ffffff;
    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: #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: #3295a4;
    }

    footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      color: #666;
    }

.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);
    }

		
		  .titulo-servicio {
      font-size: 2.2rem;
      color: #11424d;
      margin-bottom: 0.5rem;
    }

    .subtitulo-servicio {
      font-size: 1.3rem;
      color: #45b8c4;
     margin: 0.5rem;
    }

    .descripcion-servicio p {
      margin-bottom: 1rem;
    }

    .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;
    }

 .planes-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    .plan {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 1.5rem;
      width: 280px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .plan h2 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: #11424d;
    }

    .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;
    }

    .cta {
      background-color: #45b8c4;
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .cta:hover {
      background-color: #3295a4;
    }

    .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;
    }

    .plan-container {
      position: relative;
    }

.plan-container:hover{


  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}


    @media (max-width: 768px) {
      .planes-container {
        flex-direction: column;
        align-items: center;
      }
    }
	
	
/* ==== 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;
  }
}

