/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a1513;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Container principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(9, 21, 19, 0.95);
  backdrop-filter: blur(10px);
  padding: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 87px;
  width: auto;
  filter: brightness(1.1);
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #ff8c42;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff8c42;
  transition: width 0.3s ease;
}

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

/* Language Menu */
.language-menu {
  position: relative;
  display: inline-block;
}

.language-btn {
  background: none;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.language-btn:hover {
  background-color: rgba(255, 140, 66, 0.1);
  color: #ff8c42;
}

.flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #09150d;
  border: 1px solid #091115;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 0.5rem;
}

.language-menu:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-align: left;
}

.lang-option:hover {
  background-color: rgba(255, 140, 66, 0.1);
  color: #ff8c42;
}

.lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

.lang-option:not(:last-child) {
  border-bottom: 1px solid #091115;
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ff8c42;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.social-icon:hover {
  background: rgba(255, 140, 66, 0.2);
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Main Content */
.main-content {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(9, 21, 19, 0.28) -50%, rgba(9, 17, 21, 0.245) 176%, rgba(9, 21, 19, 0.28) 100%), url(https://athleticmap.com/images/bkg-banner.png) no-repeat right top;
    background-size: contain;
    position: relative;
    overflow: hidden;
    animation: backgroundScroll 15s ease-in-out infinite;
    background-position-x: 772px !important;
    background-position-y: -80px !important;
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
}

@keyframes backgroundScroll {
  0% {
    background-position: right top;
  }
  50% {
    background-position: 120% top;
  }
  100% {
    background-position: right top;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.175) 0%, transparent 50%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.14) 0%, transparent 50%);
  pointer-events: none;
      filter: brightness(1.2) contrast(1.3) saturate(1.1);
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(9, 21, 19, 0.4) 0%, rgba(9, 21, 19, 0.01) 70%, rgba(9, 21, 19, 0.4) 100%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1400px;
  margin: -92px 0 0 -40px;
  padding: 0 0 0 10%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  text-align: left;
  position: relative;
  z-index: 3;
  margin-left: 0;
  padding-left: 0;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero-highlight {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  font-style: italic;
  max-width: 600px;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid #ff8c42;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.95) 0%, rgba(255, 107, 53, 0.85) 30%, rgba(255, 89, 0, 0.7) 60%, rgba(9, 21, 19, 0.4) 100%);
  border: 2px solid rgba(255, 140, 66, 0.8);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.98) 0%, rgba(255, 140, 66, 0.9) 30%, rgba(255, 89, 0, 0.8) 60%, rgba(9, 21, 19, 0.5) 100%);
  border-color: rgba(255, 140, 66, 0.9);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3), 0 4px 15px rgba(9, 21, 19, 0.2);
}

.btn-primary:hover::before {
  left: 100%;
}

/* Hero Button Variants */
.btn-atleta {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.95) 0%, rgba(255, 107, 53, 0.85) 30%, rgba(255, 89, 0, 0.7) 60%, rgba(9, 21, 19, 0.4) 100%);
  border: 2px solid rgba(255, 140, 66, 0.8);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.btn-atleta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-atleta:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.98) 0%, rgba(255, 140, 66, 0.9) 30%, rgba(255, 89, 0, 0.8) 60%, rgba(9, 21, 19, 0.5) 100%);
  border-color: rgba(255, 140, 66, 0.9);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3), 0 4px 15px rgba(9, 21, 19, 0.2);
}

.btn-atleta:hover::before {
  left: 100%;
}

.btn-clube {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.95) 0%, rgba(0, 184, 148, 0.85) 30%, rgba(0, 166, 130, 0.7) 60%, rgba(9, 21, 19, 0.4) 100%);
  border: 2px solid rgba(0, 212, 170, 0.8);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.btn-clube::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-clube:hover {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.98) 0%, rgba(0, 212, 170, 0.9) 30%, rgba(0, 166, 130, 0.8) 60%, rgba(9, 21, 19, 0.5) 100%);
  border-color: rgba(0, 212, 170, 0.9);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3), 0 4px 15px rgba(9, 21, 19, 0.2);
}

.btn-clube:hover::before {
  left: 100%;
}

