*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #12121C;
  color: #FFFFFF;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #FFFFFF;
}

p {
  color: #B8B8CC;
}

a {
  color: #EA580C;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #5B8AF5;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

.separador {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  background-color: #12121C;
}
.separador span {
  color: #EA580C;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.separador::before, .separador::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #EA580C);
}
.separador::after {
  background: linear-gradient(90deg, #EA580C, transparent);
}

#promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
  background-color: rgba(234, 88, 12, 0.08);
  padding: 8px 0;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#promo-bar p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}
#promo-bar.oculta {
  transform: translateY(-100%);
  opacity: 0;
}

#navbar {
  z-index: 1055;
  transition: top 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #1A1A28;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}
#navbar.scrolled {
  background-color: rgba(26, 26, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
#navbar .navbar-brand {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
#navbar .navbar-brand span {
  color: #EA580C;
}
#navbar .navbar-brand:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(234, 88, 12, 0.6));
}
#navbar .nav-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease;
}
#navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 1.5px;
  background-color: #EA580C;
  transition: width 0.3s ease;
}
#navbar .nav-link i {
  color: #EA580C;
  margin-right: 6px;
  font-size: 0.9em;
  transition: transform 0.3s ease, color 0.3s ease;
}
#navbar .nav-link:hover {
  color: #EA580C;
}
#navbar .nav-link:hover i {
  transform: translateX(2px) scale(1.1);
}
#navbar .nav-link:hover::after {
  width: calc(100% - 32px);
}
#navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
}

.hamburger-lines {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}
.hamburger-lines span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.hamburger-lines span:nth-child(1) {
  top: 0;
}
.hamburger-lines span:nth-child(2) {
  top: 7px;
}
.hamburger-lines span:nth-child(3) {
  top: 14px;
}

.navbar-toggler.active .hamburger-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.navbar-toggler.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active .hamburger-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.typing-cursor {
  animation: blink 0.7s step-end infinite;
  color: #EA580C;
  font-weight: 700;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background-color: #1A1A28;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex !important;
    flex-direction: column;
    padding: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .navbar-collapse.show {
    right: 0;
  }
  .navbar-collapse.collapsing {
    display: flex !important;
    height: auto !important;
    transition: none !important;
  }
  .navbar-nav {
    flex-direction: column;
    padding: 0 16px 24px;
    width: 100%;
  }
  .nav-item {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .navbar-collapse.show .nav-item {
    opacity: 1;
    transform: translateX(0);
  }
  .navbar-collapse.show .nav-item:nth-child(1) {
    transition-delay: 0.07s;
  }
  .navbar-collapse.show .nav-item:nth-child(2) {
    transition-delay: 0.14s;
  }
  .navbar-collapse.show .nav-item:nth-child(3) {
    transition-delay: 0.21s;
  }
  .navbar-collapse.show .nav-item:nth-child(4) {
    transition-delay: 0.28s;
  }
  .nav-link {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: background-color 0.25s ease, color 0.25s ease;
  }
  .nav-link i {
    font-size: 1.1em;
    margin-right: 10px;
  }
  .nav-link:hover {
    background-color: rgba(234, 88, 12, 0.1);
    color: #EA580C;
  }
  .nav-link::after {
    display: none;
  }
}
.menu-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .menu-header {
    display: flex;
  }
}
.menu-header .menu-logo {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
}
.menu-header .menu-logo span {
  color: #EA580C;
}
.menu-header .menu-close {
  background: none;
  border: none;
  color: #B8B8CC;
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.menu-header .menu-close:hover {
  background-color: rgba(234, 88, 12, 0.12);
  color: #EA580C;
}

.navbar-overlay {
  position: fixed;
  inset: 0;
  z-index: 1049;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.navbar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#hero {
  position: relative;
  overflow: hidden;
  background-color: #12121C;
  padding-bottom: 0;
}
#hero #matrix {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}
#hero .container {
  position: relative;
  z-index: 1;
}
#hero .hero-saludo {
  font-size: 18px;
  color: #EA580C;
  font-weight: 600;
  margin-bottom: 16px;
}
#hero .hero-wave {
  display: inline-block;
  animation: wave 2.5s ease-in-out infinite;
  transform-origin: 70% 70%;
}
#hero .hero-titulo {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 24px;
}
#hero .hero-titulo span {
  background: linear-gradient(90deg, #EA580C, #fbbf24, #EA580C);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}
#hero .hero-titulo-light {
  font-weight: 300;
  color: #B8B8CC;
  letter-spacing: 0.02em;
}
#hero .hero-descripcion {
  font-size: 18px;
  color: #B8B8CC;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
