/* Custom styles */
body {
  color: #4A5568;
  font-family: 'Inter', sans-serif;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 300;
}

.bg-logo {
  background-image: url('../assets/logo.png');
  background-size: 50%;
  background-position: left;
  background-repeat: no-repeat;

  /* overflow: visible; */
  /* margin-bottom: 0;
    padding-bottom: 0; */
}

@media screen and (max-width: 768px) {
  .bg-logo {
    background-image: none;
  }
}

@media screen and (max-width: 860px) and (min-width: 760px) {
  .custom-breakpoint {
    display: none;
  }
}

.italic {
  font-style: italic;
}

/* Custom background colors */
.bg-custom-gray {
  background-color: #A39E9E;
}

/* Custom text colors */
.text-custom-green {
  color: #48BB78;
}

/* Custom spacing */
.section-spacing {
  margin: 3rem 0;
}

/* Custom borders */
.custom-border {
  border: 1px solid #E2E8F0;
  border-radius: 0.5rem;
}

/* Custom line heights */
.custom-leading {
  line-height: 1.7;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Custom bullet points */
.custom-bullet {
  color: #48BB78;
  margin-right: 0.5rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #48BB78;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #38A169;
}

.custom-bullets::before {
  content: "•";
  font-size: 24px;
  margin-right: 2px;
}

.custom-bullets::after {
  content: "◦";
  font-size: 24px;
  margin-left: 2px;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* Custom button styles */
.custom-button {
  background-color: #48BB78;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  color: white;
  transition: background-color 0.2s ease;
}

.custom-button:hover {
  background-color: #38A169;
}

/* Number boxes */
.number-box {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #A39E9E;
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.full-disc-before::before {
  content: "•";
  /* Círculo preenchido */
  font-size: 24px;
  margin-right: 8px;
}

.outline-disc-before::before {
  content: "◦";
  /* Círculo vazado */
  font-size: 24px;
  margin-right: 8px;
}


/* Quote box */
.quote-box {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

/* Quote section styles */
.quote-section {
  position: relative;
  margin-bottom: 4rem;
  /* Add extra margin to account for overlapping button */
}

.quote-border {
  border: 1.5px solid #534A45;
  border-radius: 7px;
  padding: 2rem;
  padding-bottom: 4rem;
  /* Extra padding at bottom for button overlap */
}

.quote-button {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Footer */
.footer {
  background-color: #A19995;
  padding: 4rem 0;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.footer-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  height: 2rem;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}

.footer-description {
  width: 80%;
  font-size: 1.1rem;
  line-height: 1.6;
}

.social-info {
  display: flex;
  /* justify-content: start; */
  flex-direction: column;
  gap: 0.5rem;
}

/* .footer-social {
    margin-top: 2rem;
} */

.footer-social h3 {
  font-size: 1.1rem;
  font-weight: 300;
  /* margin-top: 1rem; */
}

.social-description {
  font-size: 1.1rem;
  font-weight: 300;
  /* margin-top: 1rem; */
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
}

.social-icons {
  display: flex;
  /* gap: 1rem; */
  margin: 1rem 0;
}

.social-icons img {
  width: 2rem;
  height: 2rem;
}

.footer-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info h3 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--text-white);
  text-align: justify;
  display: flex;
  align-items: center;
  /* gap: 0.5rem; */
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-brand {
    align-items: center;
    justify-content: center;
  }
}

.padding-right-8 {
  padding-right: 8px;
}

#img-player{
  object-fit: contain;
}

.text-7xl {
  margin-top: -15px;
}

.social-icon{
  width: 20px;
  height: 20px;
}

/* Floating Menu Styles */
#floating-menu {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#floating-menu .full-disc-before::before,
#floating-menu .outline-disc-before::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#floating-menu .full-disc-before::before {
    background-color: #5C4A3E;
}

#floating-menu .outline-disc-before::before {
    border: 2px solid #5C4A3E;
}

#floating-menu a:hover.full-disc-before::before {
    transform: scale(1.2);
}

#floating-menu a:hover.outline-disc-before::before {
    background-color: #5C4A3E;
    transform: scale(1.2);
}
