/* Tagē Trail Training Camp Event Styles */

/* Animação de montanhas de Minas Gerais em movimento */
.mountain-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  bottom: 0;
}

.mountain-animation svg {
  position: absolute;
  width: 200%;
  height: 100%;
  bottom: 0;
}

.mountain-back {
  animation: mountainMoveInfinite 80s linear infinite;
}

.mountain-middle {
  animation: mountainMoveInfinite 50s linear infinite;
}

.mountain-front {
  animation: mountainMoveInfinite 30s linear infinite;
}

@keyframes mountainMoveInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

:root {
  --primary-color: #294122;
  --secondary-color: #fe4e4e;
  --dark-color: #162114;
  --light-color: #EBEBDF;
  --accent-color: #04335A;
  --white: #ffffff;
  --black: #000000;
  --gray: #f4f4f4;
  --dark-gray: #333333;
}

/* Reset CSS para remover faixa branca */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--dark-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #e03e3e;
}

/* Header */
header {
  background-color: var(--dark-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-link {
  display: block;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--white);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--dark-color);
  color: var(--white);
  padding: 0 0 100px 0;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
}

.mountain-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.mountain-animation svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 60%;
  animation: mountainMove 20s linear infinite;
}

@keyframes mountainMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.mountain-back {
  fill: rgba(22, 33, 20, 0.4);
  animation: mountainMove 25s linear infinite;
}

.mountain-middle {
  fill: rgba(22, 33, 20, 0.6);
  animation: mountainMove 20s linear infinite;
}

.mountain-front {
  fill: rgba(22, 33, 20, 0.8);
  animation: mountainMove 15s linear infinite;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 100px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Event Section */
.about-event {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.about-event p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.event-details {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}
  gap: 20px;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detail-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  min-width: 60px;
}

.detail-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.detail-content p {
  margin: 0;
  font-size: 1.1rem;
  text-align: left;
}

.detail-content small {
  font-size: 0.9rem;
  color: var(--dark-color);
  opacity: 0.7;
}

/* Programming Section */
.programming {
  padding: 80px 0;
  background-color: var(--light-color);
}

.programming h2 {
  text-align: center;
  margin-bottom: 50px;
}

.programming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.day-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.day-header {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.day-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 10px;
}

.day-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.day-header small {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.schedule-list {
  padding: 30px;
}

.schedule-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--light-color);
}

.schedule-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.time {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.9rem;
  min-width: 80px;
  text-align: right;
  padding-top: 5px;
}

.activity h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.activity p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--dark-color);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Event Options Section */
.event-options {
  padding: 80px 0;
  background-color: var(--dark-color);
  color: var(--white);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.option-card {
  position: relative;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.option-card.featured {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
}

.option-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-color);
}

.training-day .card-background {
  background-position: center 60%;
  background-size: cover;
}

.card-content {
  position: relative;
  padding: 220px 30px 30px;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, var(--white) 80%);
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  width: 100%;
}

.option-highlight {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: absolute;
  top: -190px;
  left: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.camping .option-highlight {
  background-color: var(--secondary-color);
}

.casa-campo .option-highlight {
  background-color: var(--secondary-color);
}

.option-card h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--dark-color);
  line-height: 1.4;
}

.option-card h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.option-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.option-card li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: var(--dark-color);
}

.option-card li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.note {
  font-size: 0.9rem;
  color: var(--dark-color);
  font-style: italic;
  margin-bottom: 20px;
}

.option-highlight {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.option-card.featured .option-highlight {
  background-color: var(--secondary-color);
}

/* Registration Section */
.registration {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.registration h2 {
  margin-bottom: 30px;
}

.registration p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

.registration .btn {
  background-color: var(--secondary-color);
  font-size: 1.2rem;
  padding: 18px 36px;
}

.registration .btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--light-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
}

.social-links a:hover {
  color: var(--secondary-color);
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links a {
    color: var(--dark-color) !important;
  }
  
  .nav-links a:hover {
    color: var(--secondary-color) !important;
  }
  
  .hero {
    padding: 0 0 80px 0;
  }
  
  .hero-content {
    padding-top: 80px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    padding: 0 15px;
  }
  
  .option-card {
    padding: 25px 20px;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  
  .card-content {
    padding: 200px 20px 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .option-card h3,
  .option-card h4,
  .option-card p,
  .option-card li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .price {
    font-size: 2rem;
    word-wrap: break-word;
  }
}

/* Shirts Section */
.shirts-section {
  padding: 80px 0;
  background-color: var(--white);
}

.shirts-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.shirts-section > .container > p {
  text-align: center;
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.shirt-card {
  background-color: var(--light-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.shirt-card.featured {
  border: 2px solid var(--secondary-color);
}

.shirt-image {
  height: 300px;
  overflow: hidden;
}

.shirt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.3s ease;
}

.shirt-card:hover .shirt-image img {
  transform: scale(1.05);
}

.shirt-info {
  padding: 30px;
}

.shirt-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.shirt-info p {
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.6;
}

.shirt-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.shirts-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-item {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--light-color);
  border-radius: 8px;
}

.info-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.info-item p {
  color: var(--dark-color);
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for programming section */
@media (max-width: 768px) {
  .programming-grid {
    grid-template-columns: 1fr;
  }
  
  .day-card {
    margin-bottom: 30px;
  }
  
  .schedule-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .time {
    text-align: left;
    min-width: auto;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .shirts-grid {
    grid-template-columns: 1fr;
  }
  
  .shirts-info {
    grid-template-columns: 1fr;
  }
}


/* Option Header Styling */
.option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.option-icon {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--white);
}

.option-highlight {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, rgba(41, 65, 34, 0.95), rgba(22, 33, 20, 0.9));
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

/* Specific icon colors for each option */
.camping .option-icon {
  color: #228B22;
}

.casa-campo .option-icon {
  color: #8B4513;
}

.training-day .option-icon {
  color: #4682B4;
}


/* Modal Name Styling */
.modal-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(22, 33, 20, 0.95), rgba(41, 65, 34, 0.9));
  border-radius: 30px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 10;
}


/* Estilos específicos para seção de modalidades com fundo escuro */
.event-options h2 {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.event-options p {
  color: var(--light-color);
}

/* Melhorar contraste dos cards no fundo escuro */
.event-options .option-card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-options .option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