#hero .hero-botones {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
#hero .btn-primary-custom {
  background-color: #EA580C;
  color: #FFFFFF;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
#hero .btn-primary-custom:hover {
  background-color: #EA580C;
  color: #FFFFFF;
}
#hero .btn-outline-custom {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #EA580C;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
#hero .btn-outline-custom:hover {
  background-color: #EA580C;
  color: #FFFFFF;
}
#hero .btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
#hero .btn-whatsapp:hover {
  background-color: #128C7E;
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}
#hero .hero-code {
  position: relative;
  isolation: isolate;
  background-color: #252538;
  border-radius: 12px;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#hero .hero-code::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(60deg, #EA580C, #7C3AED, #2563EB, #10B981, #EA580C);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 5s ease infinite;
  pointer-events: none;
}
#hero .hero-code:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.15);
}
#hero .hero-code .hero-code-header {
  background-color: #1A1A28;
  padding: 10px 16px;
  display: flex;
  gap: 6px;
}
#hero .hero-code .hero-code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
#hero .hero-code .hero-code-dot.dot-red {
  background-color: #FF5F57;
}
#hero .hero-code .hero-code-dot.dot-yellow {
  background-color: #FFBD2E;
}
#hero .hero-code .hero-code-dot.dot-green {
  background-color: #28CA41;
}
#hero .hero-code .hero-code-body {
  padding: 24px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 2;
  color: #B8B8CC;
  margin: 0;
}
#hero .hero-code .code-keyword {
  color: #7C3AED;
}
#hero .hero-code .code-var {
  color: #EA580C;
}
#hero .hero-code .code-string {
  color: #10B981;
}
#hero .hero-code .code-array {
  color: #2563EB;
}
#hero .hero-code .code-bool {
  color: #EA580C;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-30px) translateX(10px) scale(1.3);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.2;
  }
}
@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60%, 100% {
    transform: rotate(0deg);
  }
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.3);
  box-shadow: 0 0 6px rgba(234, 88, 12, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: particleFloat ease-in-out infinite alternate;
}

.titulo-wrapper {
  position: relative;
  padding: 10px 0;
}

.header-decor {
  color: rgba(184, 184, 204, 0.4);
}
.header-decor i {
  font-size: 1.5rem;
  color: #EA580C;
  opacity: 0.7;
}
.header-decor .linea-finita {
  width: 100px;
  height: 1px;
  background-color: rgba(184, 184, 204, 0.2);
}

.section-titulo {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.section-titulo span {
  color: #EA580C;
  font-weight: 300;
  display: block;
}

.section-subtitulo {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #B8B8CC;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}
.section-subtitulo strong {
  color: #FFFFFF;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-titulo {
    font-size: 32px;
  }
}
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #EA580C, #f97316);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

#servicios {
  background-color: #12121C;
  padding: 100px 0;
}
#servicios .header-decor {
  color: rgba(184, 184, 204, 0.4);
}
#servicios .header-decor i {
  font-size: 1.5rem;
  color: #EA580C;
  opacity: 0.7;
}
#servicios .header-decor .linea-finita {
  width: 100px;
  height: 1px;
  background-color: rgba(184, 184, 204, 0.2);
}
#servicios .servicio-card {
  background-color: #252538;
  border-radius: 16px;
  padding: 45px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(184, 184, 204, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
#servicios .servicio-card.visible {
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.1);
  animation: entradaRebote 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
#servicios .servicio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 88, 12, 0.7);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
}
#servicios .servicio-card:hover .servicio-icono {
  transform: scale(1.1) rotate(5deg);
}
#servicios .servicio-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}
#servicios .servicio-card p {
  font-size: 14px;
  color: #B8B8CC;
  line-height: 1.6;
}
#servicios .servicio-icono {
  font-size: 45px;
  color: #EA580C;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
  position: relative;
  display: inline-block;
}
#servicios .servicio-icono::before, #servicios .servicio-icono::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
#servicios .servicio-icono::before {
  background: rgba(234, 88, 12, 0.15);
}
#servicios .servicio-icono::after {
  background: rgba(234, 88, 12, 0.08);
  animation-delay: 0.6s;
}
#servicios .servicio-icono i {
  line-height: 1;
  filter: drop-shadow(0 5px 15px rgba(234, 88, 12, 0.2));
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@keyframes entradaRebote {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#proceso {
  background-color: #1A1A28;
  padding: 100px 0;
}
#proceso .proceso-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
#proceso .proceso-steps::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, #EA580C, transparent);
}
@media (min-width: 768px) {
  #proceso .proceso-steps::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
#proceso .proceso-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}
@media (min-width: 768px) {
  #proceso .proceso-step {
    width: 50%;
    padding: 32px 48px;
  }
  #proceso .proceso-step:nth-child(even) {
    align-self: flex-end;
    flex-direction: row-reverse;
    text-align: right;
  }
}
#proceso .proceso-numero {
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #252538;
  border: 2px solid #EA580C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #EA580C;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
