* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --yellow: #FFC21C;
  --white: #ffffff;
  --text-gray: #e0e0e0;
  --Blue:#003F88;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--black);
  color: var(--white);
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
}

ul {
  list-style-position: inside;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0px 20px;
}

.btn-primary {
  position: relative;
  display: inline-block;
  padding: 8px 17px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s ease;
  border-radius: 8px;
  overflow: hidden; /* 👈 importante */
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );

  transform: skewX(-25deg);
}

.btn-primary:hover {
  box-shadow: 0 0 10px var(--yellow),
  0 0 20px rgba(254, 203, 0, 0.5);
}

.btn-primary:hover::before {
  left: 130%;
  transition: 0.6s;
}

.yellow-text {
  color: var(--yellow);
}

.bg-image {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right-bg-image{
  right: 0;
}

.left-bg-image{
  left: 0;
}

.right-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--black), transparent);
}

.left-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--black), transparent);
}

/* --- NAVBAR --- */
.navbar {
  background-color: var(--black);
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.main-logo {
  height: 40px;
}

#menu-check,
.hamburger {
  display: none;
}

.hamburger {
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.line {
  width: 30px;
  height: 3px;
  background-color: var(--yellow);
  border-radius: 5px;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

.active{
  color: var(--yellow) !important;
}

.header-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mini-icon {
  width: 24px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s;
}

.mini-icon:hover {
  transform: scale(1.1);
}

/* --- FOOTER --- */
.footer-section {
  padding-top: 160px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-logo {
  height: 35px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-socials img {
  width: 24px;
  height: auto;
  cursor: pointer;
}

.footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
  color: var(--text-gray);
  font-size: 15px;
  cursor: pointer;
}
.footer-col ul li:hover {
  color: var(--yellow);
}

.footer-col ul li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--yellow);
}

.contact-icon {
  width: 18px;
  vertical-align: middle;
  margin-right: 10px;
}
.footer-col p {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-gray);
}


.footer-col p a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col p a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid white;
  font-size: 12px;
}

@media (max-width: 992px) {

  body {
    padding-top: 65px; 
  }

  .navbar-content {
    height: 65px; 
    align-items: center;
  }

  .navbar-content .mini-icon, 
  .navbar-content .social-icon {
    width: 20px;
    height: 20px;
  }

  .main-logo {
    height: 30px; 
    width: auto;
    transition: height 0.3s ease;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 101;
  }

  #menu-check:checked ~ .hamburger {
    position: absolute; 
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    top: 22px;                 
  }

  #menu-check:checked ~ .hamburger .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #menu-check:checked ~ .hamburger .line:nth-child(2) {
    opacity: 0;
  }

  #menu-check:checked ~ .hamburger .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: var(--black);
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    transition: 0.5s ease;
    z-index: 99;
    padding-top: 80px;
  }

  #menu-check:checked ~ .nav-links {
    left: 0;
  }

  .nav-links {
    display: flex !important;
  }

  .grid-split {
    grid-template-columns: 1fr;
  }

  .top-bottom-gradient-overlay {
    background: linear-gradient(
        to bottom, 
        var(--black) 0%, 
        transparent 50%, 
        var(--black) 100%
    );
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .footer-section {
    padding-top: 90px;
    margin-top: 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-col h4 {
    margin-bottom: 15px;
  }

  .contact-icon {
    margin-right: 8px;
  }

  .footer-bottom {
    text-align: center;
  }
}

.lang-switcher {
  position: relative;
  margin-right: 15px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.lang-arrow {
  color: #fff;
  font-size: 11px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.95);
  border: 1px solid rgba(255,194,28,0.3);
  border-radius: 8px;
  padding: 8px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  min-width: 70px;
}

.lang-dropdown.active {
  display: flex;
}

.lang-dropdown div {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.lang-dropdown div:hover {
  background: rgba(255,194,28,0.2);
}

.lang-dropdown span {
  color: #fff;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.lang-flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
}

.instagram-browser .lang-flag {
  width: 28px !important;
  height: 20px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
}