<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff7a00;
  --primary-hover: #ff8f26;
  --dark-bg: #0f1115;
  --card-bg: #1a1d24;
  --text-gray: #cfcfcf;
  --border-radius: 16px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: white;
  line-height: 1.6;
}

/* IMAGE ANIMATIONS */
.animated-image {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatSoft 4s ease-in-out infinite;
}

.animated-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(255, 122, 0, 0.4);
  filter: brightness(1.1);
}

@keyframes floatSoft {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-15px);
  }
}

/* LOGO SPECIFIC */
.logo-image {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: rotateFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(255, 122, 0, 0.3));
}

.logo-image:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 20px 50px rgba(255, 122, 0, 0.6)) brightness(1.2);
}

@keyframes rotateFloat {
  0%, 100% { 
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-10px);
  }
  50% { 
    transform: translateY(-20px);
  }
  75% {
    transform: translateY(-10px);
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  margin-top: 80px;
  background: linear-gradient(180deg, #1a1d24, #0f1115);
  padding: 100px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(255, 122, 0, 0.2);
  display: block;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--primary-color);
}

/* SECTIONS */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: center;
  line-height: 1.8;
}

/* ABOUT SECTION */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: justify;
  line-height: 1.9;
}

.company-info {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.info-item strong {
  color: white;
  margin-right: 0.5rem;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

/* PRODUCTS SECTION */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
  transform: scaleX(0);
  transition: var(--transition);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 122, 0, 0.2);
}

.product-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-card .specs {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-align: left;
}

.product-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
  display: block;
}

.product-card p {
  color: var(--text-gray);
  line-height: 1.8;
  text-align: justify;
}

.product-badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.2);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* VIDEOS SECTION */
.videos-section {
  background: var(--card-bg);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--dark-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 122, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.video-thumbnail video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
}

.video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1d24, #0f1115);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.video-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-info h4 i {
  color: var(--primary-color);
}

.video-info p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}

/* CLIENTS SECTION */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.client-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
}

.client-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.client-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.client-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
}

/* ORDER SECTION */
.order-section {
  background: linear-gradient(135deg, #1a1d24, #0f1115);
}

.order-box {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.order-box label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-gray);
}

.order-box input,
.order-box select,
.order-box textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-bg);
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.order-box input:focus,
.order-box select:focus,
.order-box textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.order-box textarea {
  resize: vertical;
  min-height: 100px;
}

.price-display {
  background: rgba(255, 122, 0, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.price-display .label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.price-display .total {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-display .unit-price {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.whatsapp-btn {
  width: 100%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
}

.whatsapp-btn:hover {
  background: #20BA5A;
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

/* FOOTER */
footer {
  background: var(--card-bg);
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-section p,
.footer-section a {
  color: var(--text-gray);
  margin-bottom: 0.8rem;
  text-decoration: none;
  display: block;
  transition: var(--transition);
  line-height: 1.7;
  text-align: left;
}

.footer-section a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-section i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 0;
    gap: 0;
    transition: var(--transition);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    margin: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text p {
    text-align: left;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 1rem;
  }

  .products-grid,
  .videos-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .order-box {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section p,
  .footer-section a {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Reduzir animação em mobile para melhor performance */
  .animated-image,
  .logo-image {
    animation: none;
  }

  .animated-image:hover,
  .logo-image:hover {
    transform: scale(1.03);
  }

  /* Location section responsive */
  section > div > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* OFFERS CARDS */
.offer-card {
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
}

/* RESPONSIVE OFFERS */
@media (max-width: 768px) {
  .offer-card {
    margin-bottom: 20px;
  }
}
</style>