.btn-tecnico {
  background: linear-gradient(135deg, rgba(225, 225, 225, 0.95) 0%, rgba(192, 192, 192, 0.9) 21%, rgba(169, 169, 169, 0.85) 65%, rgba(128, 128, 128, 0.8) 83%, rgba(105, 105, 105, 0.7) 100%), linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, transparent 20%, rgba(255, 255, 255, 0.1) 40%, transparent 60%, rgba(255, 255, 255, 0.2) 80%, transparent 100%);
  border: 2px solid rgba(169, 169, 169, 0.9);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-tecnico::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 20%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0.4) 80%, 
    transparent 100%
  );
  transition: left 0.6s ease;
  filter: blur(0.5px);
}

.btn-tecnico:hover {
  background: 
    linear-gradient(135deg, 
      rgba(240, 240, 240, 0.98) 0%, 
      rgba(220, 220, 220, 0.95) 25%, 
      rgba(192, 192, 192, 0.9) 50%, 
      rgba(169, 169, 169, 0.85) 75%, 
      rgba(128, 128, 128, 0.8) 100%
    ),
    linear-gradient(45deg, 
      rgba(255, 255, 255, 0.4) 0%, 
      transparent 15%, 
      rgba(255, 255, 255, 0.2) 35%, 
      transparent 55%, 
      rgba(255, 255, 255, 0.3) 75%, 
      transparent 95%
    );
  border-color: rgba(192, 192, 192, 0.95);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(192, 192, 192, 0.4),
    0 4px 15px rgba(9, 21, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-tecnico:hover::before {
  left: 100%;
}

/* Sobre Section */
.sobre-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(9, 21, 19, 0.25) -50%, rgba(9, 17, 21, 0.2) 176%, rgba(9, 21, 19, 0.25) 100%), url('https://athleticmap.com/images/desktop_bkg2.png') no-repeat left center;
  background-size: 61%;
  position: relative;
  overflow: hidden;
  background-position-x: -57px;
}

.sobre-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
  filter: brightness(1.1) contrast(1.1);
}

.sobre-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(9, 21, 19, 0.25) 0%, rgba(9, 21, 19, 0.005) 70%, rgba(9, 21, 19, 0.25) 100%);
  pointer-events: none;
}

.sobre-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 0 0;
  position: relative;
  z-index: 2;
}

.sobre-content {
  max-width: 597px;
  text-align: left;
  position: relative;
  z-index: 3;
  padding: 2rem 0;
  margin-right: -26px;
  transform: translateX(489px);
}

.sobre-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  position: relative;
}

.sobre-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  border-radius: 2px;
}

.sobre-text {
  text-align: left;
}

.sobre-text p {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.sobre-text p:last-child {
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: #0a1513;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: #b0b0b0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: #09150d;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #091115;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #ff8c42;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  margin-bottom: 1.5rem;
  color: #ff8c42;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-description {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Modalidades Section */
.modalidades-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(9, 21, 19, 0.25) -50%, rgba(9, 17, 21, 0.2) 176%, rgba(9, 21, 19, 0.25) 100%), url('https://athleticmap.com/images/banner_tenis.png') no-repeat center center;
  background-size: 100%;
  background-position: center bottom;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.modalidades-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  filter: brightness(1.1) contrast(1.05);
}

.modalidades-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(9, 21, 19, 0.15) 0%, rgba(9, 21, 19, 0.005) 70%, rgba(9, 21, 19, 0.15) 100%);
  pointer-events: none;
}

.modalidades-section .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: inherit;
  top: -210px;
}

.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.modalidade-card {
    background-color: rgba(10, 21, 19, 0.9);
    backdrop-filter: blur(10px);
    padding: 0rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.modalidade-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  position: relative;
  z-index: 4;
}

.modalidade-icon svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 170, 0.3));
}

.modalidade-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modalidade-card:hover {
  transform: translateY(-8px);
  border-color: #ff8c42;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.modalidade-card:hover::before {
  transform: scaleX(1);
}

.modalidade-card:hover .modalidade-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(0, 212, 170, 0.5));
}

.modalidade-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modalidade-description {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Módulos Section */
.modulos-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 212, 170, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.modulos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 212, 170, 0.25) 0%, transparent 50%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
  filter: brightness(1.3) contrast(1.2) saturate(1.1);
}

.modulos-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(9, 21, 19, 0.4) 0%, rgba(9, 21, 19, 0.01) 70%, rgba(9, 21, 19, 0.4) 100%);
  pointer-events: none;
}

