:root {
  --brand-red: #c62828;
  --brand-red-dark: #7a0000;
  --brand-dark: #212529;
  --nav-bg: #000000;          /* negro */
  --nav-text: #b5b5b5;        /* plateado */
  --nav-hover: #8e0000;       /* dark red *

}

/* TOPBAR */
.topbar {
  background-color: var(--brand-red-dark);
  color: #fff;
  font-size: 0.875rem;
  padding: 6px 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--brand-red);
}

.topbar i {
  margin-right: 6px;
  font-size: 0.9rem;
  color: #eee;
}

.topbar-social a {
  color: #eee;
  margin-left: 12px;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.topbar-social a:hover {
  color: #c62828; /* rojo corporativo */
}


/* TOPBAR NORMAL */
.topbar {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* TOPBAR OCULTA */
.topbar.topbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
}



/* NAVBAR FONDO NEGRO */
.navbar {
  background-color: var(--nav-bg) !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 5px solid var(--nav-hover);
}

/* NAVBAR NORMAL */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.25s ease;
}

/* NAVBAR COMPACTO AL SCROLL */
.main-navbar.nav-scrolled {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* LOGO */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 120px;
  width: auto;
  transition: height 0.25s ease;
}

/* LINKS DEL MENU */
.navbar .nav-link {
  color: var(--nav-text) !important;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: color 0.25s ease;
}

/* HOVER Y ACTIVO */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--nav-hover) !important;
  position: relative;
  font-weight: 700;
  text-decoration: none !important;
}

/* BOTON HAMBURGUESA (MÓVIL) */
.navbar-toggler {
  border-color: var(--nav-text);
}

.navbar-toggler-icon {
  filter: invert(85%); /* icono claro sobre fondo negro */
}

/* MENU COLAPSADO EN MÓVIL */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--nav-bg);
    padding: 1rem 0;
  }

  .navbar .nav-link {
    padding: 0.75rem 1.5rem;
  }


  .navbar-brand img {
    height: 70px;
  }

}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 220px); /* header + topbar aprox */
  min-height: 520px;
  background-image: url("assets/img/hero/hero-main.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENIDO */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #ddd;
  margin-bottom: 2rem;
}

/* ACCIONES */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BOTONES */
.btn-hero-primary {
  background-color: var(--nav-hover);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  border-radius: 2px;
}

.btn-hero-primary:hover {
  background-color: var(--brand-red-dark);
  color: #fff;
}

.btn-hero-secondary {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  border-radius: 2px;
}

