:root {
  --primary-color: #e32027;
  --bg-color: #f4f4f4;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-dark: #191f24;
  --text-light: #7f8c8d;
  --text-footer-autor: #6a7d91;
  --border-color: #ecf0f1;
  --white: #f9f9f9;
  --gray: #f1f1f1;
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

/* === TITLE OF SECTION === */
.intro {
  margin-bottom: 36px;
  text-align: center;
}
.intro p:nth-child(1) {
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.intro p:last-child {
  max-width: 500px;
  font-size: 1.2rem;
}
.intro h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* === SECTIONS === */
section {
  padding: 5.6rem 0;
}

/* === NAVBAR WRAPPER === */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  z-index: 1000;
  padding: 0 1.2rem;
}

.header-section.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  backdrop-filter: blur(20px);
}

/* === NAVBAR CONTAINER === */
.navbar {
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  transition: var(--transition);
}

.wrapper-section.scrolled .navbar {
  padding: 0.8rem 0;
}

/* === BRAND/LOGO === */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  transition: var(--transition);
  border: 3px solid transparent;
}
.text-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: 1rem;
  letter-spacing: -0.5px;
}

/* === NAVIGATION MENU === */
.navbar-nav {
  display: flex;
  list-style: none;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 0.4rem;
}

.nav-link {
  position: relative;
  display: block;
  padding: 0.8rem 1.2rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: var(--transition);
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: var(--gray);
  transform: translateY(-2px);
}

/* === ACTIVE LINK STYLES === */
.nav-link.active {
  color: var(--primary-color);
}

/* === DYNAMIC INDICATOR === */
.nav-indicator,
.nav-link:hover .nav-indicator {
  position: absolute;
  bottom: -5px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}
.nav-indicator.show {
  opacity: 1;
  transform: translateY(0);
}
/* === MOBILE MENU TOGGLE === */
.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-toggle:hover {
  background-color: rgba(52, 152, 219, 0.1);
}
.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
  transform-origin: center;
}
.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-nav {
    position: absolute;
    top: 83%;
    left: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.2rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .navbar-nav.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-item {
    width: 100%;
    margin: 0.33rem 0;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    font-size: 1rem;
  }
  .nav-indicator {
    display: none;
  }
  .text-logo {
    font-size: 1.3rem;
    margin-left: 0.9rem;
  }
  .navbar-brand img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .wrapper-section {
    padding: 0 1rem;
  }

  .text-logo {
    font-size: 1.1rem;
  }

  .navbar-brand img {
    width: 45px;
    height: 45px;
  }
}

/* === SECTIONS === */
.wrapper-section {
  padding: 100px 1.2rem 3.8rem;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* === HERO === */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}
.hero-home {
  background: linear-gradient(
      135deg,
      rgba(17, 13, 13, 0.812) 0%,
      rgba(9, 8, 8, 0.695) 50%
    ),
    url("../assets/images/backgrounds/seguridad-ares-website.webp");
}
.hero-ubicacion {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.921) 0%,
      rgba(11, 11, 11, 0.068) 100%
    ),
    url("../assets/images/backgrounds/oficina-sociedad-ares.webp");
}
/* === CONTAINER PRINCIPAL === */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100dvh;
}

/* === CONTENIDO DEL HERO === */
.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  margin-left: 0;
  text-align: left;
  padding-left: 2rem;
}

/* === ESTILOS DE TEXTO === */
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 0.8s ease 0.3s forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #ecf0f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease 0.6s forwards;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease 0.9s forwards;
}

/* === BOTÓN CTA === */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #c0392b 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  animation: slideInRight 0.8s ease 1.2s forwards,
    scaleIn 0.3s ease 1.2s forwards;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #e74c3c 0%, var(--accent-color) 100%);
}

.hero-cta:active {
  transform: translateY(-1px) scale(1.02);
}

/* Icono del botón */
.cta-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition);
}

.hero-cta:hover .cta-icon {
  transform: translateX(5px);
}

