/* =========================================
   HOME PAGE - CSS Exclusivo
   Zait.ag - Pulverizando Tecnologia
   ========================================= */

/* =========================================
   VARIÁVEIS DE COR
   ========================================= */
:root {
  --home-green-light: #B9CF38;
  --home-green-medium: #727927;
  --home-green-dark: #606721;
  --home-dark-1: #2C2C2C;
  --home-dark-2: #1A1A1A;
  --home-dark-3: #100F0F;
  --home-light-1: #DFDFDF;
  --home-light-2: #ABACAD;
  --home-light-3: #676767;
  --home-white: #FFFFFF;
  --home-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET E BASE
   ========================================= */
.home-page {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

/* =========================================
   HERO SECTION - ÉPICO
   ========================================= */
.home-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(16, 15, 15, 0.1) 0%,
    rgba(16, 15, 15, 0.3) 50%,
    rgba(16, 15, 15, 0.6) 100%
  );
  z-index: 2;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
  bottom: 180px;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(185, 207, 56, 0.15);
  border: 1px solid rgba(185, 207, 56, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease 0.3s both;
}

.home-hero-badge span {
  color: var(--home-green-light);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-hero-subtitle-text {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--home-white);
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.4s both;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: var(--home-green-light);
  background: linear-gradient(135deg, var(--home-green-light), var(--header-green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.6s both;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.home-hero-title strong {
  display: block;
  font-weight: 800;
  color: var(--home-green-light);
  background: linear-gradient(135deg, var(--home-green-light), var(--header-green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--home-light-1);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.7s both;
}

.home-hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 60px;
  text-decoration: none;
  transition: var(--home-transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.home-btn-primary {
  background: linear-gradient(90deg, var(--home-green-light), var(--header-green-accent));
  color: var(--home-dark-3);
  border-color: var( --home-green-light);
}

.home-btn-primary:hover {
  border-color: var(--home-green-medium);
}

.home-btn-secondary {
  background: transparent;
  color: var(--home-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.home-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--home-white);
}

.home-btn svg {
  width: 20px;
  height: 20px;
}

.home-hero-scroll {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease 1.2s both;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.home-hero-scroll:hover {
  opacity: 0.8;
}

.home-hero-scroll:hover span {
  color: var(--home-light-1);
}

.home-hero-scroll span {
  font-size: 0.75rem;
  color: var(--home-light-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.home-hero-scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.home-hero-scroll-icon::before {
  content: '';
  width: 4px;
  height: 10px;
  background: var(--home-green-light);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(15px); opacity: 0.3; }
}

/* =========================================
   STATS BAR - IMPACTANTE
   ========================================= */
.home-stats-bar {
  background: var(--home-light);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.home-stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-stat-item {
  text-align: center;
  padding: 20px;
}

.home-stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--home-dark-3);
  line-height: 1;
  margin-bottom: 10px;
}

.home-stat-label {
  font-size: 0.95rem;
  color: var(--home-dark-1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   SOBRE NÓS - APRESENTAÇÃO
   ========================================= */
.home-about-section {
  background: #0a0808;
  padding: 0px 0 20px 0;
  position: relative;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-about-label {
  display: inline-block;
  color: var(--home-green-light);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.home-about-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--home-white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.home-about-title span {
  color: var(--home-green-light);
}

.home-about-text {
  color: var(--home-light-2);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.home-about-text:first-of-type {
  margin-top: 20px;
}

.home-about-text:last-of-type {
  margin-bottom: 40px;
}

.home-about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px 0;
}

.home-about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: var(--home-transition);
  width: 85%;
  height: 280px;
}

.home-about-image:first-child {
  align-self: flex-start;
  margin-bottom: -10px;
  z-index: 3;
}

.home-about-image:nth-child(2) {
  align-self: flex-end;
  margin-bottom: -20px;
  z-index: 2;
}

.home-about-image:nth-child(3) {
  align-self: flex-start;
  z-index: 1;
}

.home-about-image:hover {
  transform: translateY(-15px) scale(1.02);
  z-index: 10;
}

.home-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--home-transition);
}

.home-about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: var(--home-transition);
  z-index: 1;
}

.home-about-image:hover::before {
  opacity: 1;
}

.home-about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--home-green-light), var(--header-green-accent));
  padding: 25px 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.home-about-floating-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--home-dark-3);
  line-height: 1;
}

.home-about-floating-label {
  font-size: 0.85rem;
  color: var(--home-dark-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   SOLUÇÕES - CARDS PREMIUM
   ========================================= */
.home-solutions-section {
  background: var(--home-dark-2);
  padding: 60px 0;
}

.home-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.home-section-label {
  display: inline-block;
  color: var(--home-green-light);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--home-white);
  font-weight: 700;
  line-height: 1.2;
}

.home-section-title span {
  color: var(--home-green-light);
}

.home-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.home-solution-card {
  background: linear-gradient(180deg, var(--home-dark-1) 0%, var(--home-dark-3) 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(185, 207, 56, 0.1);
  transition: var(--home-transition);
  position: relative;
  overflow: hidden;
}

.home-solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--home-green-light), var(--home-green-medium));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--home-transition);
}

.home-solution-card:hover {
  transform: translateY(-10px);
  border-color: rgba(185, 207, 56, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.home-solution-card:hover::before {
  transform: scaleX(1);
}

.home-solution-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(185, 207, 56, 0.2), rgba(185, 207, 56, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--home-transition);
}

.home-solution-card:hover .home-solution-icon {
  background: linear-gradient(135deg, rgba(185, 207, 56, 0.3), rgba(185, 207, 56, 0.1));
}

.home-solution-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--home-green-light);
}