.btn-hero-secondary:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 991.98px) {
  .hero {
    height: auto;
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

/* FOOTER */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}


.site-footer {
  background-color: var(--nav-bg); /* MISMO negro que el nav */
  border-top: 5px solid var(--nav-hover); /* MISMA línea que el nav */
  color: #b5b5b5;
  padding: 3rem 0 0;
  font-size: 0.9rem;
}

/* TITULOS */
.site-footer h5 {
  color: #8e0000;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* LOGO */
.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}


.footer-brand {
  padding-right: 1.5rem; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
}



/* TEXTO */
.site-footer p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* LINKS */
.site-footer a {
  color: #b5b5b5;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-red);
}

/* LISTAS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

/* ICONOS */
.footer-contact i {
  margin-right: 8px;
  color: #b5b5b5;
}

/* REDES */
.footer-social a {
  margin-right: 12px;
  font-size: 1.1rem;
}

/* SUBFOOTER */
.footer-bottom {
  border-top: 1px solid #1f1f1f;
  margin-top: 2rem;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

.subfooter_p{
  color: #8e0000;
  font-weight: bold;
}

/*servicios para empresas*/

.service-box {
  background-color: #111;
  padding: 1.5rem;
  border: 1px solid #222;
  height: 100%;
}

.service-box h3 {
  color: var(--brand-red);
  margin-bottom: 0.8rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;

  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;

  transition: all 0.2s ease;
}

.service-link:hover {
  color: var(--brand-red-dark);
}

.feature-box {
  background-color: #111;
  padding: 1.2rem;
  border: 1px solid #222;
  height: 100%;
}

.feature-box h5 {
  color: #fff;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: #f8f9fa;
  color: #212529;
}

.section-dark {
  background-color: #111;
  color: #ddd;
}

.section-accent {
  background-color: var(--brand-red-dark);
  color: #fff;
  text-align: center;
}

/* SECCIÓN */
.sector-differentiation {
  padding: 4rem 0;
  background-color: #181818;
  border-top: 1px solid #272727;
  color: #ddd;
}

/* IMAGEN */
.diff-image {
  width: 100%;
  border-radius: 6px;
}

.sector-differentiation img {
/*  width: 100%;
  height: auto;*/
  border-radius: 8px;
  transform: translateY(10px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  max-height: 420px;
  aspect-ratio: 4 / 3;
}

/* TÍTULO */
.sector-differentiation h2 {
  color: #fff;
  margin-bottom: 1rem;
}

/* ITEM */
.diff-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

/* CAJA DEL ICONO (lo importante) */
.diff-icon {
  width: 50px;
  height: 50px;
  background-color: #2a2a2a;   /* gris oscuro suave */
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* ICONO */
.diff-icon i {
  font-size: 1.3rem;
  color: var(--brand-red);
}

/* TEXTO */
.diff-content h5 {
  margin-bottom: 4px;
  color: #fff;
}

.diff-content p {
  margin: 0;
  color: #aaa;
  line-height: 1.5;
}

/*
.diff-icon {
  background-color: #e9ecef;
}

.diff-icon i {
  color: #333;
}
*/

/* SECCIÓN EXTERIOR */
.cta-wrapper {
  padding: 5rem 0;
  background-color: #f6f6f6; /* fondo suave que destaca el bloque */
}

/* CAJA CENTRAL */
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;

  background-color: #fff;
  border-radius: 12px;

  text-align: center;

  border: 1px solid #eee;
}

/* TÍTULO */
.cta-box h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}

/* TEXTO */
.cta-box p {
  color: #666;
  margin-bottom: 2rem;
}

/* BOTÓN */
.btn-cta {
  background-color: var(--brand-red);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-cta:hover {
  background-color: var(--brand-red-dark);
  color: #fff;
}

.services-section {
  padding: 4rem 0;
  background-color: #f6f6f6;
}

/* HEADER */
.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-weight: 700;
}

.section-header p {
  color: #666;
}

/* CARD */
.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #eee;
  height: 100%;
  position: relative;
  transition: all 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* ICONO */
.service-icon {
  width: 60px;
  height: 60px;
  background-color: #f0f0f0;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--brand-red);
}

/* TITULO */
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* TEXTO */
.service-card p {
  color: #666;
  margin-bottom: 1rem;
}

/* LISTA */
.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.service-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: "✓";
  color: var(--brand-red);
  position: absolute;
  left: 0;
}

/* LINK */
.service-card a {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
}

/* CARD DESTACADA */
.service-card.featured {
  border: 2px solid var(--brand-red);
}

.badge-service {
  position: absolute;
  top: -10px;
  right: 15px;
  background-color: var(--brand-red);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.hero_empresa {
  background-image: url("../img/empresa/empresa1.jpeg");
}

.hero_empresaaux {
  background-image: url("../img/servicios/empresaaux1.jpeg");
}

.hero_particulares {
  background-image: url("../img/servicios/particulares1.jpeg");
}

.about-section,
.where-section {
  padding: 4rem 0;
}

.about-section p,
.where-section p {
  max-width: 700px;
  color: #555;
}

.about-section h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-list {
  margin-top: 1rem;
  padding-left: 20px;
}

.about-list li {
  margin-bottom: 0.4rem;
}

.about-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transform: translateY(10px);
}




/* HOW */
.how-section {
  padding: 4rem 0;
  background-color: #f6f6f6;
}

/* CARD */
.how-card {
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  height: 100%;

  transition: all 0.2s ease;
}

.how-card:hover {
  transform: translateY(-5px);
}

/* ICONO */
.how-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;

  background-color: #f1f1f1;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.how-icon i {
  font-size: 1.6rem;
  color: var(--brand-red);
}

/* TEXTO */
.how-card h4 {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.how-card p {
  color: #666;
}

.where-section {
  padding: 4rem 0;
}

/* TARJETA */
.where-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #eee;
  background-color: #fafafa;
  border-radius: 8px;

  transition: all 0.2s ease;
}

.where-card:hover {
  transform: translateY(-5px);
}

/* ICONO */
.where-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;

  background-color: #f1f1f1;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.where-icon i {
  font-size: 1.6rem;
  color: var(--brand-red);
}

