/* ============================================
   FYBER POLÍMEROS - ESTILOS GLOBAIS
   ============================================ */

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

:root {
  --azul-escuro: #0200d2;
  --azul-secundario: #0200d2;
  --branco: #FFFFFF;
  --cinza-claro: #F3F4F6;
  --cinza-escuro: #111827;
  --azul-claro: #DBEAFE;
  --azul-escuro-hover: #0100b8;
  --sombra: rgba(2, 0, 210, 0.1);
  --sombra-hover: rgba(2, 0, 210, 0.2);
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--cinza-escuro);
  line-height: 1.6;
  background-color: var(--branco);
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 700;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ============================================
   HEADER
   ============================================ */

/* Mini Banner */
.mini-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #0200d2 0%, #0100b8 50%, #0200d2 100%);
  background-color: var(--azul-escuro);
  color: var(--branco);
  text-align: center;
  padding: 0.5rem 1rem;
  z-index: 1001;
  font-size: 0.875rem;
  font-weight: 600;
  box-sizing: border-box;
  overflow: hidden;
}

.mini-banner p {
  margin: 0;
}

header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background-color: var(--branco);
  z-index: 1000;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px var(--sombra);
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
  overflow: visible;
}

header.scrolled {
  box-shadow: 0 4px 16px var(--sombra-hover);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--azul-escuro);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--cinza-escuro);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover,
nav a:focus {
  color: var(--azul-escuro);
  background-color: var(--cinza-claro);
  outline: 2px solid var(--azul-escuro);
  outline-offset: 2px;
}

nav a.active {
  color: var(--azul-escuro);
  font-weight: 600;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  z-index: 1001;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-toggle .chevron {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown.active .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background-color: var(--branco);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  min-width: 280px;
  max-width: 320px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  list-style: none;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.08);
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  width: 100%;
  display: block;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  color: var(--cinza-escuro);
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background-color: var(--azul-claro);
  color: var(--azul-escuro);
  outline: none;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--azul-escuro);
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--branco);
    box-shadow: 0 4px 16px var(--sombra);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  nav.active {
    max-height: 800px;
  }
  
  nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
    min-width: auto;
    background-color: var(--cinza-claro);
    border-radius: 8px;
  }
  
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--azul-escuro);
  color: var(--branco);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--azul-escuro-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--sombra-hover);
  outline: 2px solid var(--azul-escuro);
  outline-offset: 2px;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--azul-escuro);
  border: 2px solid var(--azul-escuro);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--azul-escuro);
  color: var(--branco);
  outline: 2px solid var(--azul-escuro);
  outline-offset: 2px;
}

.btn-whatsapp::before {
  content: "💬";
  font-size: 1.2rem;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  margin-top: 0;
  min-height: calc(100vh - 120px);
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  box-sizing: border-box;
}

section {
  width: 100%;
  max-width: 100%;
  padding: 4rem 2rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

section.hero-slideshow {
  padding: 0;
  margin: 0;
}

section > *:not(.hero-slideshow):not(.beneficios-container) {
  max-width: 1400px;
  margin: 0 auto;
}

/* Garantir que containers específicos também tenham max-width */
.produtos-carousel,
.confianca-container,
.contato-cards {
  max-width: 1400px;
  margin: 0 auto;
}

/* Seções com fundo azul escuro */
section.bg-azul-escuro {
  background: linear-gradient(135deg, #0200d2 0%, #0100b8 50%, #0200d2 100%);
  background-color: var(--azul-escuro);
  color: var(--branco);
}

section.bg-azul-escuro h2,
section.bg-azul-escuro h3 {
  color: var(--branco);
}

section.bg-azul-escuro p {
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  text-align: center;
  color: var(--azul-escuro);
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

section.bg-azul-escuro .section-title {
  color: var(--branco);
}

/* ============================================
   HERO SLIDESHOW
   ============================================ */

.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  margin: 0;
  margin-top: 120px;
  padding: 0;
  display: block;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.slide > .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 2rem;
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
}

.slide-overlay.overlay-escuro {
  background: linear-gradient(135deg, rgba(2, 0, 210, 0.85) 0%, rgba(2, 0, 210, 0.75) 100%);
}

.slide-overlay.overlay-branco {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
}

/* NOVO: Overlay preto neutro - faz o texto branco "saltar" sem tingir a foto */
.slide-overlay.overlay-dark {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.slide-overlay.overlay-dark .slide-content {
  color: var(--branco);
}

.slide-overlay.overlay-dark .slide-content h1,
.slide-overlay.overlay-dark .slide-content p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-overlay.overlay-dark .slide-content .btn {
  background-color: var(--branco);
  color: var(--azul-escuro);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slide-overlay.overlay-dark .slide-content .btn:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.slide-overlay.overlay-dark .slide-content .btn.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
}

.slide-overlay.overlay-dark .slide-content .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.slide-content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  z-index: 3;
  width: 100%;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: hidden;
}

.slide-overlay.overlay-escuro .slide-content {
  color: var(--branco);
}

.slide-overlay.overlay-branco .slide-content {
  color: var(--azul-escuro);
}

.slide-content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.slide-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  font-weight: 400;
}

.slide-content p strong {
  font-weight: 700;
}

.slide-content .btn {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  margin-top: 1.5rem;
}

.slide-overlay.overlay-branco .slide-content .btn {
  background-color: var(--azul-escuro);
  color: var(--branco);
}

.slide-overlay.overlay-branco .slide-content .btn:hover {
  background-color: var(--azul-escuro-hover);
}

.slide-overlay.overlay-escuro .slide-content .btn {
  background-color: var(--branco);
  color: var(--azul-escuro);
}

.slide-overlay.overlay-escuro .slide-content .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.slideshow-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.slide-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--branco);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-bullet.active {
  background-color: var(--branco);
  transform: scale(1.2);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--branco);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.slide-arrow.prev {
  left: 2rem;
}

