html {
  scroll-behavior: auto;
}


body {
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Page Sections */
.page-section {
  background: #181918;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
}

/* Section Backgrounds */
#home {
  background: #181918;
}

#quem-somos {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
  background-image: url('../images/bg-quem-somos.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: visible;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
}

#quem-somos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.80) 100%);
  pointer-events: none;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
}

#quem-somos::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 160px;
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  transform: skewY(-2deg);
  transform-origin: bottom left;
  z-index: 2;
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
}

#quem-somos .section-content {
  position: relative;
  z-index: 3;
}

#academia {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  background-image: url('../images/bg-academia.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: -80px;
  z-index: 1;
  padding-top: 80px;
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 calc(100% - 80px));
  overflow: visible;
}

#academia::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.80) 1%);
  pointer-events: none;
  z-index: 1;
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 calc(100% - 80px));
}

#academia::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 160px;
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  transform: skewY(2deg);
  transform-origin: bottom right;
  z-index: 2;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%);
}

#academia .section-content {
  position: relative;
  z-index: 2;
}

#formacoes {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  background-image: url('../images/bg-academia.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#formacoes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.80) 100%);
  pointer-events: none;
  z-index: 1;
}

#formacoes .section-content {
  position: relative;
  z-index: 2;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.course-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.course-card h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 10px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
}

.course-subtitle {
  font-size: 16px;
  color: #ff3c00;
  margin: 0 0 15px 0;
  font-style: italic;
  font-weight: normal;
  font-family: inherit;
}

.course-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #ccc;
}

.course-date,
.course-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
}

.course-date i,
.course-location i {
  font-size: 16px;
  color: #ccc;
  margin-right: 8px;
  flex-shrink: 0;
}

.course-content {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.course-register-btn {
  background: #ff3c00;
  color: #fff;
  border: none;
  padding: 3px 0px;
  font-size: 16px;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: auto;
  width: 120px;
}

.course-register-btn:hover {
  background: #ff5500;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.4);
}

#servicos {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  position: relative;
  background-image: url('../images/bg-servicos.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: -80px;
  z-index: 1;
  padding-top: 80px;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%);
}

#servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%);
}

#marcas {
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  position: relative;
}

#marcas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  background-size: 100px 100px;
  pointer-events: none;
}

#parceiros {
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  position: relative;
}

.parceiros-description {
  font-size: 16px;
  color: #ccc;
  margin: 20px auto 40px;
  max-width: 800px;
  line-height: 1.6;
}

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

#contacto {
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  position: relative;
}

.contact-message {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.contact-success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.contact-error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #f44336;
}

.contact-form-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff3c00;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 60, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  background: #ff3c00;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: #ff5500;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.section-content {
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  position: relative;
  z-index: 1;
}

.section-content h1 {
  margin-bottom: 30px;
  color: #fff;
}

.section-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-content p.text-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.section-subtitle {
  font-size: 32px;
  color: #fff;
  margin: 20px 0 30px;
  font-family: 'Changa One', cursive;
}

.section-intro {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #e0e0e0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.instalacoes-info {
  margin-top: 40px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.instalacoes-info h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 20px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
  text-align: center;
}

.instalacoes-description {
  font-size: 16px;
  color: #ccc;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.instalacoes-image-container {
  margin: 20px 0;
  text-align: center;
}

.instalacoes-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.instalacoes-details {
  margin-top: 20px;
}

.instalacoes-caracteristicas {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  color: #ccc;
}

.instalacoes-caracteristicas li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.instalacoes-caracteristicas li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff3c00;
  font-size: 18px;
  line-height: 1;
}

.academia-details {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.academia-columns {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 30px;
}

.academia-col {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.academia-details h3 {
  font-size: 28px;
  color: #fff;
  margin: 0 0 20px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
}

.features-list,
.training-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  column-count: 3;
  column-gap: 30px;
}

.features-list li,
.training-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  break-inside: avoid;
  page-break-inside: avoid;
  word-break: keep-all;
  hyphens: none;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  opacity: 0.8;
}

.training-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}

#marcas .section-intro {
  text-align: center;
}

.marcas-details {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.brands-list {
  list-style: none;
  padding: 30px;
  margin: 0 0 40px 0;
  column-count: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.brands-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 18px;
  opacity: 0.8;
}

.brands-conclusion {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  font-style: italic;
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item-brand {
  grid-column: span 3;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-item h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 15px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
}

.service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin: 0 0 15px 0;
  text-align: left;
}

.service-items-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  color: #ccc;
}

