
/*=============== (IDENTIDADE VISUAL) ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --first-color: #2D4739; /* Verde Escuro (Cor principal) */
  --first-color-alt: #2C5D63; /* Azul Petróleo (Acento/Hover) */
  --title-color: #2D4739; /* Títulos principais em verde */
  --text-color: #4A4A4A; /* Cinza Grafite (Texto) */
  --body-color: #F6F3EF; /* Bege Areia (Cor de fundo) */
  --container-color: #ffffff;
  --border-color: #e0e0e0;

  /*========== Font and typography ==========*/
  --body-font: 'Roboto', sans-serif;
  --title-font: 'Poppins', sans-serif; /* Nova fonte para títulos */
  --biggest-font-size: 2rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;

  /*========== z-index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: var(--font-semibold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 4rem 0 ;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: 2.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background-color: var(--container-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--first-color);
  font-weight: 700;
  font-family: var(--title-font);
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-family: var(--title-font);
  font-weight: var(--font-semibold);
  transition: color .3s;
}

.nav__link:hover {
  color: var(--first-color-alt);
}

.nav__menu {
    display: none;
}


/*=============== HERO ===============*/
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./assets/images/hero-background.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 9rem 0 5rem;
    color: #fff;
}

.hero__container {
    text-align: center;
}

.hero__title {
    font-size: var(--biggest-font-size);
    color: #fff;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
    font-family: var(--body-font);
}

.hero__location {
    font-size: var(--normal-font-size);
    margin-bottom: 2rem;
    font-family: var(--body-font);
}

.button {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .5rem;
    font-family: var(--title-font);
    font-weight: var(--font-semibold);
    transition: background-color .3s;
}

.button:hover {
    background-color: var(--first-color-alt);
}

/*=============== ABOUT ===============*/
.about__container {
    gap: 2.5rem;
}

.about__card {
    text-align: center;
    background-color: var(--container-color);
    padding: 2rem 1.5rem;
    border-radius: .5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.about__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid var(--first-color);
    object-fit: cover;
}

.about__name {
    font-size: var(--h3-font-size);
    margin-bottom: .25rem;
}

.about__crea {
    font-size: var(--small-font-size);
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--body-font);
}

.about__description {
    font-family: var(--body-font);
}


/*=============== SERVICES ===============*/
.services {
  background-color: var(--container-color);
} 
.services__container {
    gap: 2rem;
}
.services__content {
    background-color: var(--body-color);
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 10px 8px 15px 0px rgb(0 0 0 / 18%);
}

.services__title {
    font-size: var(--h3-font-size);
    color: var(--first-color-alt);
    margin-bottom: 1rem;
    text-align: center;
}

.services__list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: .75rem;
    font-family: var(--body-font);
}

.services__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--first-color-alt);
    font-weight: var(--font-semibold);
}

/*=============== PROCESS ===============*/
.process__step {
    text-align: center;
    padding: 1rem;
}

.process__number {
    width: 50px;
    height: 50px;
    background-color: var(--first-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: var(--font-semibold);
    margin-bottom: 1rem;
}

.process__title {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
}

.process__description {
    font-family: var(--body-font);
}

/*=============== CARROSSEL PROCESSO (SWIPER) ===============*/

/* Estilo da Paginação */
.swiper-pagination-bullet-active {
    background-color: var(--first-color);
}

  .process__container.swiper {
    padding-bottom: 3rem;
}

/* Estilo dos Botões de Navegação no Mobile */
.process__container .swiper-button-next,
.process__container .swiper-button-prev {
    color: var(--first-color);
}

.process__container .swiper-button-next::after,
.process__container .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: 800;
}


/* LÓGICA RESPONSIVA */
@media screen and (min-width: 768px) {
    /* Em telas de desktop, a classe swiper-wrapper vira uma grade */
    .process__container .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    /* Esconde os elementos de navegação do carrossel no desktop */
    .process__container .swiper-button-next,
    .process__container .swiper-button-prev,
    .process__container .swiper-pagination {
        display: none;
    }
}

/* Garante que o card não seja esmagado */
.process__step.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*=============== TESTIMONIALS (DEPOIMENTOS) - NOVO ESTILO ===============*/
.testimonials {
    background-color: var(--container-color); /* Fundo branco para destacar os depoimentos */
}

.testimonial__card {
    background-color: var(--body-color); 
    padding: 1.5rem;
    border-radius: .5rem;
    border-left: 5px solid var(--first-color);
}

.testimonial__card p {
    margin-bottom: 1rem;
    font-style: italic;
    font-family: var(--body-font);
}

.testimonial__card cite {
    font-weight: var(--font-medium);
    color: var(--title-color);
    font-family: var(--body-font);
}

/*=============== FOOTER (RODAPÉ) - NOVO ESTILO ===============*/
.footer {
    background-color: var(--first-color); /* Verde escuro para um rodapé forte e de marca */
    color: var(--body-color); /* Texto bege para contraste */
    text-align: center;
    padding: 3rem 0;
}

.footer__container a {
    color: #fff; /* Links em branco para maior destaque */
    font-weight: var(--font-medium);
}

.footer__title {
    color: #fff;
    font-size: var(--h3-font-size);
    margin-bottom: .5rem;
}

.footer__crea {
    font-size: var(--small-font-size);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer__contact {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
}

.footer__contact a:hover {
    text-decoration: underline;
}

.footer__quote {
    font-size: var(--small-font-size);
    font-style: italic;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.9;
}

/*=============== WHATSAPP BUTTON ===============*/
/* Mantemos a cor original do WhatsApp por ser universalmente reconhecida */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: var(--z-fixed);
    transition: transform .3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/*=============== MEDIA QUERIES ===============*/
@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
  
  .nav__menu {
      display: block;
  }
  .process__container.swiper {
    padding-bottom: 3rem;
}
  .about__container,
  .services__container,
  .testimonials__container {
      grid-template-columns: repeat(2, 1fr);
  }

  .process__container {
      grid-template-columns: repeat(4, 1fr);
  }
  
  .footer__contact {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section__title {
      margin-bottom: 4rem;
  }
  
  .hero {
      padding: 12rem 0 8rem;
  }
  
  .about__container {
      padding: 0 4rem;
  }
  .process__container.swiper {
    padding-bottom: 0rem;
}
}

/*=============== ANIMAÇÕES ===============*/
/* Efeito Levitar nos Cards */
.about__card,
.services__content,
.testimonial__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .about__card:hover,
  .services__content:hover,
  .testimonial__card:hover {
    transform: translateY(-8px);
    
  }
}