/* ===================================
   ESTILOS ESPECÍFICOS - PÁGINA EMPRESAS
   =================================== */

/* ===================================
   HERO EMPRESARIAL
   =================================== */
.hero-empresa-full {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 80px;
}

.hero-empresa-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   SEÇÃO DE PLANOS
   =================================== */
.plans-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 50px;
  font-weight: 600;
  color: var(--text);
}

.section-title strong {
  color: var(--brand);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
  border: 2px solid var(--brand);
  transform: scale(1.05);
}

.plan-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.ribbon {
  position: absolute;
  right: -30px;
  top: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 8px 40px;
  transform: rotate(35deg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-badge {
  background: var(--grey-200);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.plan-speed {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 25px;
}

.speed-num {
  font-size: 54px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.speed-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--grey-100);
}

.plan-features li:last-child {
  border-bottom: none;
}

.check {
  color: var(--brand);
  font-weight: 700;
  font-size: 16px;
}

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

.price-currency {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}

.price-value {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
}

.price-period {
  font-size: 14px;
  color: var(--muted);
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--brand);
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

.btn-featured {
  background: var(--brand);
  color: #fff;
}

.btn-featured:hover {
  background: var(--brand-dark);
}

/* ===================================
   LINK DEDICADO
   =================================== */
.link-dedicado-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.link-dedicado-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(255, 106, 0, 0.5))
          drop-shadow(0 0 60px rgba(255, 106, 0, 0.3))
          drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

.link-dedicado-image:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 50px rgba(255, 106, 0, 0.7))
          drop-shadow(0 0 90px rgba(255, 106, 0, 0.4))
          drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}

/* ===================================
   FORMULÁRIO DE DISPONIBILIDADE
   =================================== */
.availability {
  padding: 60px 0;
  text-align: center;
}

.availability h3 {
  font-size: 32px;
  margin: 0 0 15px;
  font-weight: 600;
}

.availability h3 strong {
  color: var(--brand);
}

.availability p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 40px;
}

.form-box {
  background: #f8f8f8;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

.form-grid input,
.form-grid select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-300);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-grid input:focus,
.form-grid select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.full-width {
  grid-column: 1 / -1;
}

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

.btn-submit {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.4);
}

/* ===================================
   DEPOIMENTOS EMPRESARIAIS
   =================================== */
.testimonials-empresa {
  background-color: #ffffff;
  color: #333;
  padding: 60px 20px 120px;
  text-align: center;
}

.testimonials-empresa h2 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
  margin: 0 0 60px;
}

.testimonials-empresa h2 span {
  font-weight: 600;
  color: #555;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonials-empresa .card {
  background-color: #c7c7c7;
  width: 280px;
  min-height: 250px;
  padding: 50px 25px 90px;
  border-radius: 0 0 80px 80px;
  position: relative;
  color: #fff;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}

.testimonials-empresa .card p {
  margin: 0;
  max-width: 240px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonials-empresa .profile-image {
  position: absolute;
  bottom: -35px;
  left: 60%;
  transform: translateX(-50%);
  z-index: 2;
}

.testimonials-empresa .profile-image img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.testimonials-empresa .profile-info {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  max-width: 240px;
}

.testimonials-empresa .profile-info h4 {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonials-empresa .profile-info span {
  color: #777;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* ===================================
   PARCEIROS
   =================================== */
.partners {
  padding: 40px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.partner-logo {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.2);
}

/* ===================================
   NAV ACTIVE STATE
   =================================== */
nav a.active {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

/* ===================================
   RESPONSIVO
   =================================== */
@media (max-width: 980px) {
  .hero-empresa .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .plans-grid {
    grid-template-columns: 1fr;
  }

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

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .speed-num {
    font-size: 42px;
  }

  .price-value {
    font-size: 32px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}