/* ==========================================================================
   Aeronet - Design System e Estilos
   ========================================================================== */

/* Reset e Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.625;
  color: var(--color-black);
  background-color: var(--color-white);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* Design System - Variáveis CSS
   ========================================================================== */

:root {
  /* Cores */
  --color-primary: #FD3A00;
  --color-primary-strong: #FE3B01;
  --color-blue: #406AB4;
  --color-blue-2: #5B7EBD;
  --color-black: #0A0A0A;
  --color-gray-100: #F5F5F5;
  --color-white: #FFF;
  
  /* Border Radius */
  --radius-lg: 16px;
  --radius-sm: 10px;
  
  /* Sombras */
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .12);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, .10);
  
  /* Container */
  --container: 1200px;
  
  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transições */
  --transition: 0.25s ease;
}

/* Tipografia
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.286;
}

h3 {
  font-size: 1.375rem;
  line-height: 1.273;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.556;
}

.small {
  font-size: 0.875rem;
  line-height: 1.571;
}

/* Layout Utilitários
   ========================================================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.section {
  padding: 72px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.125rem;
  color: rgba(10, 10, 10, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Botões
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 200px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-primary-strong);
  border-color: var(--color-primary-strong);
  transform: translateY(-2px);
}

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

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

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

.btn--full-width {
  width: 100%;
}

.btn--gradient {
  background: linear-gradient(to right, #00A498, #016FB4);
  border: none;
}

.btn--gradient:hover {
  background: linear-gradient(to right, #008a7e, #014a8a);
  transform: translateY(-2px);
}

/* Cards
   ========================================================================== */

.card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition);
}

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

.card--course {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-2) 100%);
  color: var(--color-white);
  padding: 32px;
}

.card--course .card__title {
  color: var(--color-white);
  margin-bottom: 16px;
}

.card--course .card__description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

/* Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
}

.site-header.is-scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-primary);
}

.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
}

/* ==========================================================================
   BREAKPOINTS E RESPONSIVIDADE
   ========================================================================== */

/* Breakpoints */
/* Mobile: até 767px */
/* Tablet: 768px até 1023px */
/* Desktop: 1024px+ */

/* Menu Toggle (Hambúrguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-black);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

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

/* Estilos do Menu Mobile */
.nav__item--cta {
      margin-top: 1rem;
      display: none;
      cursor: pointer;
  }