.service-items-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.service-items-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff3c00;
  font-size: 20px;
  line-height: 1;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(24, 25, 24, 0.8);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo img {
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo a:hover img {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.main-menu li {
  margin: 0;
}

.main-menu a {
  color: #fff;
  text-decoration: none;
  font-family: 'Changa One', cursive;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.main-menu a:hover {
  color: #edeaea;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff3c00;
  transition: width 0.3s ease;
}

.main-menu a:hover::after {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 5px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 5px 15px;

  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.lang-btn:hover {
  background: #ff3c00;
  border-color: #ff3c00;
  color: #fff;
}

.lang-btn.active {
  background: #ff3c00;
  border-color: #ff3c00;
  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 36px;
  min-height: 36px;
}

.mobile-menu-toggle:hover {
  background: #ff3c00;
  border-color: #ff3c00;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .service-item-brand {
    grid-column: span 3;
  }
  
  .section-intro {
    font-size: 18px;
  }
  
  .academia-details h3 {
    font-size: 24px;
  }
  
  .academia-columns {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 10px 0;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    align-items: center;
  }
  
  .logo {
    order: 1;
  }
  
  .logo img {
    max-height: 40px;
  }
  
  .mobile-menu-toggle {
    display: block;
    order: 3;
  }
  
  .main-menu {
    order: 4;
    width: 100%;
    display: none;
    margin-top: 15px;
  }
  
  .main-menu.active {
    display: block;
  }
  
  /* Dark overlay when mobile menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    transition: opacity 0.3s ease;
  }
  
  .main-menu ul {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 100%;
  }
  
  .main-menu a {
    font-size: 16px;
    padding: 10px 0;
    display: block;
  }
  
  .language-switcher {
    order: 2;
    margin-top: 0;
  }
  
  .lang-btn {
    padding: 4px 12px;
    font-size: 12px;
  }
  
  .bounty-bg-container {
    margin-top: 0;
  }
  
  .bounty-wrap {
    background-size: cover;
    height: 400px;
    background-position: center center;
  }
  
  #quem-somos,
  #academia,
  #servicos {
    background-attachment: scroll;
  }
  
  .home-content {
    transform: translate(-50%, -60%);
    padding: 0 20px;
  }
  
  .home-slogan {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .home-subtitle {
    font-size: 18px;
  }
  
  .drink-img {
    max-width: 200px;
    width: 80%;
    height: auto;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 50% !important;
    margin-top: -100px;
    position: relative !important;
  }
  
  .page-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .section-content {
    padding: 30px 15px;
  }
  
  .section-content h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 22px;
    margin: 15px 0 20px;
  }
  
  .section-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .academia-details {
    text-align: left;
    padding: 0 10px;
  }
  
  .academia-columns {
    gap: 40px;
  }
  
  .academia-details h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    text-align: left;
  }
  
  .features-list li,
  .training-list li {
    font-size: 14px;
    padding: 10px 0 10px 25px;
    line-height: 1.5;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  
  .features-list,
  .training-list,
  .brands-list {
    column-count: 1;
  }
  
  .features-list li::before,
  .training-list li::before,
  .brands-list li::before {
    font-size: 16px;
  }
  
  .marcas-details {
    padding: 0 10px;
    text-align: left;
  }
  
  .brands-conclusion {
    font-size: 16px;
    padding: 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .service-item-brand {
    grid-column: span 1;
  }
  
  .service-item {
    padding: 20px;
  }
  
  .service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .service-item p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
    margin-top: 30px;
  }
  
  .course-card {
    padding: 20px;
  }
  
  .course-card h3 {
    font-size: 20px;
  }
  
  .course-meta {
    font-size: 14px;
  }
  
  .course-content {
    font-size: 15px;
  }
  
  .page-up-btn {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  h1 {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 15px;
  }
  
  .logo img {
    max-height: 35px;
  }
  
  .main-menu a {
    font-size: 14px;
  }
  
  .lang-btn {
    padding: 3px 10px;
    font-size: 11px;
  }
  
  .bounty-wrap {
    height: 300px;
  }
  
  .home-content {
    transform: translate(-50%, -70%);
    padding: 0 15px;
  }
  
  .home-slogan {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .home-subtitle {
    font-size: 16px;
  }
  
  .drink-img {
    max-width: 150px;
    width: 70%;
    margin-top: -75px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
  }
  
  .page-section {
    padding: 40px 0;
  }
  
  .section-content {
    padding: 20px 10px;
  }
  
  .section-content h1 {
    font-size: 28px;
    line-height: 32px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
  
  .section-intro {
    font-size: 14px;
    padding: 0;
  }
  
  .course-card {
    padding: 15px;
  }
  
  .course-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .course-meta {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .course-content {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .course-register-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }
  
  .contact-form-container {
    padding: 0 10px;
  }
  
  .contact-form {
    padding: 25px 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-size: 14px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 15px;
  }
  
  .contact-submit-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .contact-message {
    padding: 15px 20px;
    font-size: 14px;
    margin: 15px auto;
  }
  
  .academia-details {
    padding: 0;
  }
  
  .academia-details h3 {
    font-size: 18px;
    margin: 25px 0 12px;
  }
  
  .features-list li,
  .training-list li {
    font-size: 13px;
    padding: 8px 0 8px 20px;
  }
  
  .service-item {
    padding: 15px;
  }
  
  .service-item h3 {
    font-size: 18px;
  }
  
  .service-item p {
    font-size: 13px;
  }
  
  h1 {
    font-size: 36px;
    line-height: 40px;
  }
}
.bounty-bg-container {
  background: #181918;
  margin-top: 0;
}
.bounty-wrap {
    background: url('../images/the-bounty-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 700px;
    height: 650px;
    overflow: hidden;
    position: relative;
    margin-top: -20px;
}

.home-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 800px;
}

.home-slogan {
    font-size: 48px;
    color: #fff;
    margin: 0 0 15px 0;
    font-family: emoji;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.home-subtitle {
    font-size: 24px;
    color: #fff;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.drink-img {
	position: relative !important;
  left: calc(45% - 200px) !important;
  top: 90px !important;
  max-width: 400px;
  width: 100%;
  height: auto;
}
.slide-text {
    margin-top: 20px;
    text-align: center;
}
h1, h3 {
  margin: 0;
  padding: 0;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.5)
}
h1 {
  font-size: 92px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 15px;
  line-height: 82px;
}
h3 {
  font-size: 20px;
  color: #fff;
}
h1, h2, h3, h4, h5 {
	font-family: 'Changa One', cursive;
}

.gold {
  display: block;
  font-family: emoji;
  background: repeating-linear-gradient(135deg, rgb(255, 221, 155) 0, rgb(254, 215, 146) 20px, rgb(255, 225, 172) 40px, rgb(255, 255, 255) 70px, rgb(250, 198, 107) 125px, rgb(246, 194, 107) 160px, rgb(231, 177, 85) 175px, rgb(244, 193, 107) 185px, rgb(241, 191, 107) 220px, rgb(243, 190, 102) 235px, rgb(233, 177, 83) 250px, rgb(245, 190, 97) 280px, rgb(249, 188, 86) 305px, rgb(255, 251, 245) 385px, rgb(252, 195, 98) 415px, rgb(252, 195, 121) 450px, rgb(255, 221, 155) 500px);
  background-clip: text;
  -webkit-background-clip: text;
  background-repeat: repeat;
  background-attachment: fixed;
  backface-visibility: none;
  color: rgb(255, 221, 155);
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 1px #000);
}

/* Page Up Button */
.page-up-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #ff3c00;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.page-up-btn:hover {
  background: #ff5c2a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 60, 0, 0.6);
}

.page-up-btn.show {
  opacity: 1;
  visibility: visible;
}

.page-up-btn span {
  line-height: 1;
  font-weight: bold;
}

/* Footer Styles */
.main-footer {
  background: #181918;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 0;
  border-top: 2px solid rgba(255, 60, 0, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  text-align: left;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
}

.footer-logo img {
  max-height: 50px;
  margin-bottom: 15px;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-logo a:hover img {
  opacity: 0.8;
}

.footer-col h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 15px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
}

.footer-col h4 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 20px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
}

.footer-about p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #ff3c00;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #fff;
  flex-shrink: 0;
}

.footer-icon i {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact ul li {
  color: #ccc;
  font-size: 14px;
}

.footer-contact ul li:last-child {
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
  color: currentColor;
}

.social-link:hover {
  transform: translateY(-3px);
  color: #ff3c00;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links ul,
  .footer-contact ul {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-col h3 {
    font-size: 20px;
  }
  
  .footer-col h4 {
    font-size: 16px;
  }
  
  .social-link {
    font-size: 18px;
  }
}

/* Courses Modal Styles */
.courses-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.courses-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.courses-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.courses-modal-content {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.courses-modal.active .courses-modal-content {
  transform: scale(1);
}

.courses-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10002;
}

.courses-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ff3c00;
  transform: rotate(90deg);
}

.courses-modal-title {
  font-size: 36px;
  margin: 0 0 10px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
  text-align: center;
}

.courses-modal-subtitle {
  font-size: 18px;
  color: #ccc;
  text-align: center;
  margin: 0 0 40px 0;
}

.courses-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.courses-modal-course {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.courses-modal-course:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.courses-modal-course h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 10px 0;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
}

.courses-modal-subtitle-course {
  font-size: 16px;
  color: #ff3c00;
  margin: 0 0 15px 0;
  font-style: italic;
  font-weight: normal;
  font-family: inherit;
}

.courses-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #ccc;
}

.courses-modal-date,
.courses-modal-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
}

.courses-modal-date i,
.courses-modal-location i {
  font-size: 16px;
  color: #ccc;
  margin-right: 8px;
  flex-shrink: 0;
}

.courses-modal-description {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.courses-modal-btn {
  background: #ff3c00;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-family: 'Changa One', cursive;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  align-self: center;
  width: auto;
}

.courses-modal-btn:hover {
  background: #ff5500;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.4);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .courses-modal-content {
    padding: 30px 20px;
    width: 95%;
  }

  .courses-modal-title {
    font-size: 28px;
    padding-right: 40px;
  }

  .courses-modal-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .courses-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .courses-modal-course {
    padding: 20px;
  }

  .courses-modal-course h3 {
    font-size: 20px;
  }

  .courses-modal-meta {
    font-size: 14px;
  }

  .courses-modal-description {
    font-size: 15px;
  }

  .courses-modal-close {
    top: 15px;
    right: 15px;
    font-size: 32px;
  }
}