/* TEXTO */
.where-card p {
  margin: 0;
  font-weight: 500;
}

.mid-highlight {
  padding: 5rem 0;
  background-color: #181818;
  color: #fff;
  text-align: center;
}

.mid-highlight h2 {
  font-weight: 800;
  margin-bottom: 1rem;
}

.mid-highlight p {
  color: #bbb;
  max-width: 700px;
  margin: 0 auto;
}

/* CONTACTO DIRECTO */
.contact-direct {
  padding: 4rem 0;
  background-color: #f6f6f6;
}

.contact-card {
  text-align: center;
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

.contact-card i {
  font-size: 2rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
}

/* DESTACADO TELÉFONO */
.contact-card.highlight {
  border: 2px solid var(--brand-red);
}

/* BOTONES */
.btn-contact {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.4rem;
  background-color: var(--brand-red);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

/* FORMULARIO */
.contact-form-section {
  padding: 4rem 0;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
}

/* EMAIL */
.contact-mail {
  padding: 3rem 0;
  background-color: #181818;
  color: #fff;
}

.contact-mail a {
  color: var(--brand-red);
  font-weight: 600;
}


.hero_contacto {
  background-image: url("../img/hero/hero-contacta.jpg");
}

.accept-check {
  font-size: 0.9rem;
}

.accept-check label {
  color: #555;
}

.accept-check a {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
}

.accept-check a:hover {
  text-decoration: underline;
}

/* HERO HOME */
.hero_home {
  background-image: url("../img/hero/hero-home.jpeg");
}


/* SECCIONES */
.light-section {
  background-color: #f7f7f7;
}

.where-section {
  background-color: #fafafa;
}

.how-section {
  background-color: #fff;
}

.cta-wrapper {
  background-color: #fff;
}


/* BLOQUE CON IMAGEN */
.home-split {
  padding: 5rem 0;
  background-color: #fff;
}

.home-split img {
  width: 100%;
  border-radius: 8px;
}


/* INTERMEDIO */
.INTERMEDIO {
  padding: 5rem 0;
  background-color: #181818;
  color: #fff;
  text-align: center;
}

.INTERMEDIO p {
  color: #bbb;
  max-width: 600px;
  margin: 0 auto;
}


/* LINKS CARD */
.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
}

.service-link:hover {
  color: var(--brand-red-dark);
}

.clients-section {
  padding: 3rem 0;
  background-color: #fff;
}

/* CONTENEDOR */
.clients-slider {
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll 25s linear infinite;
}

.clients-track img {
  height: 50px;
  width: 120px;       /* ancho FIJO */
  object-fit: contain; /* evita deformaciones */

  opacity: 0.6;
  transition: 0.3s ease;

  flex: 0 0 auto;
}

.clients-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-contact {
  margin-top: 1.5rem;
  display: flex;
  gap: 20px;
}

.hero-contact a {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;

  color: #fff;
  font-size: 1.2rem;

  transition: all 0.25s ease;
}

.hero-contact a:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
}

/* SOLO PARA CONTACTO */
.hero_contacto .hero-content {
  margin: 0 auto;
  text-align: center;
}

/* BOTONES */
.hero_contacto .hero-actions {
  display: flex;
  justify-content: center;
}

/* ICONOS */
.hero_contacto .hero-contact {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* TEXTO */
.hero_contacto p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero_contacto h1 {
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

/* INPUTS Y SELECT EN FOCO */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 0.2rem rgba(198, 40, 40, 0.25);
  outline: none;
}

/* CONTENEDOR */
.accept-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* CHECKBOX */
.accept-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;

  accent-color: var(--brand-red);
  cursor: pointer;
}

/* TEXTO */
.accept-check label {
  line-height: 1.4;
  color: #555;
  cursor: pointer;
}

/* LINK */
.accept-check a {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
}

.accept-check a:hover {
  text-decoration: underline;
}

.contact-form-section {
  background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url("../img/hero/hero-contacta.jpg");

  background-size: cover;
}

.contact-social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-social a {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);

  color: #fff;
  font-size: 1.2rem;

  transition: all 0.25s ease;
}

.contact-social a:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--brand-red);
  color: #fff;

  border-radius: 50%;
  font-size: 1.2rem;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
}

/* visible al hacer scroll */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