.nav__link--cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav__item--cta {
      margin-top: 1rem;
  }

    .menu-toggle {
        display: flex;
    }
    
    .header__cta {
        display: none;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .header__nav.is-open {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav__link {
        font-size: 1.25rem;
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 0.5rem 1rem;
    }
    
    .nav__link:hover {
        color: var(--color-primary);
    }
    
    body.menu-open {
         overflow: hidden;
     }
 }

/* ==========================================================================
   HERO SECTION RESPONSIVA
   ========================================================================== */

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero__text {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero__title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero__description {
        font-size: 1.125rem;
        margin: 1.5rem 0 2rem;
    }
    
    .hero__image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile: até 767px */
 @media (max-width: 767px) {
     .hero {
         padding: 40px 0;
     }
     
     .hero__content {
         grid-template-columns: 1fr;
         gap: 2rem;
         text-align: center;
         align-items: center;
     }
     
     .hero__text {
         order: 1;
     }
     
     .hero__image {
         order: 2;
         max-width: 300px;
         margin: 0 auto;
     }
     
     .hero__badge {
         margin: 0 auto;
     }
     
     .hero__title {
         font-size: 2rem;
         line-height: 1.2;
         margin-bottom: 1rem;
     }
     
     .hero__title .highlight {
         display: block;
         margin-top: 0.5rem;
     }
     
     .hero__description {
         font-size: 1rem;
         line-height: 1.6;
         margin: 1rem 0 1.5rem;
     }
     
     .hero__social-proof {
          max-width: 75%;
          padding-bottom: 20px;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          background-color: #1a1a1a;
          border-radius: 16px;
          border-color: var(--color-primary);
          border-width: 1px;
          border-style: solid;
          justify-content: center;
          margin: 1.5rem 0;
     }
     
     .hero__cta {
         margin: 0 auto;
         justify-self: center;
     }
     
     .btn {
         padding: 14px 24px;
         font-size: 1rem;
     }
 }

/* Mobile: até 767px */
@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    
    .header__cta {
        display: none;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .header__nav.is-open {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav__link {
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 0.75rem 1.5rem;
    }
    
    .nav__link:hover {
        color: var(--color-primary);
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section
   ==========================================================================/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)), url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__badge {
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  width: fit-content;
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  color: white;
}

.hero__description {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  margin: 0;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 16px 0;
}

.hero__avatars {
  display: flex;
  margin-right: 12px;
}

.hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  margin-left: -8px;
  object-fit: cover;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__social-text {
  margin-top: -20px;
  font-size: 14px;
  color: white;
}

.hero__social-text strong {
  font-weight: 600;
}

.hero__social-text .hashtag {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__cta {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 6px 24px;
  border-radius: 200px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 8px;
  cursor: pointer;
}

.hero__cta:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Seções de Conteúdo
   ========================================================================== */

/* Seção Cursos
   ========================================================================== */

.courses {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
}

.courses .section__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.courses .text-primary {
  color: var(--color-primary);
}

.courses .section__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* Filtros de Cursos */
.courses__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.filter-btn--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.filter-btn--active:hover {
  background: var(--color-primary-strong);
  border-color: var(--color-primary-strong);
  color: var(--color-white);
}

.filter-btn[data-filter="informatica"]:hover,
.filter-btn[data-filter="informatica"].filter-btn--active {
  background-color: #5B7EBD;
  border-color: #5B7EBD;
  color: white;
}

.filter-btn[data-filter="tecnologia"]:hover,
.filter-btn[data-filter="tecnologia"].filter-btn--active {
  background-color: #32CD32;
  border-color: #32CD32;
  color: white;
}

.filter-btn[data-filter="gestao"]:hover,
.filter-btn[data-filter="gestao"].filter-btn--active {
  background-color: #eab308;
  border-color: #eab308;
  color: white;
}

.filter-btn[data-filter="ingles"]:hover,
.filter-btn[data-filter="ingles"].filter-btn--active {
  background-color: #ef4444;
  border-color: #ef4444;
  color: white;
}

/* Cores padronizadas por categoria de curso */
.course-card[data-categoria="informatica"] {
  background: linear-gradient(135deg, #406AB4 0%, #5B7EBD 100%);
}

.course-card[data-categoria="tecnologia"] {
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.course-card[data-categoria="gestao"] {
  background: linear-gradient(135deg, #eab308 0%, #fbbf24 100%);
}

.course-card[data-categoria="ingles"] {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.course-card {
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Courses Carousel Styles - Based on Gallery Carousel */
.courses__carousel {
  position: relative;
  width: 100%;
  max-width: none;
}

.courses__carousel .carousel-container {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: none;
}

.courses__carousel .carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.courses__carousel .carousel-slide {
  min-width: 100%;
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 0 10px;
}

/* Desktop: 3 colunas */
.courses__carousel .carousel-slide {
  grid-template-columns: repeat(3, 1fr);
}

/* Tablet: 2 colunas */
@media (max-width: 1200px) {
  .courses__carousel .carousel-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 coluna */
@media (max-width: 768px) {
  .courses__carousel .carousel-slide {
    grid-template-columns: 1fr;
  }
}

.courses__carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.courses__carousel .carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.courses__carousel .carousel-btn--prev {
  left: 10px;
}

.courses__carousel .carousel-btn--next {
  right: 10px;
}

.courses__carousel .carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.courses__carousel .carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(64, 106, 180, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.courses__carousel .carousel-indicator.active {
  background: var(--color-primary);
}

.courses__carousel .carousel-indicator:hover {
  background: rgba(64, 106, 180, 0.7);
}

.courses__carousel .carousel-indicator.active:hover {
  background: var(--color-primary);
}

/* Hide navigation buttons when not needed */
.courses__carousel.single-slide .carousel-btn,
.courses__carousel.single-slide .carousel-indicators {
  display: none;
}

/* Carrossel de Cursos - Nova implementação baseada na galeria */

.course-card {
  background: #1F50A8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.course-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-card__image img {
  transform: scale(1.05);
}

.course-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-primary);
  color: white;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.course-card__badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.course-card__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.course-card__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-card__description {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex: 1;
}

.course-card__cta {
  display: block;
  color:var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 12px 20px;
  border: 2px solid white;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}

.course-card__cta:hover {
  background: white;
  color: var(--color-blue);
  transform: translateY(-2px);
}

.courses__cta {
  text-align: center;
  margin-top: 32px;
  cursor: pointer;
}

.courses__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border: none;
  box-shadow: 0 4px 20px rgba(253, 58, 0, 0.3);
}

.courses__view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.courses__view-all::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  border-radius: 50%;
}

.courses__view-all:hover::before {
  opacity: 1;
}

.courses__view-all:hover::after {
  width: 300px;
  height: 300px;
}

.courses__view-all:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(253, 58, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
}

.courses__view-all svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.courses__view-all:hover svg {
  transform: translateX(4px);
}

.courses__view-all span {
  position: relative;
  z-index: 2;
}

.reviews__grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: linear-gradient(135deg, #00A597 0%, #006CB5 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  min-height: 400px;
  max-height: 500px;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 165, 151, 0.3);
}

.review-card__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__quote {
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.95;
  flex: 1;
  overflow-y: auto;
  max-height: 240px;
  padding-right: 8px;
}

/* Estilo personalizado para a barra de scroll dos depoimentos */
.review-card__quote::-webkit-scrollbar {
  width: 6px;
}

.review-card__quote::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.review-card__quote::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.review-card__quote::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.review-card__author {
  font-weight: 600;
  font-size: 18px;
  margin-top: auto;
}

.review-card__unit {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 4px;
}

/* Seção de Unidades */
.branches {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
}

.branches__header {
  text-align: center;
  margin-bottom: 48px;
}

.branches__title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.branches__title .highlight {
  color: var(--color-primary);
}

.branches__description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Tabs para mobile */
.branches__tabs {
  display: none;
  margin-bottom: 32px;
}

.branches__tab-list {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 4px;
  gap: 4px;
}

.branches__tab {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.branches__tab.active {
  background: var(--color-primary);
  color: white;
}

.branches__tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Layout desktop/tablet */
.branches__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}

.branches__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Conteúdo mobile */
.branches__mobile-content {
  display: none;
}

.branches__mobile-card {
  overflow: scroll;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.branches__mobile-card h3 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.branches__mobile-card .address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.branches__mobile-card .instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.branches__mobile-card .instagram:hover {
  color: var(--color-primary-strong);
}

.branches__mobile-map {
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
}

.branches__mobile-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

.branches__mobile-gallery .gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.branches__mobile-gallery .gallery-item:hover {
  transform: scale(1.05);
}

.branches__mobile-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branches__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.branch-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.branch-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.branch-card.active {
  background: rgba(253, 58, 0, 0.1);
  border-color: var(--color-primary);
}

.branch-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branch-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

.branch-card__address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.branch-card__instagram {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  margin: 0;
}

.branch-card__instagram:hover {
  text-decoration: underline;
}

.branch-card__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.branches__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: none;
}

.branches__map {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.branches__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  min-height: 150px;
}

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

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item--video {
  position: relative;
}

.gallery-item__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Gallery Carousel Styles */
.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: none;
}

.carousel-container {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.carousel-slide--mobile {
  grid-template-columns: repeat(2, 1fr);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.carousel-btn--prev {
  left: 10px;
}

.carousel-btn--next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicator.active {
  background: var(--color-primary);
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-indicator.active:hover {
  background: var(--color-primary);
}

.gallery__grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 960px) {
    .branches__gallery {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .carousel-slide {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .carousel-slide--mobile {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Seção Parceiros
   ========================================================================== */

.partners {
  background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
  color: var(--color-white);
}

.partners__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: var(--color-white);
}

.partners__title-highlight {
  color: var(--color-primary);
}

.partners__subtitle {
  text-align: center;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.8);
}

.partners__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.partners__row {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.partners__row--2 {
  max-width: 400px;
}

.partners__row--3 {
  max-width: 600px;
}

.partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  background: var(--color-gray-100);
  border: 2px dashed #999999;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: #666666;
  font-size: 14px;
  transition: all var(--transition);
}

.partners__logo:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Formulário de Contato
   ========================================================================== */

.contact {
  background-image: url('../img/bg-depoimentos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact__text {
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__form {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-black);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E5E5;
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: border-color var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form__privacy {
  margin-bottom: 24px;
  color: rgba(10, 10, 10, 0.7);
}

/* Footer
   ========================================================================== */

.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 48px 0 0px;
}

/* Utilitário: impedir scroll do body quando modal aberto */
body.modal-open {
  overflow: hidden;
}

/* Black Friday Modal overrides */
#blackfriday-modal .modal__content {
  max-width: 540px;
  width: 92vw;
  height: 80vh;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

#blackfriday-modal .modal__body {
  padding: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

#blackfriday-modal .modal__body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo centralizada */
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.footer__logo img {
  max-width: 150px;
  height: auto;
}

/* 3 colunas de conteúdo */
.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 32px;
}

.footer__column {
  text-align: left;
}

.footer__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-white);
}

/* Links rápidos */
.footer__links {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 8px;
}

.footer__links a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--transition);
  opacity: 0.9;
}

.footer__links a:hover {
  opacity: 1;
}

/* Endereços das unidades */
.footer__addresses {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__address {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.footer__address strong {
  color: var(--color-white);
  font-weight: 600;
}

/* Redes sociais */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__social a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--transition);
  opacity: 0.9;
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.footer__social a:hover {
  opacity: 1;
}

/* Divisor */
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 32px 0 24px;
}

/* Links de políticas */
.footer__policies {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer__policies a {
  display: flex;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--transition);
  opacity: 0.9;
  font-size: 14px;
}

.footer__policies a:hover {
  opacity: 1;
}

/* Copyright */
.footer__bottom {
  text-align: center;
  opacity: 0.8;
  font-size: 14px;
}

/* Assinatura */
.signature {
  background: #000;
  display: flex;
  justify-content: center;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px;
}

.signature a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--transition);
  opacity: 0.9;
}

.signature a:hover {
  opacity: 1;
}

/* Responsividade
   ========================================================================== */

/* Responsividade */

@media (max-width: 960px) {
  .section {
    padding: 48px 0;
  }
  
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero__text {
    order: 1;
  }
  
  .hero__image {
    order: 2;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .courses__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  
  .course-card {
    min-width: calc(100vw - 80px);
    max-width: 400px;
    margin: 0 auto;
  }
  
  .courses__navigation {
    margin-top: 24px;
  }
  
  .courses__nav-btn {
    width: 44px;
    height: 44px;
  }
  
  .courses__indicators {
    gap: 8px;
    margin-top: 16px;
  }
  
  .courses__indicator {
    width: 8px;
    height: 8px;
  }
  
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .branches__content {
    grid-template-columns: 1fr;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners__row {
    gap: 32px;
  }
  
  .partners__logo {
    width: 100px;
    height: 70px;
    font-size: 12px;
  }
  
  .contact__content {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer__column {
    text-align: center;
  }
  
  .footer__policies {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav__list {
    gap: 16px;
  }
}

@media (max-width: 480px) {
    .courses__grid {
        padding: 0 16px;
    }
    
    .course-card {
        min-width: calc(100vw - 64px);
        max-width: 320px;
    }
    
    .courses__nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero__content {
    order: 1;
  }
  
  .hero__image {
    order: 2;
  }
  
  .hero__title {
    font-size: 36px;
  }
  
  .hero__description {
    font-size: 16px;
  }
  
  /* Responsividade Seção de Unidades */
  .branches__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .branches__title {
    font-size: 28px;
  }
  
  .branches__description {
    font-size: 15px;
  }
  
  .branch-card {
    padding: 20px;
    gap: 16px;
  }
  
  .branch-card__logo {
    width: 50px;
    height: 50px;
  }
  
  .branches__map {
    height: 250px;
  }
  
  .branches__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item {
    min-height: 120px;
  }
  
  /* Carrossel Responsivo */
  .courses__carousel {
    gap: 12px;
  }
  
  .carousel__btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel__btn svg {
    width: 20px;
    height: 20px;
  }
 
  .hero__avatars {
    margin-top: -20px;
    max-width: 12%;
    justify-content: center;
  }
  
  /* Responsividade Seção de Parceiros */
  .partners__row {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .partners__row--3 {
    max-width: 100%;
  }
  
  .partners__row--2 {
    max-width: 100%;
  }
  
  .partners__logo {
    width: 80px;
    height: 60px;
    font-size: 10px;
  }
  
  .hero__avatar {
    width: 36px;
    height: 36px;
  }
  
  .hero__social-text {
    text-align: center;
    font-size: 0.8rem;
  }
  
  .hero__cta {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* .courses__grid, */
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    padding: 24px;
    gap: 20px;
    min-height: 350px;
    max-height: 450px;
  }
  
  .review-card__image {
    width: 70px;
    height: 70px;
  }
  
  .review-card__quote {
    font-size: 15px;
    max-height: 200px;
    padding-right: 8px;
  }
  
  .review-card__author {
    font-size: 16px;
  }
  
  .review-card__unit {
    font-size: 13px;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .header__content {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .nav__list {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .btn--large {
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* Estados de Loading e Feedback
   ========================================================================== */

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.success {
  color: #10B981;
}

.error {
  color: #EF4444;
}

/* Acessibilidade
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Animações
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Páginas de Políticas
   ========================================================================== */

.policy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.policy-header {
  background: var(--color-white);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 100;
}

.policy-nav {
  padding: 1rem 0;
}

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

.nav-container .logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-black);
  transition: 0.3s;
}

.policy-main {
  flex: 1;
  padding: 3rem 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  text-align: center;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 2rem 0 1rem 0;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 1.5rem 0 0.75rem 0;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #374151;
}

.policy-content ul,
.policy-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #374151;
}

.policy-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content strong {
  color: var(--color-black);
  font-weight: 600;
}

.company-info {
  background: var(--color-gray-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border-left: 4px solid var(--color-primary);
}

.company-info h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.company-info p {
  margin-bottom: 0.5rem;
}

/* Responsividade para páginas de políticas */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .policy-content h1 {
    font-size: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.5rem;
  }
  
  .company-info {
    padding: 1.5rem;
  }
}

/* Estilos para notificações toast */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-width: 300px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast--success {
  background-color: #10b981;
  color: white;
}

.toast--error {
  background-color: #ef4444;
  color: white;
}

.toast--info {
  background-color: var(--color-blue);
  color: white;
}

.toast__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast__message {
  flex: 1;
}

.toast__close {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.toast__close:hover {
  opacity: 1;
}

/* Responsividade para toast */
@media (max-width: 480px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
}

/* Estado de loading para botão */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Estilos para textarea */
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__textarea::placeholder {
    color: #6c757d;
}

/* Media Queries para Hero */
@media (max-width: 1023px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero__left {
    order: 2;
  }
  
  .hero__right {
    order: 1;
  }
  
  .hero__title {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .hero__description {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero__content {
    align-items: center;
  }
  
  .hero__badge {
    margin: 0 auto;
  }
  
  .hero__title {
    font-size: 28px;
  }
  
  .hero__cta {
    margin: 0 auto;
    justify-self: center;
  }
}

/* Media Queries para Unidades */
@media (max-width: 1023px) {
  .branches__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .branches__right {
    order: -1;
  }
}

@media (max-width: 767px) {
  .branches__tabs {
    display: block;
  }
  
  .branches__layout {
    display: none;
  }
  
  .branches__mobile-content {
    display: block;
  }
  
  .branches__header {
    margin-bottom: 32px;
  }
  
  .branches__title {
    font-size: 24px;
  }
  
  .branches__description {
    font-size: 14px;
  }
}

/* Estilos para Recursos do Curso */
.course-resources {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.course-resources__title {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
}

.course-resources__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resource-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-primary);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* Estilos para Módulos */
.modulo-item {
  padding: 16px 0;
  border-bottom: 1px solid #e1e5e9;
}

.modulo-item:last-child {
  border-bottom: none;
}

.modulo-title {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
}

.modulo-info {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #666666;
}

.modulo-aulas,
.modulo-horas {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFF;
}

.modulo-aulas::before {
  content: "📖";
}

.modulo-horas::before {
  content: "⏱️";
}

/* Module and Phase Title Colors */
.modulo-title,
.fase-title {
  color: white !important;
}

.modulo-aulas,
.modulo-horas {
  color: white !important;
}

/* Fase Styles */
.fase-item {
  margin-bottom: 20px;
}

.fase-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-gray-100);
}

.fase-modulos {
  padding-left: 16px;
}

.fase-modulos .modulo-title {
  font-size: 14px;
}

/* Modulo Observacao */
.modulo-obs {
  font-size: 11px;
  color: #666;
  font-style: italic;
}

.modulo-obs::before {
  content: "ℹ️";
  margin-right: 4px;
}

@media (max-width: 767px) {
  .course-resources {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .course-resources__title {
    font-size: 14px;
  }
  
  .resource-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .modulo-item {
    padding: 12px 0;
  }
  
  .modulo-title {
    font-size: 13px;
  }
  
  .modulo-info {
    gap: 12px;
    font-size: 11px;
  }
  
  .fase-title {
    font-size: 14px;
  }
  
  .fase-modulos {
    padding-left: 12px;
  }
}