.home-solution-title {
  font-size: 1.5rem;
  color: var(--home-white);
  font-weight: 700;
  margin-bottom: 20px;
}

.home-solution-desc {
  color: var(--home-light-2);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================
   HIGHLIGHT TEXT - SEÇÃO DE DESTAQUE
   ========================================= */
.inst-highlight-text {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.inst-highlight-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 207, 56, 0.3), transparent);
}

.inst-highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 207, 56, 0.3), transparent);
}

.inst-highlight-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.inst-highlight-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--home-dark-2);
}

.inst-highlight-emphasis {
  color: var(--home-green-medium);
  display: inline-block;
  position: relative;
  padding-bottom: 30px;
}

.inst-highlight-emphasis::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--home-green-light), var(--home-green-medium));
  border-radius: 2px;
}

.inst-highlight-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  line-height: 1.8;
  color: var(--home-dark-1);
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================
   CULTURAS - GRID VISUAL
   ========================================= */
.home-cultures-section {
  background: linear-gradient(135deg, var(--home-dark-3) 0%, var(--home-dark-2) 50%, var(--home-dark-1) 100%);
  padding: 60px 0;
  position: relative;
}

.home-cultures-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(185, 207, 56, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(185, 207, 56, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.home-cultures-section .home-section-label {
  color: var(--home-green-light);
}

.home-cultures-section .home-section-title {
  color: var(--home-white);
}

.home-cultures-section .home-section-title span {
  color: var(--home-green-light);
}

.home-cultures-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.home-culture-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--home-transition);
  backdrop-filter: blur(10px);
}

.home-culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(185, 207, 56, 0.2);
  border-color: var(--home-green-light);
  background: linear-gradient(135deg, rgba(185, 207, 56, 0.1), rgba(185, 207, 56, 0.05));
}

.home-culture-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--home-green-light), var(--header-green-accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--home-transition);
}

.home-culture-card:hover .home-culture-icon {
  transform: rotate(-5deg) scale(1.1);
}

.home-culture-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--home-white);
}

.home-culture-title {
  font-size: 0.95rem;
  color: var(--home-white);
  font-weight: 600;
}

/* =========================================
   STAKEHOLDERS - SHOWCASE
   ========================================= */
.home-stakeholders-section {
  background: var(--home-dark-3);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.home-stakeholders-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  overflow: hidden;
}

.home-stakeholders-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-stakeholder-card {
  flex: 0 0 calc(33.333% - 25px);
  min-width: calc(33.333% - 25px);
  max-width: calc(33.333% - 25px);
  background: var(--home-dark-2);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--home-transition);
}

.home-stakeholder-card:hover {
  transform: translateY(-10px);
  border-color: rgba(185, 207, 56, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.home-stakeholder-image {
  height: 220px;
  overflow: hidden;
}

.home-stakeholder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--home-transition);
}

