/* ===== VARIÁVEIS GLOBAIS ===== */
.rubik-title {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
}

:root {
  /* Cores principais */
  --color-primary: #ff6f16;
  --color-primary-dark: #e55a0a;
  --color-secondary: #ffc107;
  --color-secondary-light: #ffe066;
  --color-accent: #134bfb;
  --color-accent-dark: #4169e1;
  --color-fd: #ffae42;

  /* Cores de fundo e texto */
  --color-bg: #fff8f0;
  --color-bg-card: #fefefe;
  --color-text: #2d3748;
  --color-text-medium: #4a5568;
  --color-text-light: #718096;
  --color-text-white: #f7fafc;

  /* Cores de estado */
  --color-success: #48bb78;
  --color-error: #f56565;
  --color-warning: #ed8936;
  --color-info: #4299e1;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.05);

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Bordas */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;
}

/* Tema escuro */
[data-theme="dark"] {
  --color-bg: #0f172a;
  --color-bg-card: #1e293b;
  --color-text: #f1f5f9;
  --color-text-medium: #cbd5e1;
  --color-text-light: #94a3b8;
  --color-text-white: #f7fafc;
  --color-primary: #ff7a2d;
  --color-primary-dark: #ff5722;
  --color-secondary: #ffd54f;
  --color-secondary-light: #fff176;
  --color-accent: #8b5cf6;
  --color-accent-dark: #7c3aed;
}

/* ===== RESET E ESTILOS GERAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

button {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

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

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.section-title {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: var(--color-fd);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--border-radius-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-white);
  font-size: 1.2rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 111, 22, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 111, 22, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  transition: transform var(--transition-fast);
  margin-right: 30px;
  margin-left: 30px;
}

.logo-nav:hover {
  transform: scale(1.05);
}

.logo-icon-nav {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.logo-icon-nav-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50px;
}

.logo-text {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-size: 25px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0.6rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-size: 18px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--color-primary);
  background: rgba(255, 111, 22, 0.1);
}

.nav-link:hover::after {
  width: 80%;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  margin: 3px 0;
  transition: all var(--transition-fast);
  border-radius: var(--border-radius-sm);
}

/* ===== HERO SECTION ===== */
.hero-comunidade {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 98, 0, 0.8), rgba(255, 215, 96, 0.8));
  z-index: 1;
}

.hero-content {
  margin-top: 80px;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 2rem;
  animation: heroTitleAppear 1s ease-out 0.5s both;
  font-size: 60px;
}

.highlight {
  background: linear-gradient(135deg, #fefefe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: heroSubtitleAppear 1s ease-out 1s both;
}

@keyframes heroTitleAppear {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.2;
  animation: floatIcon 20s infinite linear;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 5s;
}

.floating-icon:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 10s;
}

.floating-icon:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 15s;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(90deg);
  }

  50% {
    transform: translateY(-40px) rotate(180deg);
  }

  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--color-bg-card);
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 3rem;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.testimonial-slide {
  display: none;
  animation: slideIn 0.5s ease-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card {
  background: var(--color-bg);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 300px;
}

.testimonial-photo {
  flex-shrink: 0;
}

.testimonial-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-secondary);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: serif;
}

.testimonial-info h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-size: 1.5rem;
}

.testimonial-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 15px;
}

.testimonial-btn {
  background: var(--color-secondary);
  color: var(--color-text);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.testimonial-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
  background: var(--color-bg);
}

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

.video-card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 111, 22, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  transition: all var(--transition-normal);
}

.video-card:hover .play-button {
  background: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
}

.video-content {
  padding: 1.5rem;
}

.video-title {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-size: 30px;
}

.video-description {
  color: var(--color-text-medium);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.video-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.video-tag {
  background: rgba(255, 111, 22, 0.1);
  color: var(--color-primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== IMPACT STORIES SECTION ===== */
.impact-stories-section {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
}

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

.impact-story-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  position: relative;
}

.impact-story-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.impact-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.impact-story-card h3 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-size: 30px;
}

.impact-story-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.impact-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/*VEM PRO EXTRA*/
.vem-pro-extra {
  padding: 50px;
  justify-items: center;
  justify-self: center;
}

.video-card2 {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  width: 800px;
}

.video-card2:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.video2-thumbnail {
  position: relative;
  overflow: hidden;
}

.video2-thumbnail img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

/* Adicionados estilos para a seção da camiseta */
.camiseta-section {
  background: var(--color-bg-card);
}

.camiseta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.camiseta-image img {
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.camiseta-info h3 {
  color: var(--color-primary);
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.camiseta-info p {
  color: var(--color-text-medium);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.camiseta-price {
  margin-bottom: 2rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: "Rubik", sans-serif;
}

.price-info {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-left: 0.5rem;
}

.camiseta-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  max-width: 300px;
  justify-content: center;
}

.camiseta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--color-bg-card);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-filter {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-full);
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-info h4 {
  margin-bottom: 0.5rem;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
}

.cta-button.primary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.social-link:hover {
  background: var(--color-secondary);
  color: var(--color-text);
  transform: translateY(-3px);
  border-color: var(--color-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.footer-bottom a {
  color: #ffae42;
}

/* ===== FLOATING BUTTONS ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 4rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: var(--color-text);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* ===== MODALS ===== */
.video-modal,
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.video-modal-content,
.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
}

.video-modal-content {
  aspect-ratio: 16 / 9;
}

.gallery-modal-content {
  text-align: center;
}

.video-modal-close,
.gallery-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.video-modal-close:hover,
.gallery-modal-close:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
}

#videoFrame {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-md);
}

#galleryModalImage {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius-md);
}

