/* === RESET Y BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8f8f8;
  color: #232323;
  min-height: 100vh;
}

.container {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}

/* === HEADER === */
.main-header {
  width: 100%;
  background: linear-gradient(90deg, #00b63d 0%, #4d504d 100%);
  color: #fff;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(10, 95, 173, 0.03);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 48px;
}

/* === MENÚ === */
.menu ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s;
}
.menu a::after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  background: #fff;
  transition: width 0.2s;
}
.menu a:hover {
  color: #00b63d;
}
.menu a:hover::after {
  width: 100%;
  background: #00b63d;
}


/* === HERO SECTION === */
.hero-section {
  background: #fff;
  padding: 4rem 0 2.5rem 0;
  padding-top: 48px;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1.3;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  line-height: 1.2;
  color: #232323;
}
.hero-text .title-bold {
  color: #00b63d;
}
.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
  color: #444;
  max-width: 500px;
}
.btn-principal {
  display: inline-block;
  background: linear-gradient(90deg, #00b63d 50%, #4d504d 100%);
  color: #fff;
  padding: 0.85rem 2.5rem;
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(0,182,61,0.11);
  transition: background 0.18s, box-shadow 0.18s;
}
.btn-principal:hover {
  background: linear-gradient(90deg, #4d504d 40%, #00b63d 100%);
  box-shadow: 0 8px 32px rgba(0,182,61,0.13);
}
.hero-img {
  flex: 1;
  text-align: right;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 163, 48, 0.15))
}
.hero-img img {
  max-width: 430px;
  width: 98%;
  border-radius: 2.5rem 0 2.5rem 0;
  transition: transform .35s ease, box-shadow .35s ease;
  height: auto;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 182, 61, 0.18);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (hover:hover){
  .hero-img img:hover{
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,163,48,.18);
  }
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #00a330;
}

.feature-card p {
  font-size: 0.9rem;
  color: #525b5b;
  line-height: 1.4;
}

.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 163, 48, 0.15);
}

.feature-card svg {
  stroke: #00a330;
}

.modulos-destacados-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center; /* <-- clave */
}

.modulos-destacados-grid .md-item{
  width: 210px; /* ajusta según tu diseño */
}


.modulos-destacados .md-icon{
  font-size: 44px;      /* antes 42, súbelo si quieres a 48 */
  color: #00a330;       /* verde ClaviSoft */
  margin-bottom: 14px;
  display: inline-block;
}

.modulos-destacados .md-item{
  transition: transform .2s ease, box-shadow .2s ease;
}

.modulos-destacados .md-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 163, 48, 0.12);
}

.md-icon{
  background: rgba(0,163,48,.1);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.md-item:hover .md-icon{
  background: #00a330;
  color: #fff;
}

.md-item:hover {
  box-shadow: 0 12px 30px rgba(0, 182, 61, 0.18);
}

.badge-sunat{
  display:inline-block;
  margin-top:8px;
  font-size:12px;
  color:#00a330;
  font-weight:600;
}


/* === DETALLES IMPORTANTES (RÁPIDOS) === */
.detalles-section {
  background: #f5f5f5;
  padding: 3.5rem 0 1.5rem 0;
  text-align: center;
}
.detalles-section h2 {
  font-size: 2.1rem;
  color: #4d504d;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.detalles-section .verde {
  color: #00b63d;
}
.detalles-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.detalle-item {
  background: #fff;
  padding: 2rem 1.3rem 1.7rem 1.3rem;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.detalle-item img {
  height: 54px;
  margin-bottom: 1.1rem;
}
.detalle-item h3 {
  color: #4d504d;
  font-size: 1.09rem;
  margin-bottom: 0.6rem;
}
.detalle-item p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}

/* === MÓDULOS PRINCIPALES === */
.modulos-section {
  background: #fff;
  padding: 4rem 0 2.5rem 0;
}
.modulos-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}
.modulos-text {
  flex: 1;
  min-width: 250px;
}
.modulos-text h2 {
  color: #232323;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.modulos-text p {
  color: #555;
  margin-bottom: 1.2rem;
}
.btn-principal-outline {
  display: inline-block;
  color: #4d504d;
  border: 2px solid #4d504d;
  background: none;
  border-radius: 25px;
  padding: 0.75rem 2.1rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.btn-principal-outline:hover {
  background: #4d504d;
  color: #fff;
}
.modulos-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  flex: 2;
}
.modulo-card {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 2rem 1.2rem;
  box-shadow: 0 2px 10px #e6e6e6;
  text-align: center;
}
.modulo-card img {
  height: 40px;
  margin-bottom: .9rem;
}
.modulo-card h4 {
  color: #4d504d;
  margin-bottom: .5rem;
  font-size: 1.1rem;
}
.modulo-card p {
  color: #666;
  font-size: 1rem;
}


