

/* FIM DO CSS ESPECÍFICO PARA PÁGINA WHOLESALE */
/* ============================================
   CSS PARA PÁGINA WHOLESALE - CONTEÚDO PRINCIPAL
   NÃO INTERFERE COM HEADER/FOOTER
============================================ */

/* Container principal - ajuste para header fixo */
.wholesale-content {
  margin-top: -20px; /* Ajuste conforme altura do seu header */
  padding-top: 20px;
  min-height: 100vh;
}

/* ============================================
   HERO SECTION
============================================ */
.wholesale-hero {
  background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wholesale-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(10, 92, 255, 0.1) 0%,
    transparent 50%
  );
  height: 100%;
}

.wholesale-hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.wholesale-hero-content {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 0.8s ease-out;
}

.wholesale-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff, #a0c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wholesale-hero p {
  font-size: 1.25rem;
  color: #dcdcdc;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 1000px;
  
}

/* Botão personalizado para wholesale */
.wholesale-btn {
  background: linear-gradient(135deg, #0a5cff 0%, #0848cc 100%);
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.wholesale-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 92, 255, 0.3);
  color: white;
}

.wholesale-video-container {
  flex: 1;
  min-width: 400px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.wholesale-video-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  
  transition: transform 0.6s ease;
  aspect-ratio: 16/9;
}

.wholesale-video-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.wholesale-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   CARROSSEL DE NOTÍCIAS
============================================ */
.wholesale-news {
  padding: 50px 0;
  background: #f8fafc;
  position: relative;
}

.wholesale-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #0b0b0b;
}

.wholesale-section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.wholesale-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.wholesale-carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 550px;
}

.wholesale-carousel-slide {
  min-width: 100%;
  position: relative;
}

.wholesale-carousel-image {
  height: 110%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  position: relative;
 
}

.wholesale-carousel-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%
  );
}

.wholesale-carousel-overlay {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.wholesale-carousel-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.wholesale-carousel-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.wholesale-carousel-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.wholesale-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.wholesale-carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.wholesale-carousel-dot.active {
  background: #0a5cff;
  transform: scale(1.2);
}

.wholesale-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.wholesale-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.wholesale-carousel-prev {
  left: 30px;
}

.wholesale-carousel-next {
  right: 30px;
}

/* ============================================
   SEÇÃO DE PARCEIROS
============================================ */
.wholesale-partners {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
  color: white;
}

.wholesale-partners .wholesale-section-title {
  color: white;
}

.wholesale-partners .wholesale-section-subtitle {
  color: #cbd5e1;
}

.wholesale-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.wholesale-partner-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wholesale-partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.wholesale-partner-card:hover::before {
  left: 100%;
}

.wholesale-partner-card:hover {
  transform: translateY(-15px);
  border-color: rgba(10, 92, 255, 0.5);
  box-shadow: 0 25px 50px rgba(10, 92, 255, 0.2);
}

.wholesale-partner-logo {
  margin-bottom: 25px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wholesale-partner-logo img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.4s ease;
}

.wholesale-partner-card:hover .wholesale-partner-logo img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.wholesale-partner-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.wholesale-partner-type {
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.wholesale-partner-desc {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 1rem;
}

/* ============================================
   FORMULÁRIO DE CONTACTO
============================================ */
.wholesale-contact {
  padding: 100px 0;
  background: #f8fafc;
}

.wholesale-contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.wholesale-form-group {
  margin-bottom: 25px;
}

.wholesale-form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #334155;
  font-size: 1rem;
}

.wholesale-form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
  font-family: inherit;
}

.wholesale-form-input:focus {
  outline: none;
  border-color: #0a5cff;
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 92, 255, 0.1);
}

.wholesale-form-input.wholesale-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.wholesale-form-textarea {
  min-height: 180px;
  resize: vertical;
}

.wholesale-form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 8px;
  display: none;
}

.wholesale-submit-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.wholesale-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.wholesale-form-actions {
  text-align: center;
  margin-top: 30px;
}

.wholesale-form-note {
  margin-top: 15px;
  color: #64748b;
  font-size: 0.95rem;
}

.wholesale-phone-link {
  color: #0a5cff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wholesale-phone-link:hover {
  color: #0848cc;
  text-decoration: underline;
}


/* ============================================
   SEÇÃO AGENTES DE COMÉRCIO
============================================ */
#agentes {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-top: 3px solid #0a5cff;
  border-bottom: 3px solid #0a5cff;
}

.agentes-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  text-align: center;
}

.titulo-agentes {
  color: #0a5cff;
  font-size: 1.1rem;
  margin-right: 10px;
}

/* ============================================
   ANIMAÇÕES
============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wholesale-animate {
  animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   RESPONSIVIDADE
============================================ */
@media (max-width: 1200px) {
  .wholesale-hero h1 {
    font-size: 2.8rem;
  }

  .wholesale-carousel-track {
    height: 500px;
  }

  .wholesale-carousel-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .wholesale-content {
    margin-top: 160px;
  }

  .wholesale-hero {
    padding: 80px 0;
  }

  .wholesale-hero .container {
    flex-direction: column;
    gap: 40px;
  }

  .wholesale-hero-content {
    text-align: center;
    max-width: 100%;
  }

  .wholesale-hero h1 {
    font-size: 2.5rem;
  }

  .wholesale-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .wholesale-video-wrapper {
    transform: none;
  }

  .wholesale-section-title {
    font-size: 2.3rem;
  }

  .wholesale-carousel-track {
    height: 450px;
  }

  .wholesale-carousel-image {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .wholesale-content {
    margin-top: 140px;
  }

  .wholesale-hero h1 {
    font-size: 2.2rem;
  }

  .wholesale-section-title {
    font-size: 2rem;
  }

  .wholesale-carousel-track {
    height: 400px;
  }

  .wholesale-carousel-image {
    padding: 30px;
  }

  .wholesale-carousel-title {
    font-size: 1.7rem;
  }

  .wholesale-contact-form {
    padding: 40px 30px;
  }

  .wholesale-partners-grid {
    grid-template-columns: 1fr;
  }

  .wholesale-carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .wholesale-carousel-prev {
    left: 15px;
  }

  .wholesale-carousel-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .wholesale-content {
    margin-top: 130px;
  }

  .wholesale-hero h1 {
    font-size: 1.9rem;
  }

  .wholesale-hero p {
    font-size: 1.1rem;
  }

  .wholesale-section-title {
    font-size: 1.8rem;
  }

  .wholesale-carousel-track {
    height: 350px;
  }

  .wholesale-carousel-overlay {
    max-width: 100%;
  }

  .wholesale-btn,
  .wholesale-submit-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }

 
