@import url("https://p.typekit.net/p.css?s=1&k=wur8omd&ht=tk&f=60677.60678.60681.60689.60691.60693.60695.60699.60700.60701&a=257891526&app=typekit&e=css");

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --color-red-brand: hsl(0, 100%, 40%); /* #CE0000 */
  --color-red-hover: hsl(0, 100%, 34%);
  --color-red-light: rgba(206, 0, 0, 0.07);
  --color-red-light-hover: rgba(206, 0, 0, 0.12);
  
  --color-dark-slate: hsl(222, 47%, 11%); /* #0f172a */
  --color-text-main: hsl(215, 25%, 27%); /* #334155 */
  --color-text-muted: hsl(215, 16%, 47%); /* #64748b */
  --color-text-light: hsl(210, 40%, 96%); /* #f1f5f9 */
  
  --color-bg-white: hsl(0, 0%, 100%);
  --color-bg-light: hsl(210, 40%, 98%); /* #f8fafc */
  --color-bg-border: hsl(214, 32%, 91%); /* #e2e8f0 */
  
  --color-whatsapp: hsl(142, 70%, 45%); /* #25D366 */
  --color-whatsapp-hover: hsl(142, 70%, 38%);
  
  /* Shadows - Premium and extremely smooth */
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 30px -10px rgba(15, 23, 42, 0.08), 
               0 4px 12px -5px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 30px 60px -15px rgba(15, 23, 42, 0.12), 
               0 10px 25px -10px rgba(15, 23, 42, 0.05);
  --shadow-red-glow: 0 20px 40px -15px rgba(206, 0, 0, 0.15);
  
  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Fonts - Usando a fonte Nexa do manual da marca */
  --font-display: 'nexa', sans-serif;
  --font-body: 'nexa', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-dark-slate);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accent texts */
.txt-destaque {
  color: var(--color-red-brand);
  position: relative;
  display: inline-block;
}

.txt-destaque-secondary {
  color: var(--color-dark-slate);
  font-weight: 700;
}

/* ==========================================================================
   HERO SECTION (Original layout with original banner background and Nexa font)
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: url('../img/banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 800px;
  border-radius: 0px 0px 50px 50px;
  padding: 40px 0 100px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.hero-logo-link {
  margin-bottom: 110px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.hero-logo-link:hover {
  transform: scale(1.02);
}

.hero-logo-img {
  height: 57px;
  width: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 607px;
  width: 100%;
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  font-family: 'nexa', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.5rem;
  line-height: 30px;
  color: #ffffff;
  font-family: 'nexa', sans-serif;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 607px;
}

.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Original WhatsApp Green Gradient Button */
.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-image: linear-gradient(90deg, #238B15 0%, #24C70F 100%);
  color: #ffffff;
  padding: 20px 40px;
  font-family: 'nexa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 60px;
  box-shadow: 0 4px 15px rgba(36, 199, 15, 0.35);
  transition: var(--transition-smooth);
}

.btn-hero-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(36, 199, 15, 0.5);
  filter: brightness(1.05);
}

.btn-whatsapp-icon svg {
  display: block;
}

/* ==========================================================================
   SECTION 2: DIFERENCIAIS (Por que comprar...)
   ========================================================================== */
.section-diferenciais {
  background-color: var(--color-bg-light);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: 'nexa', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'nexa', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: normal;
  color: var(--color-text-muted);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.diferencial-card {
  background-color: transparent;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Card Hover Animations and shadows */
.diferencial-card::before {
  display: none;
}

.diferencial-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border-color: transparent;
}

/* Icon Container */
.card-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--color-red-light);
  color: var(--color-red-brand);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.diferencial-card:hover .card-icon-container {
  background-color: var(--color-red-brand);
  color: var(--color-bg-white);
  transform: scale(1.05) rotate(5deg);
}

.feature-icon-svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  transition: var(--transition-smooth);
}

