.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 181, 89, 0.15) 0%, rgba(203, 151, 84, 0.2) 100%),
              url('/assets/img/IMG-Hero_convert.webp') center center/cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(203, 151, 84, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 181, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(203, 151, 84, 0.05) 0%, transparent 50%);
  z-index: 3;
  animation: particleFloat 15s ease-in-out infinite;
}

/* ===== HERO CONTAINER ===== */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

/* ===== HERO LEFT COLUMN ===== */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: fit-content;
  animation: slideInLeft 1s ease-out;
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-highlight {
  display: inline;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(201, 181, 89, 0.3);
  transform: translateY(100%);
  animation: slideInUp 1s ease-out 0.4s forwards;
  white-space: nowrap;
}

.title-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  animation: slideInUp 1s ease-out 0.6s forwards;
}

.title-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(100%);
  animation: slideInUp 1s ease-out 0.8s forwards;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  animation: fadeIn 1s ease-out 1s both;
}

.hero-description strong {
  color: var(--secondary);
  font-weight: 600;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideInLeft 1s ease-out 1.2s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: slideInLeft 1s ease-out 1.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ===== HERO RIGHT COLUMN ===== */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out 0.5s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  width: 100%;
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.card-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.card-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.card-feature i {
  color: var(--primary);
  font-size: 1rem;
}

.card-footer {
  border-top: 1px solid rgba(203, 151, 84, 0.2);
  padding-top: 1.5rem;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(203, 151, 84, 0.3);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {  
  margin-top: 2rem;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  animation: fadeIn 1s ease-out 2s both;
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

.hero-section .hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: slideInLeft 1s ease-out 1.4s both;
}

.hero-section .hero-cta-primary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(203, 151, 84, 0.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.hero-section .hero-cta-primary:hover::before {
  left: 100%;
}

.hero-section .hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(203, 151, 84, 0.4);
}

.hero-section .hero-cta-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-section .hero-cta-arrow {
  transition: transform 0.3s ease;
}

.hero-section .hero-cta-primary:hover .hero-cta-arrow {
  transform: translateX(5px);
}

.hero-section .hero-cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-section .hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-section .hero-cta-primary,
  .hero-section .hero-cta-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 25px;
    min-height: 44px;
  }
}


/* ===== ANIMAÇÕES ===== */
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
  .hero-content {
    gap: 3rem;
  }
  
  .title-highlight {
    font-size: 3rem;
  }
  
  .title-main {
    font-size: 3.8rem;
  }
  
  .title-sub {
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 0 1.5rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-left {
    order: 2;
    gap: 2rem;
  }
  
  .hero-right {
    order: 1;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  
  
  .title-highlight {
    font-size: 2.8rem;
  }
  
  .title-main {
    font-size: 3.5rem;
  }
  
  .title-sub {
    font-size: 1.2rem;
  }
  
  .hero-description {
    margin: 0 auto;
  }
  
  .hero-features {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 80px;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-left {
    order: 1;
  }
  
  .hero-right {
    order: 2;
    display: none;
  }
 
  .hero-left .hero-card {
    order: 3;
  }
  
  .card-header {
    margin-bottom: 1.5rem;
  }
  
  .card-logo-image {
    width: 40px;
    height: 40px;
  }
  
  .card-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
  
  .card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .card-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .card-features {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .card-feature {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  
  .card-feature i {
    font-size: 0.9rem;
  }
  
  .card-footer {
    padding-top: 1.25rem;
  }
  
  .card-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  .title-highlight {
    font-size: 2.2rem;
  }
  
  .title-main {
    font-size: 2.8rem;
  }
  
  .title-sub {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .hero-features {
    gap: 0.75rem;
  }
  
  .feature-item {
    padding: 0.5rem 0.75rem;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* Centralização do scroll indicator */
  .scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    text-align: center;
  }
  
  .scroll-text {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .scroll-arrow {
    font-size: 1rem;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto; 
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 70px;
  }
  
  .hero-container {
    padding: 0 0.75rem;
  }
  
  .hero-content {
    gap: 1.5rem;
    padding: 0.5rem 0;
  }
  
  .hero-left {
    gap: 1.25rem;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .badge-icon {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .title-highlight {
    font-size: 1.8rem;
  }
  
  .title-main {
    font-size: 2.2rem;
  }
  
  .title-sub {
    font-size: 0.9rem;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .hero-features {
    gap: 0.75rem;
  }
  
  .feature-item {
    padding: 0.5rem 0.75rem;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
  }

  
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .hero-card {
    padding: 1.5rem;
    max-width: 320px;
    border-radius: 20px;
  }
  
  .card-header {
    margin-bottom: 1.5rem;
  }
  
  .card-logo-image {
    width: 40px;
    height: 40px;
  }
  
  .card-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
  
  .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .card-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  
  .card-features {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .card-feature {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  
  .card-feature i {
    font-size: 0.9rem;
  }
  
  .card-footer {
    padding-top: 1.25rem;
  }
  
  .card-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
  
  .scroll-text {
    font-size: 0.8rem;
  }
  
  .scroll-arrow {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .hero-container {
    padding: 0 0.5rem;
  }
  
  .title-highlight {
    font-size: 1.6rem;
  }
  
  .title-main {
    font-size: 2rem;
  }
  
  .title-sub {
    font-size: 0.8rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }

  .hero-card {
    padding: 1.25rem;
    max-width: 300px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-description {
    font-size: 0.8rem;
  }
  
  .card-feature {
    font-size: 0.75rem;
  }
  
  .card-button {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}