/* Reset & Global Styles */
:root {
  --color-green-50: #f0fdf4;
  --color-green-100: #dcfce7;
  --color-green-600: #16a34a;
  --color-green-700: #15803d;
  --color-gray-200: #e5e7eb;
  --color-gray-400: #9ca3af;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-white: #ffffff;
  --color-yellow-400: #facc15;
  --color-blue-500: #3b82f6;
  --color-orange-500: #f97316;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-white);
  color: var(--color-gray-800);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.logo img {
  width: 180px; /* Defina aqui a largura que você desejar, ex: 180 pixels */
  height: auto; /* Isso garante que a altura se ajuste para manter a proporção */
}

.hero-image {
  width: 500px; /* Defina aqui a largura que você desejar, ex: 180 pixels */
  height: auto;
}

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

.card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-gray-600);
  max-width: 42rem;
  margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border: none;
}

.btn-primary {
  background-color: var(--color-green-600);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-green-700);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  background-color: var(--color-white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-800);
}

.main-nav {
  display: none;
} /* Hidden on mobile */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
    gap: 1.5rem;
  }
}

.main-nav a {
  text-decoration: none;
  color: var(--color-gray-600);
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--color-green-600);
}

.hero-section {
  background-image: linear-gradient(
    to bottom right,
    var(--color-green-50),
    var(--color-green-100)
  );
  padding: 4rem 0;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    margin-top: 1rem;
    width: 80%;
    max-width: 300px;
  }

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

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
  }
}

.hero-text {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-text {
    width: 600px;
    text-align: left;
  }
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  border-radius: 0.5rem;
  max-width: 100%;
  height: auto;
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
}
.google-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.excellent-text {
  font-size: 1.5rem;
  font-weight: 700;
}
.stars {
  display: flex;
  gap: 0.25rem;
}
.star-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-yellow-400);
}
.review-count {
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.google-logo {
  height: 2.5rem;
  width: auto;
}

.starts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.review-cards-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .review-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.author-initial {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
}
.initial-t {
  background-color: var(--color-blue-500);
}
.initial-l {
  background-color: var(--color-orange-500);
}

.author-name {
  font-weight: 600;
}

.stars-small {
  display: flex;
  gap: 0.25rem;
}
.star-icon-small {
  width: 1rem;
  height: 1rem;
  color: var(--color-yellow-400);
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-image: linear-gradient(
    to bottom right,
    var(--color-green-50),
    var(--color-green-100)
  );
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 0;
  overflow: hidden;
}
.service-card-image {
  position: relative;
  height: 12rem;
  background-color: var(--color-gray-200);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-green-600);
}

.service-card-content {
  background-color: var(--color-green-600); /* Adjusted to make text visible */
  color: var(--color-white);
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* About/Norms Section */
.about-section {
  padding: 4rem 0;
}
.narrow-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-item {
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
}

.accordion-trigger {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-gray-800);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--color-gray-600);
}

.accordion-content p {
  padding-bottom: 1.5rem;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background-color: var(--color-green-600);
  color: var(--color-white);
}

.benefits-container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item h3 {
  font-weight: 600;
}
.benefit-item p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Process Section */
.process-section {
  padding: 4rem 0;
  background-image: linear-gradient(
    to bottom right,
    var(--color-green-50),
    var(--color-green-100)
  );
}
.process-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  text-align: center;
}
.process-step {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-green-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
}
.process-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.process-card p {
  color: var(--color-gray-600);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}
.simple-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--color-gray-200);
  border-radius: 0;
}
.simple-accordion .accordion-trigger {
  padding: 1rem 0;
}
.simple-accordion .accordion-content {
  padding: 0;
}
.simple-accordion .accordion-content p {
  padding: 0.5rem 0 1.5rem 0;
}

/* Footer */
.footer {
  background-color: var(--color-gray-900);
  color: var(--color-white);
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col p,
.footer-col li {
  color: var(--color-gray-400);
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col a {
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--color-white);
}
.footer-bottom {
  border-top: 1px solid #374151; /* gray-800 */
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--color-gray-400);
}

/* Testimonial Section (Carrossel) */
.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-container::-webkit-scrollbar {
  display: none;
}
.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#prev-slide {
  left: -22px;
}
#next-slide {
  right: -22px;
}
.review-card {
  flex: 0 0 380px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.author-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.author-initial.initial-l {
  background-color: var(--color-green-600);
}
.author-name {
  font-weight: 600;
}