/* === MODULOS DESTACADOS === */
.modulos-destacados {
  background: #f8f8f8;
  padding: 3.5rem 0 2rem 0;
}
.modulos-destacados h2 {
  font-size: 2rem;
  color: #4d504d;
  margin-bottom: 2.3rem;
}
.modulos-destacados .verde {
  color: #00b63d;
}
.modulos-destacados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
}
.md-item {
  background: #fff;
  padding: 2rem 1rem 1.5rem 1rem;
  border-radius: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(10,95,173,0.07);
  text-align: center;
}
.md-item img {
  height: 44px;
  margin-bottom: 1rem;
}
.md-item h4 {
  color: #00b63d;
  margin-bottom: .5rem;
  font-size: 1.08rem;
}
.md-item p {
  color: #444;
  font-size: 0.97rem;
  margin: 0;
}



/* === ALIADOS (CLIENTES) === */
.aliados-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.aliados-section h2 {
  font-size: 2rem;
  color: #4d504d;
  margin-bottom: .3rem;
  font-weight: 700;
}
.aliados-section .verde {
  color: #00b63d;
}

.aliado-item img {
  height: 28px;
}

/* === APP MOVIL === */
.app-movil-section {
  background: #f8f8f8;
  padding: 4rem 0 3rem 0;
}
.app-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  flex-wrap: wrap;
}
.app-img img {
  max-width: 280px;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(10,95,173,0.13);
}
.app-text {
  flex: 1;
  min-width: 250px;
}
.app-text h2 {
  font-size: 1.4rem;
  color: #232323;
  margin-bottom: 1rem;
}
.app-text .verde {
  color: #00b63d;
}
.app-text p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

/* === PRECIOS === */

/* === PRECIOS === */
.precios-section {
  background: #fafbfc;
  padding: 3rem 0 5rem 0;
}