@keyframes scrollBounce {
  0%,
  20% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(15px);
  }
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/* === ANIMACIONES === */
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
  }

  .hero-badge {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .hero-badge {
    padding: 15px 20px;
  }

  .badge-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* === MEJORAS DE RENDIMIENTO === */
.hero {
  will-change: transform;
}

.hero-cta {
  will-change: transform;
}

/* === ACCESIBILIDAD === */
@media (prefers-reduced-motion: reduce) {
  .hero-subtitle,
  .hero-title,
  .hero-description,
  .hero-cta,
  .hero-badge,
  .scroll-indicator {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .particle {
    animation: none;
  }

  .scroll-arrow::before {
    animation: none;
  }
}

@media (prefers-color-scheme: dark) {
  .hero {
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.9) 0%,
        rgba(52, 152, 219, 0.7) 100%
      ),
      url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  }
}

/* === SCROLL ANIMATIONS === */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.animate__animated {
  opacity: 1;
  transform: translateY(0);
  animation-delay: 1200ms;
}

/* === LOADING ANIMATION === */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  animation: loadingBar 2s ease-in-out forwards;
}

@keyframes loadingBar {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(0.7);
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

/* SERVICES */
.service {
  padding: 32px;
  height: 330px;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.service h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 16px;
}
.service-box_wp_img {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.service-box_wp_img img {
  width: 65px;
  height: 65px;
}

@media (min-width: 768px) {
  .service {
    height: 410px;
  }
}
@media (min-width: 992px) {
  .service {
    height: 550px;
  }
}

/* CLIENTES */
#clientes {
  padding: 60px 0;
  background: var(--bg-color);
}

#clientes .intro {
  text-align: center;
  margin-bottom: 40px;
}
#clientes h3 {
  font-size: 1.4rem;
}
#clientes h4 {
  font-size: 1.08rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.carousel-inner {
  padding: 1em;
}
.card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: var(--primary-color);
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
  .carousel-inner {
    display: flex;
  }
}
.card .img-wrapper {
  max-width: 100%;
  height: 13em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card img {
  max-height: 100%;
}
@media (max-width: 767px) {
  .card .img-wrapper {
    height: 17em;
  }
}

/* MILESTONE */
#milestone {
  background: linear-gradient(rgba(180, 21, 25, 0.85), rgba(180, 21, 25, 0.65)),
    url(../assets/images/backgrounds/equipo-trabajo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
}

#milestone h3 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  transition: transform 0.3s ease;
}

#milestone .col-lg-2:hover h3 {
  transform: scale(1.1);
}

#milestone p {
  color: var(--white);
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  #milestone {
    padding: 6rem 0;
  }
}

/* PILLARS */
.pillars {
  background-color: white;
}
.pillars h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e74c3c;
}
.pillars p {
  font-size: 1.1rem;
}
.info-box {
  align-items: center;
  display: flex;
}
.info-box .info-box_wp_img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  min-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.info-box .info-box_wp_img img {
  width: 50px;
  height: 50px;
}
.pillars-img {
  width: 300px;
  height: auto;
}
@media (min-width: 768px) {
  .pillars-img {
    width: 450px;
  }
}
@media (min-width: 1024px) {
  .info-box .info-box_wp_img {
    min-width: 120px;
    min-height: 120px;
  }
  .info-box .info-box_wp_img img {
    width: 70px;
    height: 70px;
  }
  .pillars-img {
    width: 100%;
    max-height: 550px;
  }
}

