@charset "UTF-8";

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

body {
  background: #050505;
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-navbar {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-navbar {
  width: 58px;
}

.brand-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.brand-subtitle {
  color: #ff2b2b;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  color: #ff2b2b !important;
}

.btn-nav {
  background: linear-gradient(90deg, #b30000, #ff1a1a);
  padding: 10px 20px !important;
  border-radius: 40px;
}

.hero-section {
  position: relative;
  background: url('../img/banner-hero-rodrigo-borges-muay-thai.avif') center center/cover no-repeat;
  min-height: 100vh;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.35);
  color: #ff3c3c;
  padding: 10px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero-section h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-section p {
  max-width: 620px;
  font-size: 1.1rem;
  color: #d6d6d6;
}

.btn-primary-custom {
  background: linear-gradient(90deg, #b30000, #ff1a1a);
  border: none;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,0,0,0.25);
}

.btn-outline-custom {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

.section-padding {
  padding: 110px 0;
}

.section-tag {
  color: #ff2b2b;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

.stat-box h3 {
  color: #ff2b2b;
  font-size: 2rem;
}

.bg-dark-custom {
  background: #0b0b0b;
}

.service-card {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,0,0,0.3);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  color: #bcbcbc;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
}

.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.testimonial-card {
  background: #111;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}

.testimonial-card p {
  color: #cfcfcf;
  margin-bottom: 20px;
}

.testimonial-card h5 {
  color: #ff2b2b;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d0d, #1d0000);
}

.contact-form {
  background: #111;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.form-control {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 15px;
  color: #fff;
}

.form-control:focus {
  background: #1a1a1a;
  color: #fff;
  box-shadow: none;
  border-color: #ff2b2b;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}

.footer-logo {
  width: 90px;
}

html {
  scroll-behavior: smooth;
}

@media(max-width: 991px) {

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width: 768px) {

  .hero-section h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .section-padding {
    padding: 80px 0;
  }

}