.home-stakeholder-content {
  padding: 30px;
}

.home-stakeholder-title {
  font-size: 1.25rem;
  color: var(--home-white);
  font-weight: 700;
  margin-bottom: 15px;
}

.home-stakeholder-desc {
  color: var(--home-light-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.home-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

.home-carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--home-transition);
}

.home-carousel-btn:hover {
  background: var(--home-green-light);
  border-color: var(--home-green-light);
}

.home-carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--home-white);
  transition: var(--home-transition);
}

.home-carousel-btn:hover svg {
  fill: var(--home-dark-3);
}

.home-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.home-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--home-transition);
}

.home-carousel-dot.active {
  background: var(--home-green-light);
  width: 36px;
  border-radius: 6px;
}

/* =========================================
   DEPOIMENTOS - TESTEMUNHOS
   ========================================= */
.home-testimonials-section {
  background: linear-gradient(135deg, #f5f5f5, #fff);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.home-testimonials-section .home-section-label {
  color: var(--home-green-dark);
}

.home-testimonials-section .home-section-title {
  color: var(--home-dark-3);
}

.home-testimonials-section .home-section-title span {
  color: var(--home-green-medium);
}

.home-testimonials-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  overflow: hidden;
}

.home-testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-testimonial-card {
  flex: 0 0 calc(50% - 15px);
  min-width: calc(50% - 15px);
  max-width: calc(50% - 15px);
  background: var(--home-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--home-transition);
  position: relative;
}

.home-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: rgba(185, 207, 56, 0.15);
  line-height: 1;
  font-weight: bold;
  z-index: 0;
}

.home-testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 207, 56, 0.3);
}

.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.home-testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--home-green-light);
}

.home-testimonial-name {
  font-size: 1.1rem;
  color: var(--home-dark-2);
  font-weight: 700;
  margin-bottom: 5px;
}

.home-testimonial-role {
  font-size: 0.875rem;
  color: var(--home-green-dark);
  font-weight: 500;
  line-height: 1.4;
}

.home-testimonial-text {
  color: var(--home-dark-1);
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Variantes de botões e dots para paleta clara */
.home-carousel-btn-light {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}

.home-carousel-btn-light:hover {
  background: var(--home-green-light);
  border-color: var(--home-green-light);
}

.home-carousel-btn-light svg {
  fill: var(--home-dark-3);
  stroke: none;
}

.home-carousel-btn-light:hover svg {
  fill: var(--home-dark-3);
}

.home-carousel-dots-light .home-carousel-dot {
  background: rgba(0, 0, 0, 0.15);
}

.home-carousel-dots-light .home-carousel-dot.active {
  background: var(--home-green-light);
}

/* =========================================
   YOUTUBE SECTION - CANAL
   ========================================= */
.home-youtube-section {
  background: var(--home-dark-2);
  padding: 80px 0;
}

.home-youtube-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.home-youtube-content-centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.home-youtube-info h3 {
  font-size: 2rem;
  color: var(--home-white);
  font-weight: 700;
  margin-bottom: 20px;
}

.home-youtube-info p {
  color: var(--home-light-2);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.home-youtube-stats {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  justify-content: center;
}

.home-youtube-stat {
  text-align: center;
}

.home-youtube-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--home-green-light);
}

.home-youtube-stat-label {
  font-size: 0.9rem;
  color: var(--home-light-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.home-youtube-embed {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 40px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.home-youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-youtube-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--home-transition);
  text-transform: uppercase;
}

.home-youtube-btn-primary {
  background: #FF0000;
  color: var(--home-white);
}

.home-youtube-btn-primary:hover {
  background: #e90000;
  transform: translateY(-3px);
}

.home-youtube-btn-secondary {
  background: transparent;
  color: var(--home-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.home-youtube-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--home-white);
}

.home-youtube-btn svg {
  width: 20px;
  height: 20px;
}

/* =========================================
   REDES SOCIAIS - CONEXÃO
   ========================================= */
.home-social-section {
  background: var(--home-dark-3);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home-social-content {
  text-align: center;
}

.home-social-title {
  font-size: 1.5rem;
  color: var(--home-white);
  font-weight: 600;
  margin-bottom: 40px;
}

.home-social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.home-social-link {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--home-transition);
  color: var(--home-green-light);
}

.home-social-link:hover {
  background: var(--home-green-light);
  border-color: var(--home-green-light);
  transform: translateY(-5px);
  color: var(--home-dark-3);
}

.home-social-link svg {
  width: 28px;
  height: 28px;
  transition: var(--home-transition);
}

/* Manter compatibilidade com img caso ainda existam */
.home-social-link img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: var(--home-transition);
}

