/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}
p{
    text-wrap: balance;
}

:root {
    --orange: #F07C2D;
    --white: #FFFFFF;
    --blue: #021531;
    --grey:#5D5D5D;
}

body.noscroll {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    --drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button {
    cursor: pointer;
}

button,
i {
    transition: .25s;
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 2vw 6vw;
    z-index: 99;
}

.logo-box{
    width: 8vw;
}

.desktop_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.desktop_header .navigation_contain .nav_bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
}

.desktop_header .navigation_contain .nav_bar a {
    font-size: 1vw;
    color: var(--white);
    gap: .5vw;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Icono */
.btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-outline {
  color: #fff;
  border: 1.5px solid #fff;
  background: transparent;
}

.btn-outline .icon {
  border: 1.5px solid #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: #F36C30;
  color: #fff;
  border: none;
}

.btn-primary .icon {
  background: #fff;
  color: #F36C30;
}

.btn-primary:hover {
  background: #d95a25;
}

.btn:hover .icon {
  transform: translateX(3px);
}

.navbar {
  display: flex;
  gap: 2vw;
}

.navbar_item {
  text-decoration: none;
  font-size: 1vw;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown {
  position: relative;
}

.dropdown_menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  border-radius: 12px;
  padding: .5vw 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.dropdown:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown_menu a {
  display: block;
  padding: .5vw .8vw;
  color: var(--blue);
  text-decoration: none;
  font-size: .8vw;
}

.dropdown_menu a:hover {
  background: var(--orange);
}

.dropdown i {
  transition: transform 0.3s ease;
}

.dropdown:hover i {
  transform: rotate(180deg);
}

.mobile_header {
  display: none;
}

@media (max-width: 768px) {
  .desktop_header {
    display: none;
  }

  .mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
}

.menu_toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
}

.menu_toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.mobile_menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111111c9;
  z-index: 999;
  flex-direction: column;
  gap: 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.4s ease;
}

.mobile_menu.active {
  top: 0;
}

.mobile_nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.mobile_nav a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.mobile_dropdown_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile_dropdown.active .mobile_dropdown_menu {
    max-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 3vw;
    padding: 6vw 0;
}

 .mobile_dropdown_menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        }

        .mobile_dropdown.active .mobile_dropdown_menu {
        max-height: 300px; /* suficiente para el contenido */
        }

.mobile_dropdown_header {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.menu_toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu_toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu_toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.section-footer{
    padding: 6vw 6vw 2vw 6vw;
}

.section-footer .container-footer {
    display: flex;
    gap: 2vw;
    align-items: center;
    flex-direction: column;
}

.section-footer .container-footer .row1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3vw;
    align-items: center;
}
.hr-style {
    height: 1px; 
    opacity: 0.5;
    background-color: var(--grey);
    width: 100%;
}
footer h3{
    color: var(--blue);
    font-size: 1.8vw;
}
.section-footer .container-footer .row1 .item{
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.section-footer .container-footer .row1 div img{
    width: 100%;
    height: 100px;
    object-fit: contain;
}

footer a {
    color: var(--blue);
    transition: color .5s;
    font-size: 1vw;
}
footer a:hover {
    color: var(--orange);
}
.section-footer .container-footer .row2 {
    width: 100%;
    display: flex;
    gap: 3vw;
    font-size: 1vw;
    justify-content: space-between;
}
.section-footer .container-footer .row1 .item-logo {
  text-align: center;
}
.section-footer .container-footer .row1 .item-logo i {
  font-size: 1.6vw;
}
  
@media (max-width: 996px) { 
  .section-footer {
    padding: 12vw 6vw;
  }
  .section-footer .container-footer .row2 {
    flex-direction: column;
    text-align: center;
  }
  .section-footer .container-footer .row2 {
    font-size: 3vw;
  }
  .section-footer .container-footer .row1 .item {
    gap: 3vw;
    text-align: center;
  }
  .section-footer .container-footer .row1 .item-logo i {
    font-size: 6vw;
  }
  footer a {
    font-size: 3vw;
  }
  footer h3 {
    font-size: 6vw;
  }
  .section-footer .container-footer .row1{
    grid-template-columns: 1fr;
    gap: 6vw;
  }
    .logo-box {
        width: 16vw;
    }
    .banner_section .banner_box {
        width: 100% !important;
        padding: 6vw;
    }
    .banner_section .banner_box .banner_content {
       padding: 0;
       gap: 3vw;
    }

    .menu_toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }

    .menu_toggle.active span:nth-child(2) {
    opacity: 0;
    }

    .menu_toggle.active span:nth-child(3) {
    transform: rotate(307deg) translate(7px, -5px);
    }

   
}