.slide-arrow.next {
  right: 2rem;
}

/* Animações Premium do Texto */
.slide-title,
.slide-text,
.slide-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.slide.active .slide-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Reset animações quando slide não está ativo */
.slide:not(.active) .slide-title,
.slide:not(.active) .slide-text,
.slide:not(.active) .slide-cta {
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0s;
}

@media (max-width: 768px) {
  .hero-slideshow {
    height: 70vh;
    min-height: 500px;
  }
  
  .slide-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .slide-arrow.prev {
    left: 1rem;
  }
  
  .slide-arrow.next {
    right: 1rem;
  }
}

/* ============================================
   CARROSSEL DE BENEFÍCIOS
   ============================================ */

.beneficios-section {
  background-color: var(--branco);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.beneficios-container {
  position: relative;
  padding: 2rem 0;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.beneficios-carousel {
  display: flex;
  gap: 2rem;
  animation: scroll-beneficios 30s linear infinite;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.beneficios-carousel:active {
  animation-play-state: paused;
}

.beneficio-card {
  min-width: 280px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(219, 234, 254, 0.5);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(11, 42, 90, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.beneficio-card::before {
  content: "✓";
  font-size: 2rem;
  color: var(--azul-escuro);
  font-weight: bold;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  color: var(--azul-escuro);
  margin: 0;
  font-weight: 700;
}

.beneficio-card p strong {
  font-weight: 700;
  color: var(--azul-escuro);
}

.beneficio-card p {
  color: var(--cinza-escuro);
  font-size: 0.95rem;
  margin: 0;
}

@keyframes scroll-beneficios {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.beneficios-container::before,
.beneficios-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 250px;
  z-index: 10;
  pointer-events: none;
}

.beneficios-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}

.beneficios-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}

/* Duplicar cards para loop infinito */
.beneficios-carousel .beneficio-card:nth-child(n+7) {
  display: none;
}

/* ============================================
   CARROSSEL MAIS VENDIDOS
   ============================================ */

.mais-vendidos-section {
  padding: 4rem 2rem;
}

.mais-vendidos-section:not(.bg-azul-escuro) {
  background-color: var(--cinza-claro);
}

.destaques-section {
  padding: 4rem 2rem;
  background-color: var(--branco);
}

.produtos-carousel {
  position: relative;
}

.produtos-wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.produtos-wrapper.produtos-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  overflow: visible;
  gap: 2rem;
}

.produto-item[data-visible="false"] {
  display: none;
}

.produto-item[data-visible="true"] {
  display: flex;
}

.produto-card {
  min-width: 0;
  background-color: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--sombra);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bg-azul-escuro .produto-card {
  background-color: rgba(255, 255, 255, 0.95);
}

.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--sombra-hover);
}

.produto-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--azul-claro);
}