#cursos {
  margin-top: 80px;
}
.os10 {
  position: relative;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.os10 .content {
  padding: 32px;
}

.os10 .img-title {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  padding: 2px 12px;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
}
.os10 img {
  height: 320px !important ;
  width: 100%;
  object-fit: fill;
}

.os10 h5 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.os10 small {
  text-transform: uppercase;
  color: var(--primary-color);
  text-decoration: underline;
}

/* FOOTER */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}
footer img {
  width: 80px;
  border-radius: 8px;
}
footer .footer-top {
  padding-top: 60px;
  padding-bottom: 20px;
}
footer p,
footer a {
  color: var(--white);
  margin-bottom: 0.5rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

footer .footer-copyright {
  color: var(--white);
  font-size: 0.9rem;
}

footer .footer-copyright a {
  font-weight: 500;
  color: var(--text-footer-autor);
}

footer .footer-copyright a:hover {
  color: var(--primary-color);
}

/* Íconos sociales y de contacto */
footer .social-icons a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

footer .social-icons svg {
  flex-shrink: 0;
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

/* Línea inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  padding-top: 15px;
}

/* Botón de políticas */
.btn-footer {
  border: none;
  color: white;
  background: transparent;
  transition: color 0.3s ease;
}

.btn-footer:hover {
  color: var(--primary-color);
}
/* Animación base */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* Cuando se hace visible */
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.loader {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  z-index: 99999;
  position: fixed;
  left: 0;
  right: 0;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float i {
  margin-top: 16px;
}

.whatsapp-float:hover {
  background-color: #20b858;
  transform: scale(1.1);
}

/* * * * * LOCATION & CONTACT * * * */
.container_contact {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs'  preserveAspectRatio='none' viewBox='0 0 1440 760'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1001%26quot%3b)' fill='none'%3e%3crect width='1440' height='760' x='0' y='0' fill='rgba(241%2c 243%2c 241%2c 1)'%3e%3c/rect%3e%3cpath d='M1440 0L1438.7 0L1440 136.51z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M1438.7 0L1440 136.51L1440 350.17999999999995L781.0300000000001 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M781.0300000000001 0L1440 350.17999999999995L1440 564.8799999999999L750.2600000000001 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M750.2600000000001 0L1440 564.8799999999999L1440 596.5999999999999L508.2400000000001 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 760L16.51 760L0 435.11z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 435.11L16.51 760L759.63 760L0 235.52z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 235.51999999999998L759.63 760L1159.3600000000001 760L0 179.30999999999997z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 179.30999999999995L1159.3600000000001 760L1347.6200000000001 760L0 80.23999999999995z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1001'%3e%3crect width='1440' height='760' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper_contacto {
  width: clamp(300px, 90%, 1440px);
}
.title_contacto {
  font-weight: 600;
  text-transform: uppercase;
}
.input {
  border: 2px solid var(--text-dark);
  background-color: transparent;
}
.input:focus,
.input:visited,
.input:active {
  outline: none;
  border-color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}
.errorInput {
  border: 2px solid var(--accent-color);
  background-color: transparent;
}
.errorInput:focus,
.errorInput:visited,
.errorInput:active {
  outline: none;
  border-color: var(--accent-color);
  background-color: transparent;
  box-shadow: none;
}
.error {
  color: var(--accent-color);
  font-size: 0.88rem;
}
.bloqueado {
  cursor: not-allowed !important;
}
.contacto_formulario,
.contacto_ubicacion {
  width: 90%;
}
.contacto_formulario .wrapper_form {
  width: 100%;
}
.wrapper_form input,
.wrapper_form textarea {
  font-size: 17px;
}
.icon-contacto {
  color: var(--primary-color);
}
.icon-contacto > i {
  font-size: 22px;
}
.icon-contacto + p {
  font-size: 18px;
}
.wrapper_mapa {
  height: 350px;
  box-shadow: 8px 8px 16px rgba(165, 177, 198, 0.8),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
}
.contacto,
.direccion {
  width: 100%;
}

@media (min-width: 576px) {
  .contacto_formulario .wrapper_form {
    width: clamp(350px, 70%, 475px);
  }
}
@media (min-width: 992px) {
  .contacto_formulario,
  .contacto_ubicacion {
    width: 50%;
  }
  .contacto_formulario .wrapper_form {
    width: 80%;
  }
}
.scroll-animate {
  visibility: hidden;
}
