/* Estilos para a página section */

.margin-container {
  margin-top: 120px;
  margin-bottom: 120px;
}

.section-content {
  background: var(--white);
  margin: 0 auto;
}

.centered-highlight {
  background: var(--white-green);
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.centered-content-highlight {
  background: var(--white-green);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.section-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  min-height: 500px;
  background: var(--white);
}

.section-green-grid{
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 500px;
  background: var(--white-green);
}

.section-white-grid{
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 500px;
  background: var(--white);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05);
}

.hero-image, .content-image {
  flex: 1;
  height: 700px;
  overflow: hidden;
}

.hero-image img, .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content{
  flex: 1;
  padding-left: 20px;
  padding-right: 40px;
}

.content-grid{
  flex: 1;
  padding-left: 80px;
  padding-right: 40px;
}

.hero-content h1, .content-grid h1, .content-text h1 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}

.strong {
  font-weight: 700;
}

.hero-content p, .content-grid p, .content-text p {
  font-size: 14px;
  margin-top: 20px;
}

.container-centered{
  margin-top: 60px;
  margin-bottom: 60px;
}

.container-centered h1 {
  font-size: 28px;
  font-weight: 400;
}

.container-centered p {
  font-size: 14px;
}

.container-columns {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
}

/* Accordion Styles */
.accordion {
  width: 100%;
  margin-top: 30px;
}

.accordion-item {
  background: var(--white-green);
  border-radius: 30px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  cursor: pointer;
  background: var(--white-green);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: var(--white-green);
}

.accordion-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-grey);
  margin: 0;
}

.accordion-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--light-green);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white-green);
  text-align: left;
}

.accordion-content p {
  margin: 0;
  padding: 0 25px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-grey);
}

/* Active state */
.accordion-item.active .accordion-content {
  max-height: 3000px;
  padding-top: 0;
}

/* Serviços */

/* Seção de Serviços */
.services-section {
  padding: 80px 0;
  background: var(--white-green);
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inspiration-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: var(--light-green);
  border-radius: 2px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary-grey);
  margin: 0;
}

.inspiration-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.inspiration-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: var(--light-green);
  border-radius: 2px;
}

.inspiration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.inspiration-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 15px;
}

.inspiration-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary-grey);
  margin: 0;
}

/* Button CTA*/
.button-cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  cursor: pointer;
}

.cta-left {
  display: flex;
  justify-content: flex-start;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-green);
  font-family: var(--font-family);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  border: none;
  border-radius: 32px;
  padding: 0 0 0 22px;
  height: 40px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}

.cta-text {
  flex: 1;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-arrow-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}

.cta-arrow-circle {
  width: 46px;
  height: 46px;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-arrow-icon {
  width: 20px;
  height: 20px;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateX(5px);
}

/* Responsivo */
@media (max-width: 1200px) {

  .section-hero, .section-green-grid{
    min-height: 300px;
  }

  .section-green-grid{
    gap: 40px;
  }

  .hero-content, .content-grid {
    padding-left: 0;
    padding-right: 20px;
  }

  .hero-image, .content-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
  }

  .hero-content p, .content-text p, .content-grid p {
    font-size: 14px;
  }

  .hero-content h1, .content-grid h1, .content-text h1 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
  }

  .margin-container {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .container-centered p {
    font-size: 14px;
  }

  .container-centered h1 {
    font-size: 24px;
  }

  .section-green-grid, .section-white-grid {
    min-height: 400px;
  }

  .padding-green {
    padding-left: 0;
    padding-right: 40px;
  }

  .padding-white {
    padding-left: 40px;
    padding-right: 0;
  }
}

/* Responsivo para serviços */
@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .inspiration-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .inspiration-card {
    padding: 25px 20px;
  }

  .inspiration-card h3 {
    font-size: 18px;
  }

  .inspiration-card p {
    font-size: 14px;
  }

  .section-hero {
    flex-direction: column-reverse;
    gap: 30px;
    min-height: auto;
    margin-bottom: 0;
  }

  .section-green-grid {
    flex-direction: column-reverse;
    gap: 30px;
    min-height: 300px;
    padding-top: 60px;
    margin-bottom: -4px;
    overflow: hidden;
    border-bottom: none;
  }

  .section-white-grid {
    flex-direction: column;
    gap: 30px;
    min-height: 300px;
    padding-top: 60px;
    margin-bottom: -4px;
    box-shadow: none;
    overflow: hidden;
    border-bottom: none;
  }

  .hero-image, .content-image {
    height: 300px;
    width: 100%;
  }

  .hero-content, .content-grid {
    padding: 0 10px;
    text-align: center;
  }

  .accordion-header {
    padding: 15px 20px;
  }

  .accordion-header h3 {
    font-size: 14px;
  }

  .accordion-content p {
    padding: 0 20px 15px;
    font-size: 14px;
  }

  .container-columns {
    width: 100%;
    margin-bottom: 30px;
  }

  .cta-left {
    justify-content: center;
  }
}

/* Animações de Scroll */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay para animações em sequência */
.fade-in-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-in-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-in-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-in-up.delay-5 {
  transition-delay: 0.5s;
}

/* Animação específica para cards */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.inspiration-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.inspiration-card.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Animação para o accordion */
.accordion-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, all 0.3s ease;
}

.accordion-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animação para imagens */
.fade-in-image {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in-image.animate {
  opacity: 1;
}

/* Animação para hero image */
.hero-image {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-image.animate {
  opacity: 1;
}