*, *::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: #C05621;
  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 {
  transition: top 0.3s ease, all 0.3s ease;
  background-color: #1A1A28;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}
#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;
  transition: color 0.3s ease;
}
#navbar .nav-link:hover {
  color: #EA580C;
}
#navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}
#navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
}

#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-titulo {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 24px;
}
#hero .hero-titulo span {
  color: #EA580C;
}
#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 {
  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: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;
}

.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);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#servicios .servicio-card:hover {
  transform: translateY(-12px);
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
#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;
}
#servicios .servicio-icono i {
  line-height: 1;
  filter: drop-shadow(0 5px 15px rgba(234, 88, 12, 0.2));
}

#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-flip {
  height: 280px;
  perspective: 1000px;
  position: relative;
  margin-bottom: 30px;
}
#proyectos .proyecto-flip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #EA580C;
  border-radius: 0 0 12px 12px;
  transition: width 0.4s ease;
}
#proyectos .proyecto-flip:hover::after {
  width: 100%;
}
#proyectos .proyecto-flip:hover .proyecto-flip-inner {
  transform: rotateY(180deg);
}
#proyectos .proyecto-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
#proyectos .proyecto-frente, #proyectos .proyecto-dorso {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  overflow: hidden;
}
#proyectos .proyecto-frente {
  background-color: #252538;
  display: flex;
  flex-direction: column;
}
#proyectos .proyecto-frente img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
#proyectos .proyecto-frente .proyecto-info {
  flex-grow: 1;
  padding: 10px;
}
#proyectos .proyecto-frente .proyecto-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}
#proyectos .proyecto-dorso {
  background-color: #C05621;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  gap: 12px;
}
#proyectos .proyecto-dorso h3 {
  color: #FFFFFF;
  margin: 0;
}
#proyectos .proyecto-dorso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
#proyectos .btn-proyecto {
  border: 2px solid #FFFFFF;
  padding: 8px 20px;
  border-radius: 6px;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
}
#proyectos .btn-proyecto:hover {
  background-color: #FFFFFF;
  color: #EA580C;
}

#proyectosMobile {
  padding: 20px 0;
}
#proyectosMobile .carousel-item {
  padding: 0 10px;
}
#proyectosMobile .carousel-control-prev-icon,
#proyectosMobile .carousel-control-next-icon {
  background-color: #EA580C;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%;
  filter: invert(1) brightness(100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
#proyectosMobile .carousel-control-prev, #proyectosMobile .carousel-control-next {
  width: 50px;
  opacity: 1;
}
#proyectosMobile .carousel-indicators {
  bottom: -30px;
}
#proyectosMobile .carousel-indicators button {
  background-color: #EA580C;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
}
#proyectosMobile .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.2);
}
#proyectosMobile .proyecto-card-mobile {
  background-color: #252538;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(234, 88, 12, 0.2);
}
#proyectosMobile .proyecto-card-mobile img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes pulso {
  0%, 100% {
    border-color: rgba(234, 88, 12, 0.3);
  }
  50% {
    border-color: #ea580c;
  }
}
@keyframes rebote {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes brillo {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
#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 .promo-card {
  background-color: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 12px;
  padding: 20px 32px;
  max-width: 650px;
  margin: 40px auto 0;
  animation: pulso 2s ease-in-out infinite;
}
#cta .promo-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #EA580C;
  letter-spacing: 0.03em;
}
#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-wrapper::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  border: 2px solid #EA580C;
  border-radius: 12px;
  z-index: 0;
  transition: all 0.3s ease;
}
#contacto .sobremi-img-wrapper:hover::after {
  top: 4px;
  left: 4px;
}
#contacto .sobremi-img {
  width: 100%;
  max-width: 150px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
#contacto .sobremi-img:hover {
  transform: scale(1.02);
}
#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::-moz-placeholder, #contacto .form-select::-moz-placeholder {
  color: #B8B8CC;
}
#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);
  }
}
#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;
}

@media (max-width: 768px) {
  #footer .location-box .location-title {
    font-size: 1.5rem;
  }
}
.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 */