/* =========================
   RESET BÁSICO / BASE
   ========================= */

/* Reset básico para garantir consistência entre navegadores */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f5f5f5; /* Fundo cinza claro */
    color: #222;
    line-height: 1.5;
}
/* contato */
.contact-section {
  padding: 40px 20px;
  background: #d4d2d5;
  border-top: 10px solid #eee;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}

/* Caixa da esquerda (cinza) */
.contact-info {
 
  border-radius: 12px;
  padding: 22px;
  //box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.phone, .email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  color: #202124;
  border-bottom:  3px dotted #999; 
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #202124;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.phone-link:hover {
  color: #25d366; /* muda para verde ao passar o mouse */
  transform: scale(1.02); /* leve aumento ao hover */
}

.phone-link img {
  display: block; /* remove espaços estranhos */
}

.phone-link {
  color: #202124;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #25d366; /* muda para verde WhatsApp ao passar o mouse */
  text-decoration: underline;
}

/* Caixa do mapa */
.contact-map {
  border-radius: 12px;
  overflow: hidden; /* essencial pro iframe respeitar o radius */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  background: #ddd;
  min-height: 260px;
}

.contact-map iframe {

  border: 0;
  display: block; /* remove “bordas”/espaços estranhos */
}

/* Responsivo (se usa só 1 breakpoint) */
@media (max-width: 899px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
.phone, .email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  color: #202124;
  border-bottom:  2px dotted #999; 
}
  .contact-map {
    max-width: 100%;
    min-height: 240px;
  }
}

/* =========================
   HEADER (TOPO)
   ========================= */

header {
    background: #ffb300; /* Amarelo do topo */
    padding: 15px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    position: relative;
    z-index: 10;
}

/* =========================
   HERO SECTION
   ========================= */

.hero-section {
    position: relative;
    width: 100%;
    height: 400px; /* Altura fixa para desktop */
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text span {
    color: #ffcc00;
}

.hero-text p {
    max-width: 480px;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Botão WhatsApp */
.btn-whats {
    max-width: 270px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #27c21a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-whats:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
    filter: brightness(1.03);

}

.btn-whats img {
  width: 22px;
  height: 22px;
}

/* =========================
   CTA SECTION (CALL TO ACTION)
   ========================= */

.information {
  padding: 45px 0px 20px;
}

.information-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Espaço entre as duas caixas */
}

/* Caixa superior (título) */
.information-title {
  background: #D4D4D4; /* Cinza médio */
  color: #474747; /* Texto escuro */
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 22px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  line-height: 1.3;
}

/* Caixa inferior (descrição) */
.information-description {
  background: #D4D4D4; /* Cinza um pouco mais escuro */
  color: #474747;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 28px 35px;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  line-height: 1.5;
}

/* Responsivo (mobile) */
@media (max-width: 899px) {
  .information-title {
    font-size: 22px;
    padding: 18px 20px;
  }

  .information-description {
    font-size: 17px;
    padding: 22px 20px;
  }
}

/* =========================
   SEÇÕES GERAIS (padding e max-width)
   ========================= */

.services-section,
.gallery-section{
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.clients-section {
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefits-section {
    padding: 0px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
/* =========================
   TÍTULOS H2 (COM LINHAS)
   ========================= */

h2 {
    text-align: center;
    margin: 0 0 40px;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
}
h3 {
    text-align: center;
    margin: 0 0 40px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
}

h2::before,
h2::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: #ccc;
    max-width: 400px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.payments h3::before,
.payments h3::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: #888;
    max-width: 400px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* =========================
   CARDS / GRIDS
   ========================= */

.services,
.benefits,
.clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.9); /* Borda sutil para dar mais "corpo" */
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* <<< Sempre 3 colunas lado a lado em desktop */
    gap: 0; /* <<< Remove o espaçamento entre os cards para ficarem colados */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Sombra para o grupo de cards */
    border-radius: 12px; /* Arredondamento para o grupo de cards */
    overflow: hidden; /* Garante que o arredondamento da borda do grupo funcione */
    border: 1px solid rgba(255,255,255,0.9); /* Borda sutil para o grupo */
}

.services .card {
    background: none; /* Remove o background padrão do .card */
    border-radius: 0; /* Remove o border-radius padrão */
    box-shadow: none; /* Remove a sombra padrão */
    border: none; /* Remove a borda padrão */
    padding: 0; /* Remove o padding padrão */
    display: flex; /* Para que as partes top e bottom se empilhem */
    flex-direction: column;
    text-align: center;
}

/* Parte superior do card de serviço (amarela) */
.services .card-top {
    background-color: #ffb300; /* Amarelo da identidade visual */
    padding: 30px 20px 20px; /* Espaçamento interno */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o ícone e o título */
    justify-content: center;
    color: #fff; /* Cor do texto e ícone */
    flex-grow: 1; /* Faz a parte superior crescer para ocupar o espaço */
}

.services .card-top img {
    width: 160px; /* Tamanho do ícone */
    height: 105px;
    margin-bottom: 5px;

}

.services .card-top h3 {
    color: black;
    font-size: 20px;
    font-weight: 700;
    margin: 0; /* Remove margem padrão do h3 */
    text-align: center;
}

/* Parte inferior do card de serviço (branca) */
.services .card-bottom {
    background-color: #fcfcfc; /* Fundo branco quase cinza claro */
    padding: 15px 20px; /* Espaçamento interno */
    text-align: center;
    color: #555; /* Cor do texto do subtítulo */
    font-size: 14px;
    font-style: italic; /* Deixa o texto em itálico */
    border-top: 1px solid #eee; /* Linha divisória sutil */
}

.services .card-bottom small {
    display: block; /* Garante que o small ocupe sua própria linha */
    margin: 0; /* Remove margem padrão do small */
    font-size: 11pt;
    font-weight: bold;
      white-space: nowrap; /* não quebra */
}

/* Linhas divisórias verticais entre os cards de serviço */
.services .card:not(:last-child) .card-top {
    border-right: 1px solid rgba(255, 255, 255, 0.3); /* Linha branca sutil entre os cards amarelos */
}
.services .card:not(:last-child) .card-bottom {
    border-right: 1px solid #eee; /* Linha cinza sutil entre os cards brancos */
}

/* =========================
   BENEFITS (CARDS COM IMAGEM)
   ========================= */

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards em linha no desktop */
  gap: 8px;
}

.benefit-card {
  background: #efefef;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.benefit-card img {
  max-width: 160px;  /* Largura máxima */
  max-height: 90px;  /* Altura máxima */
  width: 100%;       /* Permite que diminua proporcionalmente */
  height: auto;      /* Mantém a proporção */
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
}


.benefit-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #222;
  font-weight: 800;
  white-space: normal;
}

