@charset "UTF-8";

/* =========================
   RESET BÁSICO MODERNO
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-family: "Lato", sans-serif;
}

/* Eliminar estilos por defecto */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* =========================
   VARIABLES
========================= */
/* =========================
   CONTAINER RESPONSIVE
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* =========================
   BREAKPOINTS
========================= */
/* Tablets */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Laptops */
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

/* Pantallas grandes */
@media (min-width: 1280px) {
  .container {
    max-width: 1140px;
  }
}

/* Monitores grandes */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background-color: #fff;
}

/* ESTADO SCROLL */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .logo img {
  height: 44px;
}

/* HEADER CONTENT */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 56px;
  transition: 0.3s ease;
}

/* MENU DESKTOP */
.desktop-menu ul {
  display: flex;
  gap: 36px;
}

.desktop-menu a {
  position: relative;
  font-weight: 500;
  color: #1f2937;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.desktop-menu a:hover {
  color: rgb(29, 73, 153);
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: rgb(29, 73, 153);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.desktop-menu a:hover::after {
  width: 100%;
}

.desktop-menu a.active {
  color: rgb(29, 73, 153);
  font-weight: 600;
}

.desktop-menu a.active::after {
  width: 100%;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1f2937;
  transition: 0.25s;
}

.menu-toggle:hover {
  color: rgb(29, 73, 153);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.overlay {
  z-index: 1000;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: white;
  z-index: 1100;
  padding: 20px 25px;
  transition: right 0.35s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}

.mobile-panel.open {
  right: 0;
}

/* Header del panel */
.panel-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.close-menu {
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #1f2937;
  transition: 0.2s;
}

.close-menu:hover {
  color: rgb(29, 73, 153);
  transform: rotate(90deg);
}

.mobile-panel ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-panel a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1f2937;
  transition: 0.2s;
}

.mobile-panel a:hover {
  color: rgb(29, 73, 153);
  transform: translateX(4px);
}

.mobile-panel a.active {
  color: rgb(29, 73, 153);
  font-weight: 600;
}

.mobile-panel.open {
  right: 0;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1040;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

.bgHero {
  background-color: #fafcff;
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 10rem 0 0 0;
  position: relative;
}

.hero .text {
  position: absolute;
  margin-top: 3rem;
  width: 50%;
  left: 0;
  color: #1f2937;
}

.hero .text .tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(29, 73, 153);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.hero .text h1 {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero .text h1 span {
  color: rgb(29, 73, 153);
}

.hero .text .btn-cta {
  display: inline-block;
  padding: 14px 26px;
  background: linear-gradient(135deg, rgb(29, 73, 153), rgb(45, 95, 190));
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(29, 73, 153, 0.25);
}

.hero .text .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(29, 73, 153, 0.35);
}

.hero .text .btn-cta:active {
  transform: translateY(-1px);
}

.hero .image {
  width: 55%;
}

.hero .image img {
  margin-top: 2rem;
  width: 100%;
  height: auto;
}

.services {
  padding: 100px 0;
}

/* ENCABEZADO */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1f2937;
}

.section-header p {
  color: #6b7280;
  font-size: 1rem;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* TARJETAS */
.service-card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  transition: 0.25s;
  border: 1px solid #eef1f5;
}

.service-card i {
  font-size: 32px;
  color: rgb(29, 73, 153);
  margin-bottom: 14px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #1f2937;
}

.service-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* CTA FINAL */
.services-cta {
  text-align: center;
  margin-top: 70px;
}

.services-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.services-cta p {
  color: #6b7280;
  margin-bottom: 18px;
}

/* BOTON MODERNO */
.btn-cta {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgb(29, 73, 153), rgb(45, 95, 190));
  color: white;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s;
  box-shadow: 0 8px 20px rgba(29, 73, 153, 0.25);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(29, 73, 153, 0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.specialists {
  padding: 100px 0;
  text-align: center;
}

.specialists .section-header {
  margin-bottom: 60px;
}

.specialists .section-header h2 {
  font-size: 2rem;
  color: rgb(29, 73, 153);
  margin-bottom: 10px;
}

.specialists .section-header p {
  color: #666;
  font-size: 1rem;
}

.specialists .specialists-grid {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.specialists .circle-card {
  width: 280px;
  height: 290px;
  padding: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.specialists .circle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.specialists .circle-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(29, 73, 153, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.specialists .circle-card .icon i {
  font-size: 30px;
  color: rgb(29, 73, 153);
}

.specialists .circle-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #222;
}

.specialists .circle-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  width: 90%;
}

.specialists .cta-specialists {
  margin-top: 50px;
}

.specialists .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  background: rgb(29, 73, 153);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.specialists .btn-cta i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.specialists .btn-cta:hover {
  background: rgb(22.4989010989, 56.6351648352, 118.7010989011);
  box-shadow: 0 10px 20px rgba(29, 73, 153, 0.25);
}

.specialists .btn-cta:hover i {
  transform: translateX(4px);
}

.brands {
  padding: 90px 0;
  text-align: center;
}

.brands .section-header {
  margin-bottom: 50px;
}

.brands .section-header h2 {
  color: rgb(29, 73, 153);
  font-size: 2rem;
  margin-bottom: 10px;
}

.brands .section-header p {
  color: #666;
  font-size: 1rem;
}

.brands .brands-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands .brands-track {
  display: flex;
  gap: 60px;
  width: max-content;
}

.brands .brand {
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brands .brand img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brands .brand:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.contact-section {
  padding: 110px 0;
}

.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-section {
  /* TEXTO */
}

.contact-section .contact-info h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
  font-weight: 700;
}

.contact-section .contact-info h2 span {
  color: rgb(29, 73, 153);
}

.contact-section .contact-info .lead {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-section .contact-info .lead strong {
  color: #111;
  font-weight: 600;
}

.contact-section .contact-info {
  /* STATS MODERNOS */
}

.contact-section .contact-info .stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-section .contact-info .stat-card {
  background: #fff;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  text-align: center;
  min-width: 160px;
  transition: 0.3s;
}

.contact-section .contact-info .stat-card:hover {
  transform: translateY(-6px);
}

.contact-section .contact-info .stat-card .number {
  font-size: 2.8rem;
  font-weight: bold;
  color: rgb(29, 73, 153);
  display: block;
}

.contact-section .contact-info .stat-card .label {
  font-size: 0.9rem;
  color: #666;
}

.contact-section {
  /* FORMULARIO MODERNO */
}

.contact-section .contact-form {
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.contact-section .contact-form h3 {
  margin-bottom: 20px;
  color: rgb(29, 73, 153);
  font-size: 1.3rem;
}

.contact-section .contact-form .form-group {
  margin-bottom: 15px;
}

.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
  background: #f9fbff;
  transition: 0.25s;
}

.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group textarea:focus {
  border-color: rgb(29, 73, 153);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 73, 153, 0.12);
}

.contact-section .contact-form .btn-primary {
  width: 100%;
  padding: 14px;
  background: rgb(29, 73, 153);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-section .contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(29, 73, 153, 0.3);
}

.contact-section {
  /* MAPA */
}

.contact-section .map-container {
  margin-top: 80px;
}

.contact-section .map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section .contact-info h2 {
    font-size: 2rem;
  }
}

.footer {
  background: #fafcff;
  color: #1f2937;
  padding-top: 60px;
  margin-top: 80px;
  border-top: 1px solid #eee;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer .footer-col h4 {
  color: #111;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer .footer-col p {
  margin: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.footer .footer-col p i {
  color: rgb(29, 73, 153);
  font-size: 1rem;
}

.footer {
  /* LOGO */
}

.footer .footer-brand img {
  width: 170px;
  margin-bottom: 15px;
}

.footer .footer-brand p {
  font-size: 0.9rem;
  color: #666;
  max-width: 260px;
  line-height: 1.5;
}

.footer {
  /* REDES */
}

.footer .socials {
  display: flex;
  gap: 12px;
}

.footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(29, 73, 153);
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.footer .socials a:hover {
  transform: translateY(-4px);
  background: rgb(29, 73, 153);
  color: white;
}

.footer .footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .socials {
    justify-content: center;
  }

  .footer .footer-brand p {
    margin: auto;
  }
}

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float i {
  font-size: 22px;
}

.whatsapp-float span {
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Versión móvil (solo icono) */
@media (max-width: 600px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    font-size: 24px;
  }
}

.hero-servicios {
  background: #fafcff;
  padding: 140px 0 80px;
  text-align: center;
}

.hero-servicios h1 {
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 15px;
}

.hero-servicios p {
  max-width: 600px;
  margin: auto;
  color: #666;
  font-size: 1.05rem;
}

.services {
  position: relative;
}

/* BLOQUE GENERAL */
.service-block {
  display: flex;
  position: relative;
  margin: 40px 0 0 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.service-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TIMELINE */
.service-timeline {
  width: 60px;
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline-line {
  width: 2px;
  background: #e5e5e5;
  position: absolute;
  top: 60px;
  bottom: -80px;
}

.timeline-dot {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* CONTENIDO */
.service-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
}

/* INVERTIR */
.service-block.reverse .service-content {
  flex-direction: row-reverse;
}

/* IMAGEN */
.service-image img {
  width: 350px;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* TEXTO */
.service-text h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.service-desc {
  margin-bottom: 15px;
  color: #555;
}

/* LISTA */
.service-list {
  display: grid;
  gap: 8px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
}

.service-item i {
  color: #2563eb;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
  }

  .service-block.reverse .service-content {
    flex-direction: column;
  }

  .service-image img {
    width: 100%;
  }

  .service-timeline {
    display: none;
  }
}

.hero-proyectos {
  background: #fafcff;
  padding: 140px 0 80px;
  text-align: center;
}

.hero-proyectos h1 {
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 15px;
}

.hero-proyectos p {
  max-width: 600px;
  margin: auto;
  color: #666;
  font-size: 1.05rem;
}

.projects {
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card .project-info {
  margin-bottom: 20px;
}

.project-card .project-info h2 {
  color: rgb(29, 73, 153);
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.project-card .project-info p {
  color: #666;
  max-width: 100%;
}

.project-card .project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.project-card .project-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.project-card .project-gallery img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.project-filters {
  text-align: center;
  margin: 40px auto;
}

.filter-btn {
  border: none;
  padding: 10px 18px;
  margin: 5px;
  background: #eee;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #0b5cff;
  color: white;
}

.project-meta {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.project-gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  aspect-ratio: 16 / 10;
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

.gallery-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* BOTONES */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .55);
  border: none;
  color: white;
  font-size: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: rgba(0, 0, 0, .75);
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.about {
  padding: 140px 0 80px;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about-intro h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-intro p {
  color: #555;
  line-height: 1.7;
}

.about-features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.feature-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: rgb(29, 73, 153);
}

.feature-card:hover {
  transform: translateY(-6px);
}

/* MISION VISION */
.mission-vision {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.mv-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-6px);
}

.mv-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: rgb(29, 73, 153);
}

.mv-card p {
  color: #555;
  line-height: 1.7;
}

.contact-details {
  margin-top: 25px;
}

.contact-block {
  margin-bottom: 18px;
}

.contact-block h4 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0a2540;
}

.contact-block p {
  margin: 4px 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.contact-block i {
  color: rgb(29, 73, 153);
  font-size: 18px;
}

.shop-header {
  margin-bottom: 25px;
  padding-top: 120px;
}

.shop-header h1 {
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-header p {
  color: #666;
}

/* FILTROS */
.shop-filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.shop-filters select,
.shop-filters input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* BUSCADOR */
.filter-search {
  position: relative;
}

.filter-search i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.filter-search input {
  padding-left: 35px;
  width: 100%;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* IMAGEN */
.product-image {
  background: #fff;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
}

/* BADGES */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.badge.offer {
  background: #ef4444;
}

.badge.new {
  background: #10b981;
}

/* INFO */
.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 15px;
  margin: 6px 0;
}

.product-brand {
  font-size: 12px;
  color: #888;
}

.product-price {
  font-weight: bold;
  font-size: 18px;
  color: rgb(29, 73, 153);
  margin-bottom: 12px;
}

/* BOTONES */
.product-actions {
  display: flex;
  gap: 8px;
}

.btn-view {
  flex: 1;
  padding: 10px;
  border: none;
  background: rgb(29, 73, 153);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.btn-view:hover {
  background: rgb(22.4989010989, 56.6351648352, 118.7010989011);
}

.btn-whatsapp {
  width: 42px;
  height: 42px;
  background: #25d366;
  color: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .shop-filters {
    grid-template-columns: 1fr;
  }
}

.product-detail {
  padding-top: 120px;
  margin-bottom: 60px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-gallery {
  display: flex;
  gap: 20px;
}

/* MINIATURAS */
.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail-list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumbnail-list img:hover {
  border-color: rgb(29, 73, 153);
}

.thumbnail-list img.active {
  border-color: rgb(29, 73, 153);
}

/* IMAGEN PRINCIPAL */
.main-image {
  position: relative;
  width: 420px;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  display: block;
}

/* LENTE */
.zoom-lens {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.8);
  width: 120px;
  height: 120px;
  display: none;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 200%;
}

/* MOBILE */
@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
  }

  .thumbnail-list {
    flex-direction: row;
  }

  .main-image {
    width: 100%;
  }
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge.new {
  background: #10b981;
}

.badge.offer {
  background: #ef4444;
}

/* INFO PRODUCTO */
.product-summary h1 {
  font-size: 24px;
  margin-bottom: 12px;
}

.product-summary .product-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-summary .product-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-summary .product-meta .active {
  color: #10b981;
  font-weight: 500;
}

.product-summary .price {
  font-size: 28px;
  font-weight: bold;
  color: rgb(29, 73, 153);
  margin-bottom: 15px;
}

.product-summary .price span {
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
}

.product-summary .description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-summary .specs {
  margin-bottom: 25px;
}

.product-summary .specs h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.product-summary .specs ul {
  list-style: none;
  padding: 0;
}

.product-summary .specs ul li {
  padding: 4px 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
}

/* BOTÓN */
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn-buy:hover {
  background: #1ebe5d;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
}

.image-modal img {
  display: block;
  margin: auto;
  max-width: 85%;
  max-height: 85%;
  margin-top: 5%;
}

.image-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 34px;
  cursor: pointer;
  transition: 0.2s;
}

.image-modal .close-modal:hover {
  transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery .main-image img {
    height: 250px;
  }
}

.main-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
}

.main-image img {
  transition: transform 0.4s ease;
}

.main-image:hover img {
  transform: scale(1.25);
}

.related-products {
  margin-top: 70px;
}

.related-products h2 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* BOTÓN WHATSAPP */
.btn-buy {
  flex: 1;
  padding: 12px;
  background: #25d366;
  color: white;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-buy:hover {
  background: #1ebe5d;
}

/* BOTÓN VOLVER */
.btn-back {
  flex: 1;
  padding: 12px;
  background: #f3f4f6;
  color: #333;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-back:hover {
  background: #e5e7eb;
}

/*# sourceMappingURL=style.css.map */

.btn-filtrar {
  flex: 1;
  padding: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  background: rgb(29, 73, 153);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.btn-filtrar:hover {
  background: rgb(22.4989010989, 56.6351648352, 118.7010989011);
}

/* MEDIA QUERYS */

@media (max-width: 768px) {
  .hero .text .tag {
    font-size: 1rem;
  }

  .hero .text h1 {
    font-size: 2rem;
  }

  .contact-section .contact-info h2,
  .contact-section .contact-info .lead {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .contact-section .contact-info .stats {
    justify-content: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .specialists .circle-card {
    width: 200px;
    height: 200px;
  }

  .specialists .circle-card p {
    display: none;
  }

  .services {
    padding-bottom: 0;
  }

  .brands,
  .services {
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-content,
  .service-block.reverse .service-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .service-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-desc {
    width: 80%;
    text-align: center;
  }

  .service-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-image img {
    max-width: 350px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 6rem;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 4rem;
  }

  .hero .image {
    width: 90%;
  }

  .hero .text {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .text h1 {
    text-align: center;
  }

  .project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section-header {
    padding-top: 4rem;
  }

  .container {
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .services-cta {
    padding-top: 0;
    padding-bottom: 4rem;
  }

  .specialists {
    padding: 0 0;
    padding-bottom: 4rem;
  }

  .contact-section .contact-info h2 br {
    display: none;
  }

  .contact-section {
    padding-bottom: 0;
  }

  .whatsapp-float {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
  }
}

.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  z-index: 100000;
}

.modal-content-img {
  animation: zoom .25s ease;
}

@keyframes zoom {
  from { transform: scale(.9); opacity: 0 }
  to { transform: scale(1); opacity: 1 }
}

.clientes .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.clientes .section-header p {
    width: 100%;
    max-width: 75%;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
}

/* Quita el borde y el hover del contenedor */
.cliente-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    aspect-ratio: 3 / 2;
}

/* Quita el grayscale, muestra a color directo */
.cliente-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .clientes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .clientes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .clientes .section-header p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}