.home-social-link:hover img {
  filter: brightness(0);
}

/* =========================================
   CTA FINAL - CONTATO
   ========================================= */
.home-cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.home-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23000' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.home-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--home-dark-3);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.home-cta-text {
  color: var(--home-dark-1);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--home-dark-3);
  color: var(--home-white);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 60px;
  text-decoration: none;
  transition: var(--home-transition);
}

.home-cta-btn:hover {
  background: var(--home-dark-2);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.home-cta-btn svg {
  width: 24px;
  height: 24px;
}

.home-cta-visual {
  text-align: center;
}

.home-cta-logo {
  max-width: 180px;
  margin: 0 auto;
  filter: brightness(0);
  opacity: 0.2;
}

/* =========================================
   ANIMAÇÕES
   ========================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 1200px) {
  .home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .home-solutions-grid {
    grid-template-columns: 1fr;
  }

  .home-cultures-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-stakeholder-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .home-about-grid,
  .home-youtube-content,
  .home-cta-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    margin: 0 20px;
  }

  .home-about-visual {
    order: -1;
    padding: 20px 0;
  }

  .home-about-image {
    width: 90%;
    height: 240px;
  }

  .home-solution-card {
    margin: 0 20px;
  }

  .home-about-image:first-child,
  .home-about-image:nth-child(2) {
    margin-bottom: -40px;
  }

  .home-testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .home-testimonials-carousel {
    padding: 0 50px;
  }

  .home-stakeholder-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .home-stakeholders-carousel {
    padding: 0 50px;
  }

  .home-cta-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-solutions-grid {
    grid-template-columns: 1fr;
  }

  .home-cultures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-stakeholder-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .home-stakeholders-carousel {
    padding: 0 50px;
  }

  .home-stakeholders-section .home-stakeholder-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .home-youtube-info {
    margin: 0 20px;
  }


  .mobile-first {
    display: none;
  }

  .home-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .home-hero-bg {
    height: 95vh;  
  }

  .home-hero-scroll {
    bottom: 80px;
  }

  .home-btn {
    padding: 10px;
    font-size: 0.8rem;
  }

  .home-hero {
    height: 95vh;
  }

  .home-youtube-stats {
    gap: 40px;
  }

  .home-youtube-stat-number {
    font-size: 2rem;
  }

  .home-about-visual {
    padding: 15px 0;
  }

  .home-about-image {
    width: 95%;
    height: 200px;
  }

  .home-hero-subtitle-text {
    font-size: 1.5rem;
  }

  .home-about-image:first-child,
  .home-about-image:nth-child(2),
  .home-about-image:nth-child(3) {
    align-self: center;
    margin-bottom: -30px;
  }

  .inst-highlight-text {
    padding: 80px 0;
  }

  .inst-highlight-title {
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .home-hero-title {
    font-size: 3rem;
  }
  
  .home-btn {
    padding: 14px
  };

  .home-social-title {
    margin: 0 20px 20px;
  }

  .home-hero-content {
    bottom: 130px;
  }

  .home-cultures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .home-culture-card {
    padding: 25px 15px;
  }

  .home-stakeholders-carousel,
  .home-testimonials-carousel {
    padding: 0 20px;
  }

  .home-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .home-social-links {
    gap: 15px;
  }

  .home-social-link {
    width: 50px;
    height: 50px;
  }

  .home-youtube-stats {
    gap: 30px;
    flex-direction: row;
  }

  .home-youtube-actions {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .home-youtube-btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 12px 16px;
    justify-content: center;
    white-space: nowrap;
  }
}

.home-youtube-section {
  position: relative;
}

.home-youtube-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.home-youtube-section .container {
  position: relative;
  z-index: 1;
}

.home-about-title span {
  line-height: 1.1;
}