.benefit-card p {
  font-size: 18px;

  margin: 0;
  color: #444;
}

/* (OPCIONAL) hover bem sutil */
.benefit-card:hover {
  transform: translateY(-1px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Responsivo (mantendo só 1 @media) */
@media (max-width: 899px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr); /* 2 por linha no mobile/tablet */
    gap: 5px;
  }

  .benefit-card {
    padding: 18px 14px;
  }

  .benefit-card img {
    width: 150px;
    height: 120px;
    margin-bottom: 10px;
  }

  .benefit-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    white-space: normal;
  }

  .benefit-card p {
    font-size: 14px;
  }
}

/* =========================
   GALERIA COM SLIDER
   ========================= */

.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 190px; /* Altura fixa */
    display: none;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    object-fit: cover;
    border: 6px solid #fff;
    cursor: pointer;
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery img.active {
    display: block;
    opacity: 1;
}

/* Animações de slide da galeria */
.gallery img.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

.gallery img.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.gallery img.slide-out-left {
    animation: slideOutLeft 0.6s ease forwards;
}

.gallery img.slide-out-right {
    animation: slideOutRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 22px rgba(0,0,0,0.2);
    z-index: 10;
    position: relative;
}

/* Setas do slider da galeria */
.gallery-arrow {
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: #555;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-arrow:hover {
    background: #e8e8e8;
    transform: scale(1.1);
}

.gallery-arrow:active {
    transform: scale(0.95);
}

.gallery-arrow svg {
    pointer-events: none;
    width: 14px;
    height: 14px;
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* =========================
   LIGHTBOX / OVERLAY
   ========================= */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    border: 6px solid #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

/* Botão fechar do lightbox */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    color: #555;
    font-size: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    background: #e8e8e8;
    transform: scale(1.1);
}

/* Setas do lightbox */
.lightbox-arrow {
    position: absolute;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.lightbox-arrow:hover {
    background: #e8e8e8;
    transform: scale(1.15);
}

.lightbox-arrow svg {
    width: 18px;
    height: 18px;
}

.lightbox-arrow-left {
    left: 30px;
}

.lightbox-arrow-right {
    right: 30px;
}

.clients-section {

    padding: 10px 20px;
}

.clients-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #202124;
}

.clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.review-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-card {
    display: none; /* escondido por padrão */
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: flex-start; /* topo alinhado */
    gap: 12px;
    margin-bottom: 10px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.review-header strong {
    display: block;
    font-size: 15px;
    color: #202124;
}

.review-header div {
    display: flex;
    flex-direction: column; /* empilha estrelas e tempo */
}

.stars {
    color: #fbbc04;
    font-size: 18px;
    margin: 4px 0; /* espaçamento entre nome e tempo */
    letter-spacing: 1px;
}

.time {
    font-size: 13px;
    color: #5f6368;
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #3c4043;
}



/* =========================
   FOOTER
   ========================= */

footer {
    background: #2b2f36;
    color: #ccc;
    padding: 40px 20px 28px;
    margin-top: 0px;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: flex-start;
    font-size: 14px;
}

.footer-content strong {
    color: #ffffff;
}

.payments img {
    height: 35px;
    margin-right: 10px;
    vertical-align: middle;
}

.copyright {
    color: #fff;
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    opacity: .7;
}

.tel-text {
  white-space: nowrap; /* não quebra */
  display: inline-block; /* garante que respeite o nowrap */
}
/* =========================
   RESPONSIVIDADE - MOBILE/TABLET
   (Até 899px)
   ========================= */

@media (max-width: 899px) {
    /* Header */
    header {
        font-size: 18px;
        padding: 12px;
    }
.hero-img {
    position: absolute;
    top: 0;
    right: 10px;

}

    /* Hero Section */
    .hero-section {
        height: 280px;
    }

    .hero-text {
        padding-left: 20px;
        padding-right: 15px;
    }

    .hero-text h1 {
        max-width: 90%;
        font-size: 23px;
    }

    .hero-text p {
        font-size: 15px;
        max-width: 75%;
    }

    .btn-whats {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Seções Gerais */
    .services-section,
    .gallery-section,
    .benefits-section,
    .clients-section {
        padding: 20px 40px 15px;
    }

    /* Títulos H2 */
    h2 {
        font-size: 20px;
        gap: 12px;
        margin-bottom: 30px;
    }

    h2::before,
    h2::after {
        max-width: 60px;
    }

    /* Cards Gerais */
    .benefits,
    .clients {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .card {
        padding: 20px;
    }

/* Seção de Serviços */
    .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* <<< Sempre 3 colunas lado a lado em desktop */
    gap: 0; /* <<< Remove o espaçamento entre os cards para ficarem colados */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Sombra para o grupo de cards */
    border-radius: 12px; /* Arredondamento para o grupo de cards */
    overflow: hidden; /* Garante que o arredondamento da borda do grupo funcione */
    border: 1px solid rgba(255,255,255,0.9); /* Borda sutil para o grupo */
    }

.services .card {
    background: none; /* Remove o background padrão do .card */
    border-radius: 0; /* Remove o border-radius padrão */
    box-shadow: none; /* Remove a sombra padrão */
    border: none; /* Remove a borda padrão */
    padding: 0; /* Remove o padding padrão */
    display: flex; /* Para que as partes top e bottom se empilhem */
    flex-direction: column;
    text-align: center;
}

    .services .card-top {
        padding: 25px 15px 15px;
    }

    .services .card-top img {
        width: 120px;
        height: 80px;
    }

    .services .card-top h3 {
        font-size: 18px;
    }

    .services .card-bottom {
        font-size: 13px;
        padding: 12px 15px;
    }


/* Galeria - dentro do @media (max-width: 899px) */
.gallery-wrapper {
    padding: 25px 25px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* <<< 2 imagens por vez em desktop */
    gap: 5px;
}


.gallery img {

    height: 130px; /* Altura menor em mobile */
}

.gallery-arrow {
    width: 20px;
    height: 20px;
}

.gallery-arrow svg {
    width: 12px;
    height: 12px;
}
.gallery-slider {

    gap: 0px;
}

    /* Lightbox */
    .lightbox-close {
        width: 28px;
        height: 28px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }

    .lightbox-arrow {
        width: 28px;
        height: 28px;
    }

    .lightbox-arrow svg {
        width: 16px;
        height: 16px;
    }

    .lightbox-arrow-left {
        left: 15px;
    }

    .lightbox-arrow-right {
        right: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        font-size: 13px;
        gap: 25px;
    }

    .payments img {
        margin: 6px 4px 0;
        height: 30px;
    }

    .copyright {
        font-size: 12px;
    }
}
@media (max-width: 699px) {
    /* Galeria - dentro do @media (max-width: 899px) */
.gallery-wrapper {
    padding: 25px 25px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* <<< 1 imagem por vez em mobile */
    gap: 5px;
}
    /* Seção de Serviços */
    .services {

    grid-template-columns: 1fr; /* <<< 1 card por linha (vertical) em mobile */
    gap: 0; /* <<< Remove o espaçamento entre os cards para ficarem colados */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Sombra para o grupo de cards */
    border-radius: 12px; /* Arredondamento para o grupo de cards */
    overflow: hidden; /* Garante que o arredondamento da borda do grupo funcione */
    border: 1px solid rgba(255,255,255,0.9); /* Borda sutil para o grupo */
    }
}
