@charset "UTF-8";
/* Orange-themed styles for Arbitraje pages - Different from CARDA */

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #fafafa;
  color: #2c2c2c;
  overflow-x: hidden;
}

/* Navbar - Orange theme */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ff9800;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.navbar .logo-container {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

.navbar .logo-container a {
  text-decoration: none;
  color: #fff;
}

.navbar .logo-container .logo-text {
  margin-left: 15px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

.navbar .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  z-index: 1050;
}

.navbar .menu-toggle .bar {
  background-color: #fff;
  height: 3px;
  width: 100%;
  margin: 4px 0;
  transition: all 0.3s;
}

.navbar .nav-links {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 30px;
  gap: 25px;
}

.navbar .nav-links li {
  position: relative;
  padding: 0.5rem 0;
}

.navbar .nav-links li a {
  color: #fff !important;
  font-weight: 600;
  position: relative;
  background: none;
  border-radius: 999px;
  box-shadow: none;
  text-shadow: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s, background 0.2s, transform 0.15s ease;
  text-decoration: none !important;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.navbar .nav-links li a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-bottom: 2px solid #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.navbar .nav-links li a:hover::before,
.navbar .nav-links li a:focus::before,
.navbar .nav-links li a.active::before {
  transform: scaleX(1);
}

.navbar .nav-links li a:hover,
.navbar .nav-links li a:focus,
.navbar .nav-links li a.active {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* Dropdown menu */
.navbar .nav-links li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .nav-links li.dropdown .dropdown-menu li {
  padding: 0;
}

.navbar .nav-links li.dropdown .dropdown-menu li a {
  color: #fff;
  background: #111;
  border-radius: 0;
  font-weight: 400;
  text-decoration: none !important;
  box-shadow: none;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  text-align: left;
  display: block;
  border: none;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

.navbar .nav-links li.dropdown .dropdown-menu li a::after {
  display: none !important;
}

.navbar .nav-links li.dropdown .dropdown-menu li a:hover,
.navbar .nav-links li.dropdown .dropdown-menu li a:focus {
  background: #ff9800;
  color: #111;
  outline: none;
  text-decoration: none !important;
}

.navbar .nav-links li.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Nested submenu */
.navbar .nav-links li.dropdown-submenu {
  position: relative;
}

.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #0f0f0f;
  list-style: none;
  padding: 0.75rem 0;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  margin-left: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Keep submenu visible when hovering over parent or submenu itself */
.navbar .nav-links li.dropdown-submenu:hover .dropdown-menu-sub,
.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub li {
  margin: 0;
  padding: 0;
}

.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub li a {
  color: #ffffff;
  background: transparent;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  position: relative;
  border-left: none;
  letter-spacing: 0.2px;
}

/* White square bullet point */
.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub li a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding-left: 1.75rem;
}

.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub li a:hover::before {
  background-color: #ff9800;
  transform: scale(1.2);
}

.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub li a.active {
  background: #ff6b35;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.navbar .nav-links li.dropdown-submenu .dropdown-menu-sub li a.active::before {
  background-color: #ffffff;
  transform: scale(1.1);
}

/* Hero Banner - Enhanced Orange gradient with depth */
.hero-banner {
  background: linear-gradient(
      135deg,
      #ff6b35 0%,
      #ff7a4a 15%,
      #ff8c42 30%,
      #ff9a55 45%,
      #ffa07a 60%,
      #ffb080 75%,
      #ffc090 90%,
      #ffd0a0 100%
    ),
    linear-gradient(
      45deg,
      rgba(255, 107, 53, 0.9) 0%,
      rgba(255, 140, 66, 0.85) 50%,
      rgba(255, 160, 122, 0.8) 100%
    );
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/banner2.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.12;
  z-index: 1;
  mix-blend-mode: overlay;
}

.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center top,
    rgba(255, 152, 0, 0.25) 0%,
    rgba(255, 107, 53, 0.1) 40%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
  margin: 0;
}

/* Documents Section */
.documents-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ff6b35;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Documents Grid - Modern card layout */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.document-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.document-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.3);
}

.card-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  position: relative;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.document-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
}

.card-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b35;
  margin: 0;
  letter-spacing: -0.3px;
}

.card-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: auto;
}

.card-button:hover {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-left {
  flex: 0 1 200px;
}

.footer-left img {
  max-width: 150px;
  height: auto;
  display: block;
}

.footer-right {
  flex: 1 1 auto;
}

.footer-right h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ff9800;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-right p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-right a {
  color: #ff9800;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: #ff6b35;
  text-decoration: underline;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
  .navbar .menu-toggle {
    display: flex;
  }

  .navbar .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 2rem 2rem;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    gap: 0;
  }

  .navbar .nav-links.active {
    display: flex;
    transform: translateX(0);
  }

  .navbar .nav-links li {
    width: 100%;
    padding: 0;
    margin-bottom: 0.75rem;
  }

  .navbar .nav-links li a {
    display: block !important;
    padding: 1rem 1.25rem !important;
    font-size: 1.1rem !important;
    color: #111 !important;
    border-radius: 8px !important;
  }

  .navbar .nav-links li a:hover,
  .navbar .nav-links li a.active {
    background-color: #ff9800 !important;
    color: #fff !important;
  }

  .navbar .nav-links li.dropdown .dropdown-menu,
  .navbar .nav-links li.dropdown-submenu .dropdown-menu-sub {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    margin-top: 0.5rem !important;
    padding-left: 1rem !important;
  }

  .navbar .nav-links li.dropdown-submenu .dropdown-menu-sub {
    margin-left: 1rem !important;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-banner {
    height: 40vh;
    min-height: 300px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .documents-section {
    padding: 2rem 1rem;
  }

  .card-body {
    padding: 1.5rem;
  }
}