.diferencial-card:hover .feature-icon-svg {
  stroke-width: 2.2;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 3: SOLUÇÕES (CARROSSEL DE PRODUTOS)
   ========================================================================== */
.section-solucoes {
  background-color: var(--color-bg-white);
  padding: 100px 0;
}

.section-header-triunfo {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.triunfo-header-logo-col {
  flex-shrink: 0;
}

.logo-triunfo-img {
  width: 292px; /* Matches original size */
  height: auto;
  display: block;
}

.triunfo-header-text-col {
  flex: 1;
}

.triunfo-section-title {
  font-size: 50px;
  font-family: 'nexa', sans-serif;
  font-weight: 700;
  color: var(--color-dark-slate);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.triunfo-section-subtitle {
  font-size: 20px;
  font-family: 'nexa', sans-serif;
  color: var(--color-text-muted);
  max-width: 800px;
  line-height: 30px;
  letter-spacing: -0.4px;
}

/* Carousel Layout */
.carousel-outer-wrapper {
  position: relative;
  margin-top: 48px;
}

.products-carousel-container {
  overflow: hidden;
  padding: 60px 10px; /* Increased vertical padding to allow server rack overflow without clipping */
  cursor: grab;
}

.products-carousel-container:active {
  cursor: grabbing;
}

.products-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Product Card - overflow visible to let product image stand out */
.product-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 items visible on Desktop */
  background-color: transparent;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  overflow: visible; /* Allowed image to overflow */
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: transparent;
}

/* Product image box background */
.product-img-wrapper {
  position: relative;
  background-color: var(--color-bg-light);
  aspect-ratio: 4/5;
  overflow: visible; /* Allowed image to overflow parent container */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 32px 32px 10px 32px; /* Margins to sit inside card borders */
  border-radius: var(--radius-md);
}

/* Server Rack Image standing out from the container */
.product-img {
  position: absolute;
  height: 122%; /* Taller than container */
  width: auto;
  object-fit: contain;
  top: -11%; /* Shifting to center overflow at top and bottom */
  transition: var(--transition-smooth);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.product-card:hover .product-img {
  transform: scale(1.08) translateY(-5px); /* Lift and scale up on hover */
  filter: drop-shadow(0 20px 35px rgba(206, 0, 0, 0.2)); /* Glowing red branding shadow on hover */
}

/* Product Info */
.product-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: 'nexa', sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.44px;
  color: var(--color-dark-slate);
}

.product-description {
  font-family: 'nexa', sans-serif;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 22px;
  letter-spacing: -0.32px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.product-description b {
  color: var(--color-dark-slate);
}

/* Carousel Buttons */
.btn-orcamento-produto {
  display: block;
  width: 100%;
  background-color: var(--color-bg-light);
  color: var(--color-red-brand);
  border: 1.5px solid var(--color-red-brand);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-orcamento-produto:hover {
  background-color: var(--color-red-brand);
  color: var(--color-bg-white);
  box-shadow: 0 4px 10px rgba(206, 0, 0, 0.15);
}

/* Carousel Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-bg-border);
  box-shadow: var(--shadow-md);
  color: var(--color-dark-slate);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.carousel-control:hover {
  background-color: var(--color-red-brand);
  color: var(--color-bg-white);
  border-color: var(--color-red-brand);
  box-shadow: var(--shadow-red-glow);
}

.carousel-control.prev {
  left: -24px;
}

.carousel-control.next {
  right: -24px;
}

.carousel-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   SECTION 4: ACESSÓRIOS
   ========================================================================== */
.section-acessorios {
  background-color: var(--color-dark-slate);
  color: var(--color-bg-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.accessories-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.accessories-content {
  position: relative;
  z-index: 2;
}

.accessories-title {
  color: var(--color-bg-white);
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.accessories-lead {
  color: var(--color-text-light);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

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

.accessories-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.list-bullet-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-red-brand);
  color: var(--color-bg-white);
  flex-shrink: 0;
}

.list-text {
  font-weight: 500;
}

/* Accessories Section Image layout */
.accessories-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accessories-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.accessories-img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   SECTION 5: FORMULÁRIO E CONTATO
   ========================================================================== */
.section-contato {
  background-color: var(--color-bg-light);
  padding: 100px 0;
  position: relative;
}

.contato-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-info {
  padding-right: 20px;
}

.contato-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contato-description {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

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

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  color: var(--color-red-brand);
}

.contact-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-dark-slate);
}

.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-whatsapp);
  color: var(--color-bg-white);
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: var(--transition-smooth);
}

.btn-whatsapp-footer:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Form Container */
.contato-form-wrapper {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-bg-border);
}

.form-wrapper-title {
  font-size: 1.8rem;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-slate);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-bg-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark-slate);
  transition: var(--transition-fast);
  background-color: var(--color-bg-white);
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-red-brand);
  box-shadow: 0 0 0 3px rgba(206, 0, 0, 0.12);
}