.produto-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.produto-card h3 {
  color: var(--azul-escuro);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.produto-card p {
  color: var(--cinza-escuro);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.produto-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.exibir-mais-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.exibir-mais-btn {
  min-width: 200px;
}

.carousel-btn {
  background-color: var(--azul-escuro);
  color: var(--branco);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-azul-escuro .carousel-btn {
  background-color: var(--branco);
  color: var(--azul-escuro);
}

.carousel-btn:hover,
.carousel-btn:focus {
  background-color: var(--azul-escuro-hover);
  transform: scale(1.1);
  outline: 2px solid var(--azul-escuro);
  outline-offset: 2px;
}

.bg-azul-escuro .carousel-btn:hover,
.bg-azul-escuro .carousel-btn:focus {
  background-color: rgba(255, 255, 255, 0.9);
  outline: 2px solid var(--branco);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .produto-card {
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .produto-card {
    min-width: 100%;
  }
}

/* ============================================
   SEÇÃO SPLIT (CONFIANÇA)
   ============================================ */

.confianca-section {
  padding: 6rem 2rem;
  background-color: var(--branco);
}

.confianca-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.confianca-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px var(--sombra);
  background-color: var(--azul-claro);
}

.confianca-content h2 {
  color: var(--azul-escuro);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.confianca-content p strong {
  font-weight: 700;
  color: var(--azul-escuro);
}

.confianca-content p {
  color: var(--cinza-escuro);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .confianca-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .confianca-image {
    height: 300px;
  }
}

/* ============================================
   CONTATO RÁPIDO
   ============================================ */

.contato-rapido-section {
  padding: 4rem 2rem;
}

.contato-rapido-section:not(.bg-azul-escuro) {
  background-color: var(--cinza-claro);
}

.contato-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contato-card {
  background-color: var(--branco);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px var(--sombra);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bg-azul-escuro .contato-card {
  background-color: rgba(255, 255, 255, 0.95);
}

.bg-azul-escuro .contato-card h3 {
  color: var(--azul-escuro);
}

.bg-azul-escuro .contato-card p {
  color: var(--cinza-escuro);
}

.contato-card-icon {
  font-size: 3rem;
  text-align: center;
}

.contato-card h3 {
  color: var(--azul-escuro);
  text-align: center;
  margin: 0;
}

.contato-card p {
  text-align: center;
  color: var(--cinza-escuro);
  margin: 0;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-form input,
.contato-form textarea {
  padding: 0.875rem;
  border: 2px solid var(--cinza-claro);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--azul-escuro);
}

.contato-card .btn {
  width: 100%;
  justify-content: center;
}

.telefone-numero {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul-escuro);
  text-align: center;
  margin: 1rem 0;
}

.bg-azul-escuro .telefone-numero {
  color: var(--branco);
}

.bg-azul-escuro .contato-card p[style*="color: #6B7280"] {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================================
   GRID DE PRODUTOS
   ============================================ */

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.produto-grid-card {
  background-color: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--sombra);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.produto-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--sombra-hover);
}

.produto-grid-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--azul-claro);
}

.produto-grid-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.produto-grid-card h3 {
  color: var(--azul-escuro);
  margin-bottom: 0.5rem;
}

.produto-grid-card p {
  color: var(--cinza-escuro);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.produto-grid-card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.produto-grid-card-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.produto-grid-card-actions .btn-secondary {
  flex: 0 0 auto;
}

/* ============================================
   PÁGINA PRODUTO INDIVIDUAL
   ============================================ */

.produto-hero {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background-color: var(--azul-claro);
  margin-bottom: 3rem;
}

.produto-detalhes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.produto-header {
  margin-bottom: 3rem;
}

.produto-header h1 {
  color: var(--azul-escuro);
  margin-bottom: 1rem;
}

.produto-overview {
  font-size: 1.2rem;
  color: var(--cinza-escuro);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.produto-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.produto-aplicacoes,
.produto-especificacoes {
  background-color: var(--cinza-claro);
  padding: 2rem;
  border-radius: 16px;
}

.produto-aplicacoes h3,
.produto-especificacoes h3 {
  color: var(--azul-escuro);
  margin-bottom: 1.5rem;
}

.produto-aplicacoes ul,
.produto-especificacoes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.produto-aplicacoes li,
.produto-especificacoes li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--cinza-escuro);
}

.produto-aplicacoes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--azul-escuro);
  font-weight: bold;
}

.produto-especificacoes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--azul-escuro);
  font-weight: bold;
  font-size: 1.2rem;
}

.produto-cta {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.produto-cta .btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.porque-fyber {
  background-color: var(--cinza-claro);
  padding: 3rem;
  border-radius: 16px;
  margin-top: 4rem;
}

.porque-fyber h3 {
  color: var(--azul-escuro);
  margin-bottom: 1.5rem;
}

.porque-fyber ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.porque-fyber li {
  padding-left: 2rem;
  position: relative;
  color: var(--cinza-escuro);
}

.porque-fyber li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--azul-escuro);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .produto-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .produto-cta {
    flex-direction: column;
  }
  
  .produto-cta .btn {
    width: 100%;
  }
}

/* ============================================
   ANIMAÇÕES DE SCROLL E TRANSIÇÕES
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animação suave para páginas de produtos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Aplicar animação no carregamento da página */
.produto-page-container {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.produto-card {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

/* Delay progressivo para cards */
.produto-card:nth-child(1) { animation-delay: 0.05s; }
.produto-card:nth-child(2) { animation-delay: 0.1s; }
.produto-card:nth-child(3) { animation-delay: 0.15s; }
.produto-card:nth-child(4) { animation-delay: 0.2s; }
.produto-card:nth-child(5) { animation-delay: 0.25s; }
.produto-card:nth-child(6) { animation-delay: 0.3s; }
.produto-card:nth-child(n+7) { animation-delay: 0.35s; }

.produtos-page-container {
  animation: fadeIn 0.6s ease;
}

/* Transição suave para conteúdo de produto individual */
.produto-content {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #0200d2 0%, #0100b8 50%, #0200d2 100%);
  background-color: var(--azul-escuro);
  color: var(--branco);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-content p:last-child {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