#proceso .proceso-numero i {
  font-size: 1.5rem;
}
#proceso .proceso-contenido {
  padding-top: 12px;
}
#proceso .proceso-contenido h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
#proceso .proceso-contenido p {
  font-size: 14px;
  color: #B8B8CC;
  line-height: 1.7;
  margin: 0;
}
#proceso .proceso-step:hover .proceso-numero {
  background-color: #EA580C;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
}

#proyectos {
  background-color: #12121C;
  padding: 60px 0;
}
#proyectos .section-titulo, #proyectos .section-subtitulo {
  text-align: center;
}
#proyectos .proyecto-card {
  background-color: #252538;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(234, 88, 12, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}
#proyectos .proyecto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border-color: rgba(234, 88, 12, 0.4);
}
#proyectos .proyecto-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
#proyectos .proyecto-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}
#proyectos .proyecto-card:hover .proyecto-card-media img {
  transform: scale(1.06);
}
#proyectos .proyecto-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
#proyectos .proyecto-card-body h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin: 0;
}
#proyectos .proyecto-card-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0 0 6px;
  flex: 1;
}
#proyectos .proyecto-card-body.text-center {
  align-items: center;
}
#proyectos .btn-proyecto {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #EA580C;
  padding: 8px 18px;
  border-radius: 6px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
#proyectos .proyecto-card-body.text-center .btn-proyecto {
  align-self: center;
}
#proyectos .btn-proyecto:hover {
  background-color: #EA580C;
  color: #FFFFFF;
}
#proyectos .btn-proyecto i {
  font-size: 13px;
  transition: transform 0.25s ease;
}
#proyectos .btn-proyecto:hover i {
  transform: translate(2px, -2px);
}

/* Tarjetas destacadas */
#proyectos .proyecto-destacado {
  width: 100%;
  max-width: 900px;
}
#proyectos .proyecto-destacado .proyecto-card-media {
  height: 320px;
}
@media (min-width: 768px) {
  #proyectos .proyecto-destacado {
    flex-direction: row;
  }
  #proyectos .proyecto-destacado .proyecto-card-media {
    width: 55%;
    height: auto;
  }
  #proyectos .proyecto-destacado .proyecto-card-body {
    width: 45%;
    justify-content: center;
  }
}

.badge-nuevo {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #EA580C, #C05621);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
  font-family: "Inter", sans-serif;
}

.proyectos-grid-mobile {
  padding: 10px 4px 0;
}
.proyecto-mini {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #252538;
  border: 1px solid rgba(234, 88, 12, 0.12);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.proyecto-mini.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.proyecto-mini:active {
  transform: scale(0.96);
  border-color: rgba(234, 88, 12, 0.6);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .proyecto-mini:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 88, 12, 0.5);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.2);
    animation: glow-pulse 1.8s ease-in-out infinite;
  }
  .proyecto-mini:hover .proyecto-mini-media img {
    transform: scale(1.06);
  }
  .proyecto-mini:hover .proyecto-mini-external {
    opacity: 1;
    transform: scale(1);
  }
}
.proyecto-mini-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.35);
  transform: scale(0);
  animation: ripple-expand 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 3;
  will-change: transform, opacity;
}
.proyecto-mini-media {
  position: relative;
  display: block;
  overflow: hidden;
}
.proyecto-mini-media img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.proyecto-mini:active .proyecto-mini-media img {
  transform: scale(1.08);
}
.proyecto-mini-external {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(18, 18, 28, 0.75);
  color: #EA580C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.proyecto-mini:active .proyecto-mini-external {
  opacity: 1;
  transform: scale(1);
}
.proyecto-mini-title {
  display: block;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  line-height: 1.3;
}
.proyecto-mini-badge {
  font-size: 10px;
  padding: 3px 9px;
  top: 8px;
  left: 8px;
}

@keyframes rebote {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes brillo {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.2);
  }
  50% {
    box-shadow: 0 8px 32px rgba(234, 88, 12, 0.4), 0 0 0 2px rgba(234, 88, 12, 0.15);
  }
}
@keyframes ripple-expand {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
#cta {
  background-color: #1A1A28;
  padding: 60px 0 30px;
  text-align: center;
}
#cta .cta-saludo {
  font-size: 24px;
  color: #EA580C;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #EA580C 0%, #ff9a5c 50%, #EA580C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brillo 3s linear infinite;
}
#cta .cta-titulo {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
#cta .cta-titulo span {
  color: #EA580C;
}
@media (max-width: 768px) {
  #cta .cta-titulo {
    font-size: 32px;
  }
}
#cta .cta-subtitulo {
  font-size: 18px;
  color: #B8B8CC;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
#cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  animation: rebote 2s ease-in-out infinite;
}
#cta .cta-btn i {
  font-size: 1.4rem;
}
#cta .cta-btn:hover {
  background-color: #128C7E;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

#contacto {
  background-color: #1A1A28;
  padding: 60px 0;
}
#contacto .sobremi-saludo {
  font-size: 14px;
  color: #EA580C;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
#contacto .sobremi-titulo {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
#contacto .sobremi-titulo span {
  color: #EA580C;
}
#contacto .sobremi-texto {
  font-size: 14px;
  color: #B8B8CC;
  line-height: 1.8;
  margin-bottom: 12px;
}
#contacto .sobremi-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
#contacto .sobremi-stack span {
  background-color: #252538;
  color: #EA580C;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #EA580C;
  transition: all 0.3s ease;
}
#contacto .sobremi-stack span:hover {
  background-color: #EA580C;
  color: #FFFFFF;
}
#contacto .sobremi-card {
  background-color: #252538;
  border-radius: 12px;
  padding: 24px;
  border-left: 3px solid #EA580C;
  transition: box-shadow 0.3s ease;
}
#contacto .sobremi-card:hover {
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.15);
}
#contacto .sobremi-img-wrapper {
  position: relative;
  display: inline-block;
}
#contacto .sobremi-img {
  width: 100%;
  max-width: 150px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  border: 2px solid #EA580C;
  transition: transform 0.3s ease;
  animation: latido 2.5s ease-in-out infinite;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: latido 2.5s ease-in-out infinite, colorear 4s ease-in-out infinite alternate;
}
#contacto .sobremi-img:hover {
  transform: scale(1.02);
  filter: grayscale(0%);
}
#contacto .sobremi-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
#contacto .sobremi-cert i {
  color: #EA580C;
  font-size: 1.2rem;
}
#contacto .sobremi-cert span {
  font-size: 14px;
  color: #B8B8CC;
  font-weight: 600;
}
#contacto .contacto-card {
  background-color: #252538;
  border-radius: 12px;
  padding: 24px;
  border-left: 3px solid #EA580C;
  transition: box-shadow 0.3s ease;
  height: 100%;
}
#contacto .contacto-card:hover {
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.15);
}
#contacto .contacto-saludo {
  font-size: 14px;
  color: #EA580C;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-align: center;
}
#contacto .contacto-titulo {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-align: center;
}
#contacto .contacto-titulo span {
  color: #EA580C;
}
#contacto .contacto-texto {
  font-size: 14px;
  color: #B8B8CC;
  margin-bottom: 16px;
  text-align: center;
}
#contacto .form-label {
  color: #B8B8CC;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
#contacto .form-control,
#contacto .form-select {
  background-color: #1A1A28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
#contacto .form-control:focus,
#contacto .form-select:focus {
  background-color: #1A1A28;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
  color: #FFFFFF;
}
#contacto .form-control::placeholder,
#contacto .form-select::placeholder {
  color: #B8B8CC;
}
#contacto textarea.form-control {
  min-height: 70px;
  height: 70px;
  resize: vertical;
}
#contacto .form-select option {
  background-color: #1A1A28;
  color: #FFFFFF;
}
#contacto .btn-enviar {
  background-color: #EA580C;
  color: #FFFFFF;
  border: none;
  padding: 10px 40px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  width: auto;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 32px auto 0;
}
#contacto .btn-enviar:hover {
  background-color: #C05621;
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.3);
}

.sobremi-disponible {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}

.sobremi-ilustracion {
  width: 100px;
  opacity: 0.85;
}

.footer-disponible {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #B8B8CC;
}

.footer-disponible-punto {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #25D366;
  display: inline-block;
  animation: pulso-verde 2s ease-in-out infinite;
}

@keyframes pulso-verde {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }
}
@keyframes latido {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.6);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(234, 88, 12, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
  }
}
@keyframes colorear {
  0% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}
#seccion-resenas {
  background: #12121C;
  padding: 80px 0 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gr-header {
  text-align: center;
  margin-bottom: 52px;
}

.gr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #B8B8CC;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gr-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.gr-header h2 span {
  color: #EA580C;
}
.gr-header p {
  color: #B8B8CC;
  font-size: 0.95rem;
  margin: 0 0 28px;
}