/* Checkbox Style */
.form-group-checkbox {
  margin: 28px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: var(--color-bg-white);
  border: 1.5px solid var(--color-bg-border);
  border-radius: 4px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .custom-checkbox {
  border-color: var(--color-red-brand);
}

.checkbox-container input:checked ~ .custom-checkbox {
  background-color: var(--color-red-brand);
  border-color: var(--color-red-brand);
}

.custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .custom-checkbox::after {
  display: block;
}

.checkbox-label {
  padding-top: 1px;
}

/* Submit button */
.btn-submit-form {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--color-red-brand);
  color: var(--color-bg-white);
  border: none;
  padding: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(206, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-submit-form:hover {
  background-color: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 0, 0, 0.3);
}

/* ==========================================================================
   DECONSTRUCTION SECTION (Scroll-linked 3D Animation)
   ========================================================================== */
.deconstruction-section {
  position: relative;
  width: 100%;
  background-color: var(--color-dark-slate);
}

.deconstruction-scroll-track {
  position: relative;
  height: 300vh; /* Scroll space for the animation */
  width: 100%;
}

.deconstruction-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c1220; /* Slightly darker slate for video blend */
}

#deconstruction-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background-color: #0c1220;
}

.deconstruction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none; /* Let user scroll/drag through */
}

.deconstruction-text-box {
  pointer-events: auto; /* Allow interactions if needed */
  max-width: 480px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-bg-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(0);
  opacity: 1;
}

.deconstruction-title {
  color: var(--color-bg-white);
  font-size: 2.2rem;
  font-family: 'nexa', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.deconstruction-description {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsividade para a seção de desconstrução */
@media (max-width: 768px) {
  .deconstruction-overlay {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
  }
  
  .deconstruction-text-box {
    max-width: 90%;
    padding: 24px;
    margin: 0 auto;
    text-align: center;
  }
  
  .deconstruction-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .deconstruction-description {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-dark-slate);
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-copy {
  font-size: 0.9rem;
  text-align: center;
}

.footer-link {
  color: var(--color-text-light);
  text-decoration: underline;
  opacity: 0.7;
}

.footer-link:hover {
  opacity: 1;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Balão Fixo)
   ========================================================================== */
.whatsapp-floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-floating-button svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: #ffffff;
}

.whatsapp-floating-button:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background-color: #20ba5a;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
  .whatsapp-floating-button {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-floating-button svg {
    width: 30px;
    height: 30px;
  }
}

/* ==========================================================================
   SCROLL REVEAL STYLES (JS Controlled)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.reveal-on-scroll[style*="--delay: 1"] { transition-delay: 0.1s; }
.reveal-on-scroll[style*="--delay: 2"] { transition-delay: 0.2s; }
.reveal-on-scroll[style*="--delay: 3"] { transition-delay: 0.3s; }
.reveal-on-scroll[style*="--delay: 4"] { transition-delay: 0.4s; }
.reveal-on-scroll[style*="--delay: 5"] { transition-delay: 0.5s; }

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 700px;
  }
  .hero-logo-link {
    margin-bottom: 80px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-description {
    font-size: 1.3rem;
    line-height: 26px;
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-card {
    flex: 0 0 calc((100% - 24px) / 2); /* 2 items visible on Tablet */
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .hero-section {
    min-height: 600px;
    padding: 30px 0 60px;
    border-radius: 0px 0px 30px 30px;
  }
  .hero-container {
    align-items: center;
    text-align: center;
  }
  .hero-logo-link {
    margin-bottom: 60px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-description {
    font-size: 1.2rem;
    line-height: 24px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-wrapper {
    justify-content: center;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .section-header-triunfo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .logo-triunfo-img {
    max-width: 200px;
  }
  .triunfo-section-title {
    font-size: 2rem;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accessories-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .accessories-image-decor {
    display: none; /* Hide circle on mobile */
  }
  .contato-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contato-info {
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-details {
    align-items: center;
  }
  .contato-form-wrapper {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    flex: 0 0 100%; /* 1 item visible on Mobile */
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-cta-wrapper .btn-hero-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 15px;
  }
  .carousel-control {
    width: 40px;
    height: 40px;
  }
  .carousel-control.prev {
    left: -12px;
  }
  .carousel-control.next {
    right: -12px;
  }
}
