/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
label,
div,
a {
  user-select: none;
}

img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

h1 {
  font-size: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #c9a96e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8b7355;
}

/* Color Variables */
:root {
  --primary: #c9a96e;
  --primary-dark: #8b7355;
  --secondary: #2d2d2d;
  --background: #0a0a0a;
  --card-bg: #181818;
  --border: #2d2d2d;
  --text-muted: #b0b0b0;
  --white: #ffffff;
}

/* Typography */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white {
  color: var(--white);
}

.about {
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* Container */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

.bg-card {
  background-color: var(--card-bg);
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-fixed.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.logo-main {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

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

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--background);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 45, 45, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    var(--card-bg) 50%,
    var(--secondary) 100%
  );
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  width: auto;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  min-height: 4.5rem; /* altura fixa para evitar salto */
  line-height: 1.5; /* garanta espaçamento legível */
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.hero-card-content {
  text-align: center;
}

.hero-icon {
  font-size: 64px;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-card h3 {
  font-size: 24px;
  font-weight: 700;
}

.cursor {
  display: inline-block;
  width: 1px;
  background-color: white;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

.hero-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.floating-1 {
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 110, 0.2);
  top: -20px;
  right: -20px;
  animation: pulse 2s infinite;
}

.floating-2 {
  width: 60px;
  height: 60px;
  background: rgba(45, 45, 45, 0.3);
  bottom: -20px;
  left: -20px;
  animation: bounce 2s infinite;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--primary);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--secondary), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-placeholder {
  font-size: 48px;
  color: var(--text-muted);
}

.portfolio-item h3 {
  padding: 20px 20px 10px;
  font-size: 18px;
  font-weight: 600;
}

.portfolio-item p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Plans Grid */
.plans-grid {
  display: flex;
  gap: 15px;
  overflow-x: scroll;

  height: auto;

  /* Esconde a barra de rolagem */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge antigos */
}

.plans-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 18rem;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: auto;
}

.plan-card.popular {
  border-color: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: auto;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--background);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.plan-header {
  margin-bottom: 30px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
}

.period {
  font-size: 18px;
  color: var(--text-muted);
}

.plan-features {
  margin-bottom: 10px;
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature i {
  color: var(--primary);
  font-size: 14px;
}

.plan-btn {
  width: 100%;
}

/* Presentation Section */
.presentation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.presentation-video {
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--secondary), var(--border));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-icon {
  font-size: 64px;
  color: var(--primary);
}

.video-placeholder p {
  font-size: 18px;
  color: var(--text-muted);
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.requirement-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.requirement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.requirement-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--primary);
}

.requirement-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.requirement-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Section */
.contact-content {
  display: flex;
  justify-content: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  border-radius: 1rem;
  transition: 0.3s;
}

.contact-item:hover {
  background: #111111;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
}

.contact-details p {
  color: var(--text-muted);
}

.contact-form-container {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  width: 28rem;
  display: flex;
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.contact-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.story-item {
  position: relative;
  min-width: 20rem;
  max-width: 300px; /* ajuste conforme seu layout */
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
}

.story-video-wrapper {
  width: 100%;
  height: 100%;
}

.story-video {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  pointer-events: none; /* previne cliques no iframe */
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.story-overlay i {
  font-size: 2rem;
  color: white;
}

.contact-form-card p {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 60px 0;
}

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

.footer-description {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
}

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

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

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

.animate-glow {
  animation: glow 1.5s infinite alternate;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .presentation-content {
    grid-template-columns: 1fr;
  }

  .presentation-text {
    order: 2;
  }

  .presentation-video {
    order: 1;
    margin-bottom: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .section-description {
    font-size: 16px;
  }

  .services-grid,
  .portfolio-grid,
  .plans-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card.popular:hover {
    transform: translateY(-10px);
  }

  .contact-form-container {
    padding: 20px;
  }
}

/* Video Section Styles */
.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Services Detailed Grid */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-detailed-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
}

.service-details-card-wrapper {
  flex: 1;
}

/* Projects Stats */
.projects-stats {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.15);
}

.stat-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  width: 0%;
  transition: width 2s ease;
  position: relative;
}

.stat-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.stat-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Presentation Stories */
.presentation-stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.story-item {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.story-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-item:hover .story-overlay {
  opacity: 1;
}

.story-overlay i {
  font-size: 3rem;
  color: var(--white);
}

.video-placeholder-story {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--card-bg), var(--secondary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 2px dashed var(--border);
}

.video-placeholder-story i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.video-placeholder-story p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.video-placeholder-story span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Plan Subtitle */
.plan-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

/* Enhanced Animations */
.animate-active.animate-fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.animate-active.animate-fade-in-left {
  opacity: 1;
  transform: translateX(0);
}

.animate-active.animate-fade-in-right {
  opacity: 1;
  transform: translateX(0);
}

.animate-active.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-active.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

.image-slider-container {
  text-align: center;
}

.image-slider-container img {
  max-width: 20rem;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  transition: opacity 0.5s ease-in-out;
  animation: float 3s ease-in-out infinite;
}

.hero-slider-img {
  width: 17rem;
  height: 17rem;
  border-radius: 1.5rem;
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
  transition: opacity 0.5s ease-in-out;
}

/* Animação de flutuar */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 1024px) {
  .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .tiktok-embed {
    width: 50rem;
  }

  .story-video {
    width: 100%;
    height: 100%;
  }

  .story-item {
    min-width: 10rem;
  }

  .plan-card,
  .plan-card.popular {
    min-width: 19rem;
  }

  .image-slider-container img {
    margin-left: 8rem;
    max-width: 50rem;
    max-height: 500px;
  }

  .hero-slider-img {
    width: 32rem;
    height: 500px;
  }

  .service-detailed-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .service-detailed-card:hover::before {
    transform: scaleX(1);
  }

  .service-detailed-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(201, 169, 110, 0.2);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .presentation-stories {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
  }

  .services-detailed-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

@media (max-width: 480px) {
  .presentation-stories {
    grid-template-columns: 1fr;
  }
}
