.avaliacoes-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.avaliacoes-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.avaliacao-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 0.95)
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.avaliacao-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.avaliacao-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.1);
}

.avaliacao-card:hover::before {
  opacity: 1;
}

/* Header da Avaliação */
.avaliacao-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.quote-mark {
  color: rgba(212, 175, 55, 0.2);
  font-size: 3.5rem;
  line-height: 1;
}

.client-badge {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-text {
  color: var(--black);
}

/* Conteúdo da Avaliação */
.avaliacao-content {
  position: relative;
  z-index: 2;
}

.avaliacao-text {
  color: white;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 25px;
  font-style: normal;
  position: relative;
  padding-left: 20px;
}

.avaliacao-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  border-radius: 3px;
}

.rating-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* Footer da Avaliação */
.avaliacao-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar-container {
  position: relative;
  width: 60px;
  height: 60px;
}

.client-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.avatar-frame {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.client-info {
  flex: 1;
}

.client-name {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-project {
  color: var(--gold-light);
  font-size: 0.9rem;
  opacity: 0.8;
}

.projeto-icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.avaliacao-card:hover .projeto-icon {
  background: var(--gold-primary);
  color: var(--black);
  transform: scale(1.1);
}

/* Indicadores de Confiança */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
  text-align: center;
  padding: 20px 15px;
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Efeito de brilho dourado sutil */
.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.trust-item:hover::before {
  left: 100%;
}

.trust-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background: linear-gradient(
    145deg,
    rgba(25, 25, 25, 0.9),
    rgba(35, 35, 35, 0.5)
  );
  transform: translateY(-3px);
  box-shadow:
    0 8px 15px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(212, 175, 55, 0.05);
}

.trust-number {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #d4af37 0%, #f7ef8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
}

.trust-stars {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

/* Animação suave nas estrelas */
.trust-stars i {
  transition: transform 0.2s ease;
}

.trust-item:hover .trust-stars i {
  animation: starPulse 0.6s ease infinite alternate;
}

.trust-item:hover .trust-stars i:nth-child(2) {
  animation-delay: 0.1s;
}

.trust-item:hover .trust-stars i:nth-child(3) {
  animation-delay: 0.2s;
}

.trust-item:hover .trust-stars i:nth-child(4) {
  animation-delay: 0.3s;
}

.trust-item:hover .trust-stars i:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes starPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.trust-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.trust-item:hover .trust-text {
  color: rgba(255, 255, 255, 0.95);
}

/* Indicador decorativo no rodapé do card */
.trust-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.5;
}

/* Contato */
.contato-section {
  background-color: var(--dark-gray);
  position: relative; 
  overflow: hidden;
}

.contato-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-primary) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.contato-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-primary) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-desc {
  color: var(--lighter-gray);
  margin-bottom: 40px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.contato-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--white);
}

.detail-content p {
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-primary);
  color: var(--black);
  transform: translateY(-5px);
}

.footer {
  background-color: var(--black);
  color: var(--light-gray);
  padding: 70px 0 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Layout principal do footer */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: start;
}

/* Seção Sobre */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-container {
  margin-bottom: 5px;
}

.footer-logo {
  font-size: 2.4rem;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0 0 5px 0;
  font-weight: 700;
  line-height: 1.2;
}

.footer-tagline {
  color: var(--gold-primary);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: white;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
  max-width: 400px;
}

/* Seção de Links */
.footer-nav {
  padding-left: 0;
}

.footer-title {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}

.footer-links li::before {
  content: "›";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 3px 0;
  display: inline-block;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--gold-primary);
  padding-left: 20px;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-links li:hover::before {
  opacity: 1;
  left: 5px;
}

/* Seção de Contato */
.footer-contact {
  padding-left: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-details {
  flex: 1;
}

.contact-details p {
  margin: 0;
  line-height: 1.6;
  color: white;
  opacity: 0.9;
  font-size: 0.95rem;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
  color: white;
  opacity: 0.9;
  font-size: 0.95rem;
  align-self: center;
}

/* Alinhamento perfeito dos ícones */
.contact-item {
  align-items: flex-start;
}

.contact-icon {
  line-height: 1;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
}

.footer-dev {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-dev .gold-text {
  color: var(--gold-primary);
  margin: 0 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/*  carrossel */
.carousel {
  height: 400px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
}

/* Botão de voltar ao topo */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

/* Efeito brilho dourado */
.back-to-top-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.white-text {
  color: white;
}

select {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

select option {
  background-color: #0a0a0a;
  color: #ffffff;
}

select option:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

select option:checked {
  background-color: #000000 !important;
  color: #ffffff !important;
}