.modulos-section .container {
  position: relative;
  z-index: 2;
  margin: 66px auto 0;
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.modulos-adicionais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.modulo-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modulo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modulo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.modulo-card:hover::before {
  transform: scaleX(1);
}

.modulo-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff8c42;
}

.modulo-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000000;
}

.modulo-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modulo-features li {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.modulo-features li::before {
  content: '•';
  color: #ff8c42;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #091115;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff8c42;
  box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.member-role {
  color: #ff8c42;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Section */
    .contact-section {
    padding: 5rem 0;
    background: radial-gradient(circle at 124% 80%, rgba(255, 255, 0, 0.3) -86%, transparent 0%), radial-gradient(circle at -20% 20%, rgba(0, 0, 0, 0.4) 0%, transparent 250%), linear-gradient(404deg, rgba(0, 0, 0, 0.2) -38%, rgba(0, 0, 0, 0.1) 275%, rgba(255, 255, 0, 0.1) 118%, rgba(255, 255, 0, 0.2) 100%);
    position: relative;
    overflow: hidden;
    margin: 0px 0 0 0;
  }

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 0, 0.25) 0%, transparent 50%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.contact-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 3;
}

.contact-info {
  max-width: 500px;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-description {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Contact Info Image Styles */
.contact-info-image-container {
  margin-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.contact-info-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(0.95) contrast(1.05);
}

.contact-info-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  filter: brightness(1) contrast(1.1);
}

.contact-form {
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  z-index: 3;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border-radius: 6px;
  background-color: rgb(245 245 245 / 80%);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8c42;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

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

.submit-btn {
  background-color: #a94200;
  color: #ffffff;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}

/* reCAPTCHA Styles */
.g-recaptcha {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}

.g-recaptcha > div {
  margin: 0 auto;
}

/* Notification Styles */
.notification {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.notification-success {
  border-left: 4px solid #28a745;
}

.notification-error {
  border-left: 4px solid #dc3545;
}

.notification-warning {
  border-left: 4px solid #ffc107;
}

.notification-info {
  border-left: 4px solid #17a2b8;
}

/* Contact Image Styles */
.contact-image-container {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-atletas-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(0.9) contrast(1.1);
}

.contact-atletas-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1) contrast(1.2);
}

.submit-btn:hover {
  background-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 140, 66, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.25) 0%, transparent 50%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.faq-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 3;
}

.faq-item {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4aa, #00b894);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff8c42;
}

.faq-answer {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer */
.main-footer {
  background-color: #0a1513;
  padding: 0rem 0;
  border-top: 1px solid #091115;
  margin-top: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-section:first-child {
  align-items: flex-start;
}

.footer-section:last-child {
  align-items: flex-end;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: #ff8c42;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff8c42;
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-text {
  color: #b0b0b0;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== RESPONSIVIDADE COMPLETA ===== */

/* Telas Grandes (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-container {
    max-width: 1600px;
    padding: 0 0 0 15%;
  }
  
  .hero-title {
    font-size: 5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-highlight {
    font-size: 1.5rem;
  }
  
  .sobre-title {
    font-size: 4rem;
  }
  
  .sobre-text p {
    font-size: 1.375rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .modulos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .modalidades-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Desktop Normal (1024px - 1399px) */
@media (max-width: 1399px) and (min-width: 1024px) {
  .hero-container {
    padding: 0 0 0 8%;
    margin: -92px 0 0 -20px;
  }
  
  .hero-content {
    max-width: 700px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.375rem;
  }
  
  .hero-highlight {
    font-size: 1.25rem;
  }
  
  .sobre-content {
    transform: translateX(300px);
    max-width: 550px;
  }
  
  .sobre-title {
    font-size: 3.25rem;
  }
  
  .sobre-text p {
    font-size: 1.125rem;
  }
  
  .modulos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modalidades-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact-content {
    gap: 3rem;
  }
}

/* ===== RESPONSIVE DESIGN - MOBILE & TABLET ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 4.2rem;
  }
}

/* Tablet Landscape (768px - 1023px) - Apenas ajustes básicos */
@media screen and (max-width: 1023px) {
  .container {
    max-width: 90%;
    padding: 0 20px;
  }
  
  .hero-container {
    margin: -60px 0 0 -20px;
  }
  
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-highlight {
    font-size: 1.6rem;
  }
  
  .sobre-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .sobre-title {
    font-size: 2.2rem;
  }
  
  .sobre-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  
  .modulos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .modalidades-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-info {
    order: 2;
  }
  
  .faq-list {
    gap: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Tablet Portrait (600px - 767px) - Apenas ajustes básicos */
@media screen and (max-width: 767px) {
  .container {
    max-width: 95%;
    padding: 0 15px;
  }
  
  .main-header {
    padding: 1rem 0;
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .social-icons {
    gap: 0.8rem;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

/* Mobile Large (480px - 599px) - Apenas ajustes básicos */
@media screen and (max-width: 599px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* Mobile Small (320px - 479px) - Apenas ajustes básicos */
@media screen and (max-width: 479px) {
  .container {
    padding: 0 8px;
  }
}

/* Mobile Landscape Orientation - Apenas ajustes básicos */
@media screen and (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
  }
}

/* Acessibilidade - Desabilitar animação para usuários que preferem movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .hero-section {
    animation: none;
  }
}

/* Focus states para acessibilidade */
.btn-primary:focus,
.btn-atleta:focus,
.btn-clube:focus,
.btn-tecnico:focus,
.submit-btn:focus,
.main-nav a:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #ff8c42;
  outline-offset: 2px;
}

/* Melhorias de performance */
.hero-image {
  will-change: transform;
}

.feature-card,
.team-member,
.faq-item {
  will-change: transform;
}



/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #ff8c42;
  outline-offset: 2px;
}

/* Performance optimization */
.hero-section,
.sobre-section {
  will-change: transform;
}

/* AI Chat Avatar Styles */
.ai-chat-avatar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c42 0%, #00d4aa 50%, #ffff00 100%);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.ai-chat-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.ai-avatar-icon {
    color: #ffffff;
    font-size: 24px;
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.ai-robot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.ai-robot-image:hover {
    transform: scale(1.05);
}

.ai-avatar-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42 0%, #00d4aa 50%, #ffff00 100%);
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* AI Chat Modal Styles */
.ai-chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid rgba(255, 140, 66, 0.2);
}

.ai-chat-modal.active {
    display: flex;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ai-chat-header {
    background: linear-gradient(135deg, #ff8c42 0%, #00d4aa 50%, #ffff00 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-weight: 600;
}

.ai-chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.ai-avatar-small {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.ai-robot-image-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ai-chat-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.ai-chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ai-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.ai-welcome-message {
    text-align: center;
    margin-bottom: 20px;
}

.ai-welcome-message p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ai-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-suggestion-btn {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.ai-suggestion-btn:hover {
    background: #ff8c42;
    color: #ffffff;
    border-color: #ff8c42;
}

.ai-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 13px;
    line-height: 1.4;
}

.ai-message.user {
    background: #ff8c42;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.ai-message.assistant {
    background: #ffffff;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    border: 1px solid #e0e0e0;
}

.ai-chat-input {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.ai-chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.ai-chat-input input:focus {
    border-color: #ff8c42;
}

.ai-send-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #00d4aa 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.ai-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.ai-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive for AI Chat */
@media screen and (max-width: 768px) {
    .ai-chat-avatar {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .ai-chat-modal {
        bottom: 80px;
        right: 20px;
        left: 20px;
        width: auto;
        height: 450px;
    }
    
    .ai-chat-header {
        padding: 12px 15px;
    }
    
    .ai-chat-title {
        font-size: 14px;
    }
    
    .ai-chat-body {
        padding: 15px;
    }
    
    .ai-chat-input {
        padding: 12px 15px;
    }
}

@media screen and (max-width: 480px) {
    .ai-chat-avatar {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .ai-chat-modal {
        bottom: 70px;
        right: 15px;
        left: 15px;
        height: 400px;
    }
    
    .ai-avatar-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .ai-chat-header {
        padding: 10px 12px;
    }
    
    .ai-chat-title {
        font-size: 13px;
    }
    
    .ai-chat-body {
        padding: 12px;
    }
    
    .ai-chat-input {
        padding: 10px 12px;
    }
    
    .ai-chat-input input {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .ai-send-btn {
        width: 35px;
        height: 35px;
    }
}