.gallery-modal-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-top: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Melhorados os media queries para responsividade completa */
/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Landscape */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo-nav {
    margin-right: 20px;
    margin-left: 20px;
  }

  .logo-text {
    font-size: 22px;
  }

  .nav-link {
    font-size: 16px;
  }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--color-bg-card);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left var(--transition-normal);
    border-top: 1px solid rgba(255, 111, 22, 0.1);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 1rem;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 18px;
    border-radius: var(--border-radius-md);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 2rem;
  }

  .testimonial-photo {
    margin-bottom: 1.5rem;
  }

  .testimonial-quote::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .scroll-top {
    bottom: 6rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .video-modal-content,
  .gallery-modal-content {
    width: 95%;
    margin: 1rem;
  }

  .video-modal-close,
  .gallery-modal-close {
    top: -40px;
    right: 10px;
  }

  .vem-pro-extra {
    padding: 30px 15px;
  }

  .video-card2 {
    width: 100%;
    max-width: 600px;
  }

  .video2-thumbnail img {
    height: 300px;
  }

  /* Responsividade da seção da camiseta */
  .camiseta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .camiseta-image {
    order: -1;
  }

  .camiseta-btn {
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .videos-grid,
  .impact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .gallery-filters {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .gallery-filter {
    width: 100%;
    max-width: 200px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-controls {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .impact-story-card {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .logo-nav {
    margin-right: 10px;
    margin-left: 10px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-icon-nav {
    width: 40px;
    height: 40px;
  }

  .nav-container {
    height: 70px;
    padding: 0 10px;
  }

  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .video2-thumbnail img {
    height: 250px;
  }

  .camiseta-info h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

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

  .video-card {
    margin: 0 0.5rem;
  }

  .video-title {
    font-size: 24px;
  }

  .impact-story-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .impact-story-card h3 {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 1rem;
    margin: 0 0.5rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .testimonial-quote::before {
    font-size: 3rem;
    top: -15px;
  }

  .gallery-item {
    margin: 0 0.5rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo-icon-nav {
    width: 35px;
    height: 35px;
  }

  .nav-container {
    height: 60px;
  }

  .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 1rem;
  }

  .nav-link {
    font-size: 16px;
    padding: 0.8rem;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  .vem-pro-extra {
    padding: 20px 10px;
  }

  .video2-thumbnail img {
    height: 200px;
  }

  .video-content {
    padding: 1rem;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 1rem;
    right: 1rem;
  }

  .floating-icon {
    font-size: 2rem;
  }

  .camiseta-info h3 {
    font-size: 1.3rem;
  }

  .camiseta-info p {
    font-size: 1rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .camiseta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .logo-text {
    font-size: 14px;
  }

  .nav-container {
    height: 55px;
  }

  .nav-menu {
    top: 55px;
    height: calc(100vh - 55px);
  }

  .video2-thumbnail img {
    height: 180px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .impact-story-card h3 {
    font-size: 20px;
  }

  .video-title {
    font-size: 20px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .price {
    font-size: 1.5rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --color-primary: #ff4500;
    --color-secondary: #ffd700;
    --color-accent: #4b0082;
  }
}

/* ===== FOCUS STYLES ===== */
*:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-primary-dark), var(--color-primary));
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateX(400px);
  transition: transform var(--transition-normal);
}

.notification.show {
  transform: translateX(0);
}

/* ===== PRINT STYLES ===== */
@media print {

  .header,
  .hamburger,
  .scroll-top,
  .video-modal,
  .gallery-modal,
  .floating-icons {
    display: none !important;
  }

  .hero-comunidade {
    height: auto;
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}

/* ===== RESPONSIVE HEADER STYLES ===== */

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .nav-container {
    padding: 0 15px;
    height: 70px;
  }

  .logo-nav {
    font-size: 1.8rem;
    margin-right: 20px;
    margin-left: 20px;
  }

  .logo-icon-nav {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .logo-text {
    font-size: 22px;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 16px;
    padding: 0.4rem 0.5rem;
  }
}

/* Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
  .nav-container {
    padding: 0 10px;
    height: 60px;
  }

  .logo-nav {
    font-size: 1.5rem;
    margin-right: 10px;
    margin-left: 10px;
  }

  .logo-icon-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .logo-text {
    font-size: 20px;
  }

  /* Hide desktop menu */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    gap: 2rem;
    transition: left var(--transition-normal);
    border-top: 1px solid rgba(255, 111, 22, 0.1);
  }

  [data-theme="dark"] .nav-menu {
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(255, 111, 22, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 18px;
    padding: 1rem 2rem;
    width: 80%;
    text-align: center;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 111, 22, 0.05);
    border: 1px solid rgba(255, 111, 22, 0.1);
  }

  .nav-link:hover {
    background: rgba(255, 111, 22, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }

  /* Show hamburger menu */
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Adjust hero content for mobile header */
  .hero-content {
    margin-top: 60px;
    padding: 0 1rem;
  }
}

/* Small Mobile Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0 8px;
    height: 55px;
  }

  .logo-nav {
    font-size: 1.3rem;
    margin-right: 5px;
    margin-left: 5px;
    gap: 0.5rem;
  }

  .logo-icon-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .logo-text {
    font-size: 18px;
  }

  .nav-menu {
    top: 55px;
    height: calc(100vh - 55px);
    padding-top: 1.5rem;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 16px;
    padding: 0.8rem 1.5rem;
    width: 90%;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .hero-content {
    margin-top: 55px;
    padding: 0 0.5rem;
  }
}

/* Landscape Mobile Styles */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .nav-menu {
    height: calc(100vh - 60px);
    padding-top: 1rem;
    gap: 1rem;
    overflow-y: auto;
  }

  .nav-link {
    padding: 0.6rem 1.5rem;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-nav:hover {
    transform: none;
  }
}

/* Prevent horizontal scroll on mobile */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .logo-icon-nav-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}