/*.legal-page {
  padding: 4rem 0;
}

.legal-page h1 {
  font-weight: 700;
  margin-bottom: 2rem;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.legal-page p {
  color: #555;
  line-height: 1.6;
  max-width: 800px;
}*/
/* LEGAL DARK */
.legal-page {
  padding: 4rem 0;
  background-color: #181818;
  color: #ddd;
}

.legal-page h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--brand-red);  
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;

}

/* TEXTO */
.legal-page p,
.legal-page li {
  color: #bbb;
  line-height: 1.7;
}

/* LISTAS */
.legal-page ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* LINKS */
.legal-page a {
  color: var(--brand-red);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.form-message {
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

.services-quick {
  padding: 4rem 0;
  background-color: #fff;
}

/*
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 8px;

  text-decoration: none;
  color: #333;

  transition: all 0.25s ease;
}

.quick-item i {
  font-size: 1.8rem;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.quick-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

.quick-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-red);
}
*/

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 140px;           
  width: 100%;             

  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 10px;

  background-color: #fff;

  text-decoration: none;
  color: #333;

  transition: all 0.25s ease;
}

/* ICONO */
.quick-item i {
  font-size: 1.8rem;
  color: var(--brand-red);
  margin-bottom: 0.6rem;

  transition: all 0.25s ease;
}


.services-quick .row {
  justify-content: center;
}


/* TEXTO */
.quick-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* HOVER (CLAVE) */
.quick-item:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.quick-item:hover i {
  transform: scale(1.2);
}

.quick-item:hover span {
  color: var(--brand-red);
}


.contact-modal {

  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.7);

  display: none;             /* oculto por defecto */

  align-items: center;       /* centra vertical */
  justify-content: center;   /* centra horizontal */

  z-index: 9999;
}

/* cuando se abre */
.contact-modal.show {
  display: flex;
}

.modal-content {
  background-color: #1c1c1c;
  color: #fff;

  padding: 2rem;
  max-width: 420px;
  width: 90%;

  border-radius: 12px;
  border: 1px solid #2a2a2a;

  text-align: center;
}

.modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}


.modal-actions a {
  display: inline-block;
  margin: 10px;
}
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.6rem;
  border-radius: 6px;
  background-color: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.action-btn:hover {
  background-color: var(--brand-red);
}

/* WhatsApp verde */
.action-btn.whatsapp i {
  color: #25D366;
}

#miniForm input {
  width: 100%;
  margin-bottom: 10px;
  padding: 0.6rem;
  background-color: #2a2a2a;
  border: 1px solid #333;
  color: #fff;
}

#miniForm input::placeholder {
  color: #777;
}

#miniForm button {
  width: 100%;
  padding: 0.7rem;
  background-color: var(--brand-red);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

#miniForm button:hover {
  background-color: var(--brand-red-dark);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #aaa;
}

.close-modal:hover {
  color: #fff;
}

.quick-item.urgente {
  border: 2px solid var(--brand-red);
}

.quick-item.urgente i {
  color: var(--brand-red);
}
.quick-item:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.quick-item:hover span {
  color: var(--brand-red);
}


.quick-item i {
  font-size: 2rem;
}

.about-features {
  margin-top: 1.5rem;
}

.about-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

/* ICONO */
.about-icon {
  width: 45px;
  height: 45px;

  background-color: #f1f1f1;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.about-icon i {
  font-size: 1.2rem;
  color: var(--brand-red);
}

/* TEXTO */
.about-item h5 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.about-item p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}
.section-header p {
  max-width: 600px;   /* controla ancho */
  margin: 0 auto;     /* centra el bloque */
  text-align: center; /* asegura centrado */
}

.home-quick {
  padding: 3rem 0;
  background-color: #fff;
}

/* ITEM */
.quick-home-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 1.2rem;
  height: 120px;

  border: 1px solid #eee;
  border-radius: 10px;

  text-decoration: none;
  color: #333;

  transition: all 0.25s ease;
}

/* ICONO */
.quick-home-item i {
  font-size: 1.6rem;
  color: var(--brand-red);
  margin-bottom: 4px;
}

/* TEXTO */
.quick-home-item span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* HOVER */
.quick-home-item:hover {
  transform: translateY(-5px);
  border-color: var(--brand-red);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.quick-home-item:hover span {
  color: var(--brand-red);
}

/* URGENTE */
.quick-home-item.urgente {
  border: 2px solid var(--brand-red);
}