.gr-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px 24px;
  margin-top: 8px;
}

.gr-rating-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gr-rating-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.gr-stars {
  display: flex;
  gap: 3px;
}

.gr-star {
  color: #f4b400;
  line-height: 1;
}

.gr-total {
  font-size: 12px;
  color: #B8B8CC;
  margin: 0;
  letter-spacing: 0.02em;
}

.gr-track-wrapper {
  overflow: hidden;
  position: relative;
}
.gr-track-wrapper::before, .gr-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.gr-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #12121C, transparent);
}
.gr-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #12121C, transparent);
}

.gr-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gr-card {
  flex: 0 0 310px;
  background: #252538;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.gr-card:hover {
  background: #2d2d46;
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.gr-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.gr-avatar-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.gr-reviewer-name {
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.gr-review-date {
  font-size: 11px;
  color: #B8B8CC;
  margin: 0;
}

.gr-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.gr-review-text {
  font-size: 13.5px;
  color: #8888a0;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  display: box;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  box-orient: vertical;
  -webkit-box-orient: vertical;
}

.gr-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.gr-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 17px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gr-btn:hover {
  border-color: #EA580C;
  color: #EA580C;
  background: rgba(234, 88, 12, 0.06);
}
.gr-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.gr-dots {
  display: flex;
  gap: 8px;
}

.gr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.gr-dot.active {
  background: #EA580C;
  transform: scale(1.4);
}

.gr-cta {
  text-align: center;
  margin-top: 44px;
}

.gr-btn-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #B8B8CC;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.gr-btn-review:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 576px) {
  .gr-card {
    flex: 0 0 272px;
  }
  .gr-rating-num {
    font-size: 2rem;
  }
  .gr-summary {
    padding: 12px 16px;
    gap: 12px;
  }
}
#footer {
  position: relative;
  overflow: hidden;
  background-color: #1A1A28;
  padding: 40px 0 24px;
  border-top: 1px solid rgba(234, 88, 12, 0.2);
}
#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/img/baradero.webp");
  background-size: cover;
  background-position: center 80%;
  opacity: 0.12;
  z-index: 0;
}
#footer .container {
  position: relative;
  z-index: 1;
}
#footer .footer-identidad {
  margin-bottom: 20px;
}
#footer .footer-identidad .footer-line {
  height: 1px;
  flex-grow: 1;
  max-width: 150px;
  background: linear-gradient(to right, transparent, rgba(234, 88, 12, 0.4));
}
#footer .footer-identidad .footer-line:last-child {
  background: linear-gradient(to left, transparent, rgba(234, 88, 12, 0.4));
}
#footer .footer-identidad .location-box .location-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 5px;
  color: #EA580C;
  font-weight: 700;
  margin-bottom: -2px;
  text-transform: uppercase;
}
#footer .footer-identidad .location-box .location-title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1;
}
#footer .footer-identidad .location-box .location-title span {
  font-weight: 700;
}
#footer .footer-identidad .location-box .location-province {
  display: block;
  font-size: 12px;
  letter-spacing: 6px;
  color: rgba(234, 88, 12, 0.6);
  font-weight: 400;
  margin-top: 5px;
  text-transform: uppercase;
}
#footer .footer-copy {
  font-size: 14px;
  color: #B8B8CC;
  margin: 0;
  font-weight: 300;
}

#footer .footer-bottom {
  padding-top: 20px;
}
#footer .footer-bottom-line {
  height: 1px;
  max-width: 320px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, transparent, rgba(234, 88, 12, 0.35), transparent);
}
#footer .footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
#footer .footer-copy-brand {
  letter-spacing: 0.5px;
}
#footer .footer-copy-brand .footer-logo-mark {
  font-weight: 600;
  color: #FFFFFF;
}
#footer .footer-copy-brand .footer-logo-accent {
  color: #EA580C;
}
#footer .footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
#footer .footer-link {
  color: #B8B8CC;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
  position: relative;
}
#footer .footer-link i {
  color: #EA580C;
  font-size: 14px;
}
#footer .footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #EA580C;
  transition: width 0.25s ease;
}
#footer .footer-link:hover {
  color: #FFFFFF;
}
#footer .footer-link:hover::after {
  width: 100%;
}
#footer .footer-dot {
  color: rgba(234, 88, 12, 0.5);
}

@media (max-width: 768px) {
  #footer .location-box .location-title {
    font-size: 1.5rem;
  }
  #footer .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }
  #footer .footer-dot {
    display: none;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: #25D366;
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}
.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/*# sourceMappingURL=main.css.map */