.precios-section h2 {
  font-size: 2.6rem;
  color: #4d504d;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.toggle-precio {
  width: 380px;
  max-width: 98vw;
  margin: 1.5rem auto 0.5rem auto; /* Un poco de margen abajo */
  display: flex;
  border-radius: 2.5em;
  border: 2px solid #4d504d;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px #00b63d18;
  justify-content: center;
  z-index: 10;
  position: relative;
}
.toggle-btn {
  flex: 1; border: none; background: none; font-size: 1.25rem; padding: .75em 1.5em; font-weight: 600; cursor: pointer; color: #4d504d; transition: background 0.18s, color 0.18s;
}
.toggle-btn.active { background: #4d504d; color: #fff; }

.precios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  padding-top: 3.0rem; /* Agrega padding arriba para que no tape la cinta recomendada */
  position: relative;
  z-index: 1;
}
.precio-card {
  flex: 1 1 260px;
  max-width: 350px;
  min-width: 270px;
  background: #fff;
  border: 2.5px solid #00b63d;
  border-radius: 1.3em;
  padding: 2.7rem 2rem 2.3rem 2rem;
  margin: 0 0.5rem;
  box-shadow: 0 2px 20px #00b63d13;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  z-index: 0;
}
.precio-card:hover,
.precio-card.destacado {
  transform: scale(1.06) translateY(-8px);
  border-width: 3.5px;
  box-shadow: 0 10px 38px #00b63d29, 0 2px 16px #4d504d14;
  z-index: 10;
}
.precio-card .titulo {
  font-family: 'Inter', sans-serif;
  color: #4d504d;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.precio-card .anual {
  color: #888;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.1rem;
}
.precio-mensual {
  background: linear-gradient(90deg, #00b63d 60%, #4d504d 100%);
  color: #fff;
  display: inline-block;
  border-radius: 22px;
  padding: .22em 1.5em .22em 1.5em;
  font-size: 2.6rem;
  box-shadow: 0 3px 16px #00b63d17;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: background 0.22s;
}
.precio-mensual small { font-size: 1.1rem; font-weight: normal; }
/* Plan destacado/recomendado */
.precio-card.destacado {
  border-width: 3.5px;
  box-shadow: 0 18px 36px #4d504d1a, 0 4px 20px #00b63d25;
  position: relative;
}
.cinta-recomendado {
  background: linear-gradient(90deg, #00b63d 65%, #4d504d 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.35em 2em 0.35em 1.4em;
  border-radius: 1.3em 1.3em 1.1em 1.1em;
  position: absolute;
  top: -1.4em;
  left: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 2px 12px #4d504d25;
  letter-spacing: 1px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.cinta-recomendado i {
  font-size: 1.1em;
  margin-right: 7px;
}

/* Lista de beneficios */
.precio-card ul {
  padding: 0;
  margin: 1.3em 0 2em 0;
  color: #222;
  list-style: none;
  font-size: 1.16rem;
}
.precio-card ul li {
  margin-bottom: 0.65em;
  padding-left: 2.1em;
  position: relative;
  line-height: 1.45;
}
/* Check SVG premium */
.precio-card ul li::before {
  content: '';
  display: inline-block;
  width: 1.3em; height: 1.3em;
  margin-right: .7em;
  vertical-align: -0.30em;
  position: absolute; left: 0.1em;
  top: 0.12em;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%2300b63d" stroke-width="3" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 13l4 4L19 7"/></svg>') no-repeat center/contain;
}
.btn-principal {
  display: inline-block;
  background: linear-gradient(90deg, #00b63d 65%, #4d504d 100%);
  color: #fff;
  padding: 0.9em 2.2em;
  border-radius: 2em;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 700;
  box-shadow: 0 4px 22px #00b63d36;
  border: none;
  margin-top: .8em;
  transition: transform .16s, box-shadow .18s, background 0.25s;
}
.btn-principal:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #4d504d 65%, #00b63d 100%);
  box-shadow: 0 10px 30px #00b63d29;
}
@media (max-width: 900px) {
  .precios-grid { flex-direction: column; gap: 2.5rem; }
  .precio-card { max-width: 98vw; }
}


/* === FOOTER === */
.footer {
  background: linear-gradient(90deg, #00b63d 40%, #4d504d 100%);
  padding: 2.2rem 0 1.1rem 0;
  text-align: center;
  color: #fff;
  letter-spacing: 0.03em;
}
.footer-logo {
  height: 46px;
  margin-bottom: 1rem;
}
.footer-content p {
  margin: 0.7rem 0;
  color: #e6ffe6;
}
.footer-content small {
  font-size: 0.92rem;
  color: #e3ffe7;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-flex, .modulos-flex, .app-flex { flex-direction: column; text-align: center; }
  .modulos-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .detalles-grid, .precios-grid, .aliados-grid { flex-direction: column; }
  .menu ul { gap: 1rem; }
}
@media (max-width: 700px) {
  .hero-img img { max-width: 98vw; }
  .modulos-cards { grid-template-columns: 1fr; }
  .modulos-destacados-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .container { width: 99%; }
  .footer-logo { height: 36px;}
}


/* === CONTACTO === */
.contacto-section {
  background: #f9f9f9;
  padding: 40px 0 0 0;
}
.container-contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  flex: 1 1 350px;
}
.info-card {
  background: #fafbfc;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(65, 199, 52, 0.05);
  margin-bottom: 0;
}
.info-icon {
  font-size: 2rem;
  color: #00b63d;
  margin-bottom: 10px;
}
.info-card h4 {
  color: #4d504d;
  margin: 0 0 0.3em 0;
  font-size: 1.1em;
}
.contact-form {
  background: #fafbfc;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(44,62,80,0.07);
  flex: 2 1 400px;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-left: 2rem;
}
.contact-form .form-row {
  display: flex;
  gap: 0.8rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #e1e3e8;
  border-radius: 5px;
  background: #fff;
  font-size: 1em;
  resize: none;
}
.contact-form textarea { min-height: 100px; }
.contact-form button {
  background: linear-gradient(90deg, #00b63d, #0a5fad 70%);
  color: #fff;
  font-weight: 600;
  padding: 0.8em 1.8em;
  border: none;
  border-radius: 6px;
  font-size: 1.05em;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.contact-form button:hover { background: #00b63d; }

.footer {
  background: #f9f9f9;
  color: #30384b;
  padding: 35px 0 0 0;
  border-top: 1px solid #eee;
}
.container-footer {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 10px;
}
.footer-brand h3 {
  color: #0a5fad;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.6em;
}
.footer-brand p {
  font-size: 1em;
  color: #61655d;
  margin-bottom: 0.4em;
}
.footer-links h4,
.footer-contacto h4 {
  font-size: 1.1em;
  color: #00b63d;
  margin-bottom: 0.7em;
}
.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.3em;
}
.footer-links a {
  color: #222;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: #0a5fad;
}
.footer-contacto .footer-social {
  margin-top: 1.2em;
}
.footer-social a {
  margin-right: 0.5em;
  color: #0a5fad;
  font-size: 1.3em;
  transition: color 0.16s;
}
.footer-social a:hover { color: #00b63d; }
.footer-copy {
  margin-top: 1em;
  font-size: 0.97em;
  color: #888;
}
@media (max-width: 1100px) {
  .container-contacto, .container-footer { flex-direction: column; gap: 2em;}
  .contact-form { margin-left: 0; }
}
@media (max-width: 720px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}


/* === FOOTER MODERNO === */
.footer {
  background: #f5f7fa;
  padding: 3.2rem 0 1.4rem 0;
  font-size: 1rem;
}
.footer-container {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 1.2rem;
}
.footer-col h3, .footer-col h4 {
  color: #0a5fad;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.6em;
}
.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.35em;
}
.footer-col a {
  color: #00b63d;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.footer-col a:hover { color: #0a5fad; }
.footer-social {
  display: flex;
  gap: 0.75em;
  margin-top: 0.7em;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px; height: 35px;
  border-radius: 50%;
  background: #e3e9f0;
  color: #0a5fad;
  font-size: 1.2em;
  transition: background .2s;
}
.footer-social a:hover { background: #00b63d; color: #fff; }
.footer-copy {
  text-align: center;
  color: #61655d;
  font-size: 1rem;
  border-top: 1px solid #e3e9f0;
  margin-top: 2rem;
  padding-top: 0.7rem;
}
@media (max-width: 900px) {
  .footer-container { flex-direction: column; align-items: center; }
  .footer-col { text-align: center; }
}


.contacto-section {background:#fafbfc;padding:60px 0 30px 0;}
.contacto-title {font-size:2rem;color:#4d504d;text-align:center;margin-bottom:2.5rem;font-weight:700;}
.contacto-grid {display:flex;flex-wrap:wrap;gap:2rem;}
.contacto-info {display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;flex:1 1 350px;}
.info-card {background:#fff;border-radius:10px;padding:1.2rem 1.5rem;box-shadow:0 2px 12px 0 rgba(44,62,80,.05);}
.contacto-form {background:#fff;border-radius:10px;padding:1.5rem;box-shadow:0 2px 16px 0 rgba(44,62,80,.07);flex:2 1 400px;min-width:340px;display:flex;flex-direction:column;gap:.7rem;}
.contacto-form .form-row {display:flex;gap:.8rem;}
.contacto-form input,.contacto-form textarea {width:100%;padding:.7em;border:1px solid #e1e3e8;border-radius:5px;background:#fff;font-size:1em;}
.contacto-form textarea {min-height:100px;}
.contacto-form button {background:linear-gradient(90deg,#00b63d,#0a5fad 70%);color:#fff;font-weight:600;padding:.8em 1.8em;border:none;border-radius:6px;font-size:1.05em;cursor:pointer;}
.footer {background:#fafbfc;padding:40px 0 10px 0;}
.footer-grid {display:flex;justify-content:space-between;align-items:flex-start;gap:2rem;flex-wrap:wrap;}
.footer-copy {margin-top:.7em;color:#888;font-size:.98em;}
.container {max-width:1200px;margin:auto;padding:0 20px;}
@media (max-width:900px){.contacto-grid,.footer-grid{flex-direction:column;gap:2em}.contacto-form{min-width:0}}
@media (max-width:720px){.contacto-info{grid-template-columns:1fr}}


.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.footer-social a {
  background: linear-gradient(90deg, #00b63d 0%, #0a5fad 100%);
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.3s, transform 0.25s;
  box-shadow: 0 2px 8px rgba(44,62,80,.07);
  text-decoration: none;
}
.footer-social a:hover {
  background: linear-gradient(90deg, #0a5fad 0%, #00b63d 100%);
  transform: translateY(-2px) scale(1.07);
  color: #fff;
}

.aliados-container {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 1220px;           /* Nuevo: Limita el ancho */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2rem;
  width: 100%;
  /* Puedes aumentar o reducir el max-width según lo que te guste más */
}
.aliados-green {
  color: #00b63d;
}


.aliado-item i {
  font-size: 2rem;
  color: #00b63d;
}
.aliado-item span {
  font-weight: 600;
}


.aliado-item:hover {
  box-shadow: 0 8px 24px 0 rgba(10,95,173,0.07);
  transform: translateY(-4px) scale(1.04);
}


.aliados-desc {
  text-align: center;
  color: #757575;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.aliados-titulo {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.3rem;
  color: #212529;
  letter-spacing: -2px;
}

.aliados-titulo strong {
  color: #222;
}
.aliados-titulo .aliados-green {
  color: #00b63d;
  font-weight: 900;
}

.aliados-green {
  color: #00b63d;
  font-weight: 900;
}
.font-bold, .aliados-bold {
  font-weight: 900;
}

.aliados-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.aliados-section {
  background: #fafbfb;
  padding: 3.5rem 0 2.5rem 0;
}
.aliados-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.7rem;
  letter-spacing: -1px;
  line-height: 1.15;
}
.aliados-green {
  color: #00b63d;
}
.aliados-bold {
  font-weight: 900;
}


.aliado-item i {
  color: #00b63d;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.17s, transform 0.16s;
}
.aliado-item span {
  display: block;
  font-size: 1.0rem;
  color: #4d504d;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.aliado-item:hover {
  box-shadow: 0 9px 32px rgba(0,182,61,0.12);
  color: #00b63d;
  transform: translateY(-7px) scale(1.04);
}
.aliado-item:hover i {
  color: #01863d;
  transform: scale(1.11) rotate(-7deg);
}
.aliado-item:hover span {
  color: #00b63d;
}

@media (max-width: 700px) {
  .aliados-titulo { font-size: 1.25rem; }
  .aliados-desc { font-size: 1.07rem; }
  .aliados-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .aliado-item { padding: 1.1rem 0.2rem 1.1rem 0.2rem; font-size: 0.96rem; min-height: 90px; }
  .aliado-item i { font-size: 1.4rem; margin-bottom: 0.2rem; }
}

.aliado-item:hover {
  box-shadow: 0 8px 24px 0 rgba(10,95,173,0.09);
  transform: translateY(-4px) scale(1.04);
}


@media (max-width: 700px) {
  .aliados-grid {
    max-width: 100%;
    flex-direction: column;
  }
  .aliados-titulo {
    font-size: 1.5rem;
  }
}


.aliados-section {
  background: #fafbfb;
  padding: 3.5rem 0 2.5rem 0;
}
.aliados-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.aliados-titulo {
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.6rem;
  color: #212529;
  letter-spacing: -2px;
  line-height: 1.12;
}
.aliados-green { color: #00b63d; font-weight: 900; }

.aliados-desc {
  text-align: center;
  color: #757575;
  font-size: 1.20rem;
  margin-bottom: 2.5rem;
}

/* ==== GRID Y CUADROS ==== */
.aliados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); /* Ajusta 210px según quieras el tamaño mínimo */
  gap: 1.25rem 1.20rem;  /* Primero: vertical | Segundo: horizontal */
  justify-items: center;
  align-items: stretch;
  margin-top: 1.5rem;
}

.aliado-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(60,60,60,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.12rem;
  color: #212529;
  padding: 1.2rem 0.5rem 1rem 0.5rem;
  min-height: 140px;
  min-width: 170px;
  max-width: 230px;
  transition: box-shadow 0.17s, transform 0.13s, color 0.14s;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.aliado-item i {
  color: #00b63d;
  font-size: 3.0rem;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.17s, transform 0.16s;
}
.aliado-item span {
  display: block;
  font-size: 1.07rem;
  color: #4d504d;
  margin-top: 10px; 
  font-weight: 600;
  letter-spacing: -0.5px;
}
.aliado-item:hover {
  box-shadow: 0 9px 32px rgba(0,182,61,0.11);
  color: #00b63d;
  transform: translateY(-5px) scale(1.045);
}
.aliado-item:hover i { color: #01863d; transform: scale(1.11) rotate(-7deg);}
.aliado-item:hover span { color: #00b63d; }

/* Responsive (ajusta cantidad columnas y separación en móviles) */
@media (max-width: 1100px) {
  .aliados-titulo { font-size: 2.0rem; }
  .aliados-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.8rem; }
  .aliado-item { font-size: 0.98rem; min-width: 0; padding: 1rem 0.2rem;}
  .aliado-item i { font-size: 1.65rem;}
}
@media (max-width: 700px) {
  .aliados-titulo { font-size: 1.25rem; }
  .aliados-desc { font-size: 1rem; }
  .aliados-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .aliado-item { font-size: 0.9rem; padding: 0.7rem 0.1rem; min-height: 80px; }
  .aliado-item i { font-size: 1.15rem;}
}


.modulos-section {
  padding: 3.5rem 0 4.5rem 0;
  background: #fafbfc;
}
.modulos-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
.modulos-text {
  flex: 1 1 350px;
  min-width: 280px;
  max-width: 430px;
}
.modulos-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.2rem;
}

.modulos-text p {
  font-size: 1.16rem;
  color: #5b5b5b;
  margin-bottom: 2rem;
}
.modulos-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.2rem;
  flex: 1 1 450px;
  min-width: 340px;
  max-width: 550px;
}
.modulo-card {
  background: #fff;
  border-radius: 1.2em;
  padding: 2.2rem 1.3rem 1.6rem 1.3rem;
  box-shadow: 0 2px 22px #0072bf18;
  text-align: center;
  transition: transform .15s, box-shadow .22s;
  border: 1.5px solid #00b63d22;
  position: relative;
}
.modulo-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 8px 30px #00b63d25;
  border-color: #00b63d60;
}
.icono-servicio {
  font-size: 2.7rem;
  color: #00b63d;
  margin-bottom: 0.7rem;
  display: block;
}
.modulo-card h4 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #222;
  margin-bottom: .4rem;
}
.modulo-card p {
  color: #585858;
  font-size: 1rem;
  margin: 0;
}
.btn-principal-outline {
  display: inline-block;
  border: 2px solid #00b63d;
  color: #00b63d;
  background: #fff;
  padding: .75em 2em;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background .18s, color .18s;
}
.btn-principal-outline:hover {
  background: #00b63d;
  color: #fff;
}
@media (max-width: 990px) {
  .modulos-flex {
    flex-direction: column;
    gap: 2.2rem;
  }
  .modulos-cards {
    grid-template-columns: 1fr;
    max-width: 370px;
  }
}

.modulo-card img, .img-sistema {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0.9em auto 1.1em auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 2px 16px #2222;
  object-fit: contain;
  background: #fff;
}
@media (max-width: 600px) {
  .modulo-card img, .img-sistema {
    max-width: 92vw;
  }
}

.servicios-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.intro-bloque {
  text-align: left;
  max-width: 500px;
  margin-bottom: 3.5rem;
}

.intro-bloque h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #525b5b;
  margin-bottom: .8rem;
}

.intro-bloque p {
  font-size: 1.18rem;
  margin-bottom: 1.5rem;
  color: #303030;
}
.btn-principal-outline {
  display: inline-block;
  border: 2px solid #00b63d;
  color: #009e39;
  background: #fff;
  font-size: 1.15rem;
  padding: 0.7em 2.5em;
  border-radius: 2em;
  font-weight: 700;
  transition: background .15s, color .15s, box-shadow .15s;
  box-shadow: 0 2px 10px #00b63d10;
}
.btn-principal-outline:hover {
  background: #00b63d;
  color: #fff;
  box-shadow: 0 5px 25px #00b63d25;
}

/* Alternado */
.solucion-bloque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  background: #fff;
  box-shadow: 0 6px 34px #00b63d18;
  border-radius: 2.2rem;
  margin-bottom: 2.7rem;
  padding: 2.3rem 2rem;
  transition: box-shadow .22s, transform .22s;
  position: relative;
}

.solucion-bloque:hover {
  box-shadow: 0 14px 44px #00b63d26;
  transform: translateY(-5px) scale(1.018);
  z-index: 3;
}

.solucion-img {
  flex: 1.1;
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.solucion-img img {
  max-width: 320px;
  max-height: 210px;
  width: 100%;
  border-radius: 1.2rem;
  background: #f5f5f5;
  box-shadow: 0 2px 14px #00b63d18;
  object-fit: contain;
}

.badge-recomendado {
  position: absolute;
  top: -18px; left: 0;
  background: linear-gradient(90deg, #00b63d 65%, #0a5fad 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.38em 1.6em;
  border-radius: 1.2em;
  box-shadow: 0 2px 10px #00b63d30;
  z-index: 4;
  left: 0; right: 0;
  margin: 0 auto;
  text-align: center;
}

.solucion-text {
  flex: 1.1;
  min-width: 240px;
  text-align: left;
  padding-left: 0.5rem;
}
.solucion-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #222;
  margin-bottom: .55rem;
}
.solucion-text p {
  font-size: 1.08rem;
  color: #303030;
}

/* Alternar lado */
.alternado {
  flex-direction: row;
}
.alternado-invert {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .solucion-bloque {
    flex-direction: column !important;
    text-align: center;
    gap: 1.3rem;
    padding: 1.7rem 0.9rem;
  }
  .solucion-text { padding-left: 0; }
  .solucion-img img { max-width: 240px; }
}


.servicios-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 2.7rem 1rem;
}

.intro-bloque {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 3rem auto;
  padding-bottom: 1rem;
}

.btn-principal-outline {
  display: inline-block;
  border: 2.3px solid #00b63d;
  color: #00b63d;
  background: #fff;
  font-size: 1.14rem;
  padding: 0.7em 2.3em;
  border-radius: 2.1em;
  font-weight: 700;
  transition: background .15s, color .15s, box-shadow .15s;
  box-shadow: 0 3px 14px #00b63d18;
  margin-top: 1.4rem;
}
.btn-principal-outline:hover {
  background: #00b63d;
  color: #fff;
  box-shadow: 0 6px 28px #00b63d2a;
}

/* Bloques alternados */
.solucion-bloque {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: #fff;
  box-shadow: 0 6px 34px #00b63d16;
  border-radius: 2.1rem;
  margin-bottom: 3.5rem;
  padding: 2.5rem 2.3rem;
  transform: translateY(60px);
  transition: all .7s cubic-bezier(.37,1.14,.26,.91);
  position: relative;
  min-height: 260px;
}

.solucion-bloque:hover {
  box-shadow: 0 16px 38px #00b63d29, 0 4px 20px #4d504d14;
  transform: translateY(-10px) scale(1.03);
  border-color: #00b63d;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  z-index: 3;

}

.solucion-img {
  flex: 1.05;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.solucion-img img {
  max-width: 345px;
  max-height: 210px;
  width: 100%;
  border-radius: 1.15rem;
  background: #f7f7f7;
  box-shadow: 0 2px 16px #00b63d12;
  object-fit: contain;
  transition: box-shadow .18s;
}

.badge-recomendado {
  animation: pop .4s cubic-bezier(.48,1.34,.24,.91);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00b63d 65%, #0a5fad 100%);
  color: #fff;
  font-size: 1.13rem;
  font-weight: bold;
  padding: 0.36em 1.7em;
  border-radius: 1.2em;
  box-shadow: 0 2px 10px #00b63d2e;
  z-index: 6;
  text-align: center;
  letter-spacing: .7px;
  min-width: 200px;
}
@keyframes pop {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.1);}
    100% { transform: scale(1); opacity: 1;}
}

.solucion-text {
  flex: 1.07;
  min-width: 260px;
  text-align: left;
  padding-left: 0.7rem;
}
.solucion-text h3 {
  font-size: 1.40rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: .68rem;
}
.solucion-text p {
  font-size: 1.11rem;
  color: #353535;
  max-width: 95%;
}

.alternado { flex-direction: row; }
.alternado-invert { flex-direction: row-reverse; }

@media (max-width: 1100px) {
  .solucion-bloque { padding: 1.4rem .7rem; gap: 1.4rem; }
  .solucion-img img { max-width: 220px; }
}
@media (max-width: 850px) {
  .solucion-bloque {
    flex-direction: column !important;
    text-align: center;
    gap: 1.3rem;
    min-height: unset;
    margin-bottom: 2.7rem;
  }
  .solucion-text { padding-left: 0; }
  .solucion-img img { max-width: 200px; }
}
@media (max-width: 520px) {
  .servicios-section { padding: 1.2rem .25rem; }
  .intro-bloque h2 { font-size: 1.28rem; }
  .solucion-bloque { padding: 1.1rem .22rem; }
  .solucion-img img { max-width: 145px; }
  .badge-recomendado { font-size: .94rem; min-width: 90px; }
}

.solucion-bloque.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bloque */
.aliados-clientes {
  padding: 56px 0;
  background: #f7f9fb;
}
.aliados-wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(10,95,173,.06);
  text-align: center;
}

/* Títulos */
.aliados-wrap h2{
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 650;
  color: #4d504d;
  letter-spacing: .2px;
}
.aliados-wrap h2 span{ color:#00b63d; }
.aliados-wrap .subtitulo{
  margin: 0 0 26px;
  color:#61655d;
}

/* Grid de logos */
.aliados-clientes .logo-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 26px 32px; /* fila / columna */
  align-items: center;
}

/* Item de logo */
.aliados-clientes .logo{
  margin: 0;
  height: 110px;                /* altura uniforme */
  display: grid;
  place-items: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eef3f7;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.aliados-clientes .logo img{
  max-height: 80px;             /* controla el alto real del logo */
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(.25);
  opacity: .9;
  transition: inherit;
}

/* Hover */
.aliados-clientes .logo:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border-color: #deebf6;
}
.aliados-clientes .logo:hover img{
  filter: grayscale(0);
  opacity: 1;
}

/* Responsive fino */
@media (max-width: 640px){
  .aliados-wrap{ padding: 22px 16px; }
  .logo-grid{ gap: 18px 18px; }
  .logo{ height: 96px; }
  .logo img{ max-height: 70px; }
}


.titulo-seccion {
  color: #525b5b; /* gris oficial */
  font-weight: 700;
}

.titulo-seccion .marca {
  color: #00a330; /* verde ClaviSoft */
}

.marca {
  color: #00a330 !important;
}


/* === HERO con formas (no plano) === */
.hero-section.hero-shapes{
  position: relative;
  overflow: hidden;
}

/* 2 blobs decorativos */
.hero-section.hero-shapes .shape{
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .45;
  filter: blur(18px);

}

/* Blob grande izquierda */
.hero-section.hero-shapes .shape-1{
  width: 520px;
  height: 520px;
  left: -220px;
  top: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(0,182,61,.55), rgba(0,182,61,0) 60%),
              radial-gradient(circle at 70% 70%, rgba(97,101,93,.18), rgba(77,80,77,0) 55%);
  border-radius: 55% 45% 40% 60% / 55% 35% 65% 45%;
}

/* Blob derecha */
.hero-section.hero-shapes .shape-2{
  width: 620px;
  height: 420px;
  right: -260px;
  bottom: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(0,182,61,.35), rgba(0,182,61,0) 60%),
              radial-gradient(circle at 60% 60%, rgba(10,95,173,.18), rgba(10,95,173,0) 55%);
  border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
}

/* Importante: tu contenido por encima de las formas */
.hero-section.hero-shapes .container{
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 900px){
  .hero-section.hero-shapes .shape-1{ width: 420px; height: 420px; left: -240px; top: -220px; }
  .hero-section.hero-shapes .shape-2{ width: 480px; height: 340px; right: -260px; bottom: -260px; }
}

/* ==========================
   PRECIOS: más compacto
   ========================== */

.precios-section{
  padding: 60px 0; /* reduce espacio vertical de la sección */
}

.precios-grid{
  gap: 26px; /* menos separación entre cards */
}

/* Card */
.precio-card{
  max-width: 320px;              /* reduce ancho visual */
  padding: 1.8rem 1.6rem;        /* reduce altura */
  border-radius: 1.1em;
}

/* Título y anual */
.precio-card .titulo{
  font-size: 22px;
  margin-bottom: 6px;
}
.precio-card .anual{
  font-size: 13px;
  margin-bottom: 12px;
}

/* Bloque verde del precio (ES LO QUE MÁS INFLA) */
.precio-card .precio-mensual{
  padding: 14px 16px;
  border-radius: 18px;
  margin: 12px auto 18px;
  max-width: 240px; /* controla el tamaño del bloque */
}

/* Número grande */
.precio-card .mes-amount{
  font-size: 44px;  /* antes se ve como 60+ */
  line-height: 1;
}

/* Centavos */
.precio-card .mes-centimos{
  font-size: 18px;
  top: -10px;
}

/* /Mes */
.precio-card .precio-text{
  font-size: 13px;
}

/* Lista */
.precio-card ul{
  margin: 0;
  padding: 0;
}
.precio-card ul li{
  font-size: 14px;
  margin: 0 0 9px 0;
  line-height: 1.35;
}

/* Botón */
.precio-card .btn-principal{
  padding: 10px 22px;
  font-size: 14px;
}

/* El recomendado: que destaque pero sin ser gigante */
.precio-card.destacado{
  transform: scale(1.02); /* antes suele inflarse más */
}


.precios-section h2{
  font-size: 40px;
  margin-bottom: 18px;
}

.toggle-precio{
  transform: scale(0.92);
  margin-bottom: 26px;
}

.precio-card .precio-mensual{
  transform: scale(0.9);
}

.section-divider svg {
  width: 100%;
  height: 120px;
  display: block;
}




.hero-section::after {
  content: "";
  position: absolute;
  right: -200px;
  top: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,182,61,0.18) 0%, transparent 70%);
  transform: translateY(-50%);
  z-index: -1;
}


.detalle-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detalle-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 182, 61, 0.12);
}


.detalle-item {
  border: 1px solid transparent;
}

.detalle-item:hover {
  border-color: rgba(0, 182, 61, 0.35);
}

.detalles-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
  padding: 80px 0;
}


.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px; /* 🔑 elimina la línea */
  width: 100%;
  height: 110px;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.detalles-section {
  background: #f8f8f8;
}

.hero-section{
  position: relative;
  overflow: hidden;
}

/* onda */
.hero-wave{
  position: absolute;
  left: 0;
  bottom: -3px;         /* 👈 clave: tapa el corte */
  width: 100%;
  height: 130px;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-wave svg{
  display: block;       /* 👈 evita espacios raros */
  width: 100%;
  height: 100%;
}

/* contenido del hero encima de la onda */
.hero-flex{
  position: relative;
  z-index: 2;
}

.detalles-section{
  margin-top: 0;
  padding-top: 60px; /* si quieres espacio, mejor padding */
}


.hero-description {
  font-size: 18px;
  margin-top: 15px;
  color: #333;
}

.hero-subdescription {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #00b63d;
  margin-bottom: 25px;
  margin-top:20px;
  font-weight: 500;
}
.hero-features span{
  background:#eafff2;
  padding:6px 12px;
  border-radius:20px;
  font-size:13px;
}

.title-bold{
  color:#00b63d;
  font-size:2.8rem;
  font-weight:800;
}


/* =========================================
   FIXES + MOBILE CARD LAYOUT (PEGAR AL FINAL)
========================================= */

/* Fix: selector mal escrito (faltaba el punto) */
.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: .7em;
  border: 1px solid #e1e3e8;
  border-radius: 8px;
  background: #fff;
  font-size: 1em;
}

/* Botón hamburguesa */
.nav-toggle{
  display:none;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
}

/* ====== NAV RESPONSIVE: estilo tarjeta ====== */
@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }

  /* el UL será la tarjeta */
  .menu ul{
    position: absolute;
    top: 68px;               /* ajusta si tu header es más alto */
    right: 18px;
    width: min(320px, calc(100vw - 36px));
    background: #ffffff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
    display: none;           /* oculto por defecto */
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }

  /* cuando main.js agrega .active */
  .menu ul.active{ display:flex; }

  .menu ul li a{
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    color: #1f2a2a;
    font-weight: 600;
    text-decoration: none;
  }
  .menu ul li a:hover{
    background: rgba(0,182,61,.10);
  }
}

/* ====== HERO: que se vea brutal en móvil ====== */
@media (max-width: 900px){
  .hero-flex{
    flex-direction: column;
    text-align: center;
  }
  .hero-text p{
    margin-left: auto;
    margin-right: auto;
  }
  .hero-img{
    text-align: center;
    animation: none; /* opcional en móvil */
  }
  .hero-img img{
    max-width: 92vw;
    margin: 0 auto;
  }
  .btn-principal{
    width: 100%;
    max-width: 340px;
  }

  /* chips centrados */
  .hero-features{
    justify-content: center;
    flex-wrap: wrap;
    gap: .7rem;
  }
}

/* ====== CONTACTO: inputs en columna en móvil ====== */
@media (max-width: 720px){
  .contacto-form .form-row{
    flex-direction: column;
  }
}


/* ===== MENÚ TARJETA MÓVIL ===== */
.menu-toggle{
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.menu a i{
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

/* Desktop: iconos opcionales (puedes ocultarlos si quieres) */
@media (min-width: 901px){
  .menu a i{ display:none; }
}

/* Mobile */
@media (max-width: 900px){
  .menu-toggle{ display:block; }

  /* Oculta el menú normal */
  .menu ul{
    display: none;
  }

  /* Cuando se activa (JS agrega .active) */
  .menu ul.active{
    display: flex;
    flex-direction: column;
    gap: 14px;

    position: absolute;
    top: 70px;             /* ajusta según tu header */
    left: 50%;
    transform: translateX(-50%);

    width: min(92vw, 360px);
    background: #fff;
    border-radius: 18px;
    padding: 18px 16px;

    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    z-index: 2000;
  }

  .menu ul.active a{
    color: #232323;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
  }

  .menu ul.active a:hover{
    background: rgba(0,182,61,.10);
    color: #00b63d;
  }

  /* Quita la línea animada en móvil para que se vea limpio */
  .menu a::after{ display:none; }
}

/* ====== AJUSTES NAV MÓVIL (ICONOS VERDES + ESPACIADO) ====== */
@media (max-width: 900px){

  /* Header: separar logo y hamburguesa */
  .header-flex{
    gap: 12px;
  }

  /* Logo más pequeño en móvil */
  .logo{
    width: 150px;      /* ajusta 140–160 según te guste */
    height: auto;
  }

  /* Botón hamburguesa, que no quede pegado */
  .menu-toggle{
    margin-left: auto; /* lo empuja a la derecha */
    padding: 10px 12px;
    border-radius: 10px;
  }

  /* Tarjeta del menú */
  .menu ul.active{
    top: 64px; /* baja un poquito la tarjeta */
  }

  /* Link dentro del menú */
  .menu ul.active a{
    gap: 10px;
  }

  /* ICONOS VERDES (aquí está el cambio clave) */
  .menu ul.active a i{
    color: #00b63d !important;
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
  }

  /* Texto del menú */
  .menu ul.active a span{
    color: #232323;
  }

  /* Hover */
  .menu ul.active a:hover{
    background: rgba(0,182,61,.10);
  }
}

@media (max-width: 900px){
  #menuIcon{
    color: #fff;
  }
}




.mensaje-exito{
  display:none;
  background:#e9fbe9;
  border:1px solid #b7f0b7;
  color:#0a7a2c;
  padding:12px 14px;
  border-radius:12px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}
