/* ============================
   Layout base / estrutura
   ============================ */

.page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.bg-pattern,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

/* reaproveita cores do tema definidas no cabecalho */
:root {
  --as-radius-lg: 18px;
  --as-radius-xl: 22px;
  --as-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.25);
  --as-border-soft: 1px solid rgba(233, 238, 251, 0.12);
}

.as-section {
  padding: 60px 0;
}

@media (max-width: 767px) {
  .as-section {
    padding: 40px 0;
  }
}

/* ============================
   Section heading / títulos
   ============================ */

.section-heading {
  margin-bottom: 40px;
}

.section-heading .section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading .section-subtitle {
  font-size: 15px;
  opacity: 0.9;
}

/* ============================
   HERO (Análise de Site)
   ============================ */

.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) { /* Desktop */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-visual {
  position: relative;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-carousel {
  border-radius: 10px;
  overflow: hidden;
}

.hero-carousel .carousel-inner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero-carousel .carousel-indicators li {
  background-color: rgba(233, 238, 251, 0.4);
  border: none;
}

.hero-carousel .carousel-indicators .active {
  background-color: var(--bg-deep); /* Usa a cor do sistema */
}

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

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

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9eefb;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .hero-kicker {
    justify-content: flex-start;
  }
}

.hero-kicker-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #00ffc8; /* Cor de destaque */
  border-radius: 50%;
  margin-right: 10px;
}

.hero-title {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #e9eefb;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.2em;
  }
}

.hero-highlight {
  color: #00ffc8; /* Cor de destaque */
}

.hero-subtitle {
  font-size: 1.1em;
  line-height: 1.6;
  color: rgba(233, 238, 251, 0.8);
  margin-bottom: 20px;
}

.hero-author {
  font-size: 1em;
  color: rgba(233, 238, 251, 0.7);
  margin-bottom: 25px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00ffc8; /* Cor de destaque */
  color: #1a1a2e; /* Cor do texto no botão */
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #00e6b8; /* Tom mais escuro no hover */
  color: #1a1a2e;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary .arrow {
  margin-left: 10px;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(5px);
}

.hero-note {
  font-size: 0.9em;
  color: rgba(233, 238, 251, 0.6);
}

/* Responsivo HERO */

@media (max-width: 991px) {
  .hero {
    padding-top: 100px;
  }
}

/* ============================
   Section Headers (estilo alternativo)
   ============================ */

.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 60px;
}

.section-kicker {
  display: inline-block;
  background-color: rgba(0, 255, 200, 0.1); /* Cor de destaque com transparência */
  color: #00ffc8;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #e9eefb;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1em;
  color: rgba(233, 238, 251, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================
   Cards "O que analisamos"
   ============================ */

.as-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.as-card {
  padding: 18px 18px 16px;
  border-radius: var(--as-radius-lg);
  border: var(--as-border-soft);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1.5;
}

.as-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.as-card-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 8px;
  border: 1px solid rgba(233, 238, 251, 0.2);
  font-size: 18px;
}

/* hover genérico usado pelo JS */
.as-card.as-hover,
.as-timeline-step.as-hover,
.as-portfolio-item.as-hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition: all 0.18s ease-out;
}

/* Responsivo grid de cards */

@media (max-width: 991px) {
  .as-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .as-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   Timeline "Como funciona"
   ============================ */

.as-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.as-timeline-step {
  padding: 18px 16px;
  border-radius: var(--as-radius-lg);
  border: var(--as-border-soft);
  background: rgba(0, 0, 0, 0.28);
  font-size: 14px;
}

.as-timeline-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 8px;
  border: 1px solid rgba(233, 238, 251, 0.4);
}

.as-timeline-step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.as-timeline-step p {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsivo timeline */

@media (max-width: 991px) {
  .as-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .as-timeline {
    grid-template-columns: 1fr;
  }
}

/* ============================
   Portfólio
   ============================ */

.as-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.as-portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(233, 238, 251, 0.18);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.as-portfolio-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.as-portfolio-overlay {
  position: absolute;
  inset: 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.as-portfolio-overlay h5 {
  font-size: 14px;
  margin: 0 0 2px;
  font-weight: 600;
}

.as-portfolio-arrow {
  font-size: 18px;
}

.as-portfolio-item:hover img {
  transform: scale(1.04);
}

.as-portfolio-item:hover .as-portfolio-overlay {
  opacity: 1;
}

/* Responsivo portfólio */

@media (max-width: 991px) {
  .as-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .as-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   Bloco "Quem analisa" (equipes)
   ============================ */

.box-team {
  text-align: center;
  margin-bottom: 20px;
}

.box-team img {
  border-radius: 999px;
  max-width: 120px;
  margin: 0 auto 10px;
}
/* ============================ 
   Formulário de contato
   ============================ */

.as-contact-section {
  padding-bottom: 70px;
}

/* Bloco esquerdo: "O que você vai receber" */
.as-contact-info {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 24px 22px;
  border-radius: 18px;
  border: var(--as-border-soft);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  text-align: left;
}

@media (max-width: 991px) {
  .as-contact-info {
    text-align: center;
  }
}

/* Ícone circular no topo do bloco */
.as-contact-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(233, 238, 251, 0.4);
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.35);
}

.as-contact-icon i {
  font-size: 20px;
  color: #00ffc8; /* cor de destaque */
}

.as-contact-info h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.as-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.as-contact-info ul li {
  margin-bottom: 4px;
}

.as-contact-note {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 14px;
}

/* Imagem ilustrativa do relatório */
.as-contact-illustration {
  margin-top: 10px;
}

.as-contact-illustration img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(233, 238, 251, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
  .as-contact-illustration img {
    margin: 0 auto;
  }
}

/* Campos do formulário (coluna direita) */
.as-contact-form .form-control {
  border-radius: 8px;
}

/* ============================
   Ajustes genéricos
   ============================ */

.form-note {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .as-contact-section .btn {
    margin-top: 8px;
  }

  .hero-actions .btn-primary {
    width: 100%;
  }
}


/* =====================================================
   ORDEM VISUAL DAS SEÇÕES - AZUL TOM SOBRE TOM
   1ª clara | 2ª escura | 3ª clara | 4ª escura | alternância até o footer
   ===================================================== */
.page-wrapper,
.page-wrapper main {
  background: #eaf6ff;
}

#about,
#as-processo,
#team {
  background: linear-gradient(135deg, #eef9ff 0%, #dff1ff 48%, #cde8fb 100%) !important;
  color: #10243f !important;
}

#services,
#portfolio,
#contact {
  background: linear-gradient(135deg, #020918 0%, #071b36 48%, #0b2a55 100%) !important;
  color: #f8fbff !important;
}

#about .section-title,
#about .section-subtitle,
#about .hero-title,
#about .hero-subtitle,
#about .hero-author,
#as-processo .section-title,
#as-processo .section-subtitle,
#team .section-title,
#team .section-subtitle,
#team .box-team h4,
#team .box-team p,
#team .box-team a {
  color: #10243f !important;
}

#services .section-title,
#services .section-subtitle,
#services .as-card h4,
#services .as-card p,
#portfolio .section-title,
#portfolio .section-subtitle,
#contact .section-title,
#contact .section-subtitle,
#contact h5,
#contact p,
#contact li,
#contact label {
  color: #f8fbff !important;
}

#about .hero-highlight,
#about .hero-kicker,
#about .hero-kicker span,
#about .hero-author strong,
#as-processo .as-timeline-step h4,
#team .box-team h4 a {
  color: #006db8 !important;
}

#services .as-card,
#portfolio .as-portfolio-item,
#contact .as-contact-card,
#contact .as-form-card,
#contact .as-location-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

#as-processo .as-timeline-step,
#team .box-team,
#about .hero-visual {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(16, 36, 63, 0.12) !important;
  box-shadow: 0 16px 35px rgba(11, 42, 85, 0.10) !important;
}

#about .hero-note,
#as-processo .as-timeline-step p,
#team .box-team p {
  color: #3f5d7a !important;
}

#services .as-card-icon,
#contact .as-contact-icon,
#contact .as-location-icon {
  background: rgba(0, 191, 255, 0.12) !important;
  color: #00d4ff !important;
  border-color: rgba(0, 212, 255, 0.35) !important;
}

#as-processo .as-timeline-icon {
  background: #006db8 !important;
  color: #ffffff !important;
  border-color: #006db8 !important;
}

/* =====================================================
   CONTATO COM LOCALIZAÇÃO VISÍVEL EM CARD
   ===================================================== */
.as-contact-section {
  padding: 70px 0 80px;
}

.as-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.as-contact-card,
.as-form-card,
.as-location-card {
  border-radius: 20px;
  padding: 26px 24px;
  margin-bottom: 24px;
}

.as-form-card {
  height: calc(100% - 24px);
}

.as-contact-icon,
.as-location-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 14px;
}

.as-contact-icon i,
.as-location-icon i {
  font-size: 22px;
  color: #ffffff !important;
}

.as-location-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.as-location-header h5 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.as-location-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.as-map-wrap {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.as-map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 260px;
}

.as-contact-form .form-control {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(233, 238, 251, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.as-contact-form textarea.form-control {
  min-height: 126px;
}

.as-contact-form .form-control::placeholder {
  color: rgba(248, 251, 255, 0.72);
}

.as-contact-form .form-control:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.as-contact-form .jc-form-privacy,
.as-contact-form .jc-form-privacy p,
.as-contact-form .jc-form-privacy a,
.as-contact-form .form-note {
  color: rgba(248, 251, 255, 0.88) !important;
}

/* Footer/bottom widget na cor escura profissional */
#bottom,
.bottom-widget,
footer,
.footer,
.site-footer,
#footer,
.sub-footer {
  background: linear-gradient(135deg, #020918 0%, #071b36 48%, #0b2a55 100%) !important;
  color: #f8fbff !important;
}

#bottom h1,
#bottom h2,
#bottom h3,
#bottom h4,
#bottom h5,
#bottom p,
#bottom a,
.bottom-widget h1,
.bottom-widget h2,
.bottom-widget h3,
.bottom-widget h4,
.bottom-widget h5,
.bottom-widget p,
.bottom-widget a,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer p,
footer a,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer p,
.footer a,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer p,
#footer a,
.sub-footer h1,
.sub-footer h2,
.sub-footer h3,
.sub-footer h4,
.sub-footer h5,
.sub-footer p,
.sub-footer a {
  color: #f8fbff !important;
}

@media (max-width: 991px) {
  .as-contact-row {
    display: block;
  }

  .as-form-card {
    height: auto;
  }
}


/* =====================================================
   CARROSSEL DE COLABORADORES - AJUSTE SEM ALTERAR PHP
   Mantém 4 cards no desktop, 1 no mobile e imagem clicável pelo link.
   ===================================================== */
#team {
  overflow: hidden;
}

#team .container {
  position: relative;
}

#team #carousel-analise-team-desktop,
#team #carousel-analise-team-mobile {
  position: relative;
  width: 100%;
}

#team #carousel-analise-team-mobile {
  display: none;
}

#team .carousel-inner {
  overflow: hidden;
}

#team .carousel-item,
#team .carousel-inner > .item {
  width: 100%;
  min-height: 1px;
}

#team .carousel-item:not(.active),
#team .carousel-inner > .item:not(.active) {
  display: none !important;
}

#team .carousel-item.active,
#team .carousel-inner > .item.active {
  display: block !important;
}

#team #carousel-analise-team-desktop .carousel-item > .row,
#team #carousel-analise-team-desktop .carousel-inner > .item > .row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 24px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#team #carousel-analise-team-desktop .carousel-item > .row > [class*="col-"],
#team #carousel-analise-team-desktop .carousel-inner > .item > .row > [class*="col-"] {
  float: none !important;
  width: calc(25% - 18px) !important;
  max-width: calc(25% - 18px) !important;
  flex: 0 0 calc(25% - 18px) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#team .box-team {
  width: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin: 0 !important;
  padding: 26px 18px 24px !important;
  border-radius: 20px !important;
}

#team .box-team a {
  text-decoration: none !important;
}

#team .box-team img {
  width: 170px !important;
  height: 170px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto 18px !important;
  padding: 14px !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 34px rgba(11, 42, 85, 0.18) !important;
}

#team .box-team h4 {
  margin: 0 0 8px !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

#team .box-team p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

#team .carousel-control,
#team .carousel-control-prev,
#team .carousel-control-next {
  width: 48px !important;
  height: 48px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border-radius: 999px !important;
  background: rgba(2, 9, 24, 0.65) !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-shadow: none !important;
}

#team .carousel-control.left,
#team .carousel-control-prev {
  left: 6px !important;
}

#team .carousel-control.right,
#team .carousel-control-next {
  right: 6px !important;
}

#team .carousel-control .fa,
#team .carousel-control-prev .fa,
#team .carousel-control-next .fa {
  color: #ffffff !important;
  font-size: 24px !important;
}

@media (max-width: 991px) {
  #team #carousel-analise-team-desktop .carousel-item > .row,
  #team #carousel-analise-team-desktop .carousel-inner > .item > .row {
    flex-wrap: wrap !important;
  }

  #team #carousel-analise-team-desktop .carousel-item > .row > [class*="col-"],
  #team #carousel-analise-team-desktop .carousel-inner > .item > .row > [class*="col-"] {
    width: calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
    flex: 0 0 calc(50% - 12px) !important;
  }
}

@media (max-width: 767px) {
  #team #carousel-analise-team-desktop {
    display: none !important;
  }

  #team #carousel-analise-team-mobile {
    display: block !important;
  }

  #team #carousel-analise-team-mobile .carousel-item > .row,
  #team #carousel-analise-team-mobile .carousel-inner > .item > .row {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #team #carousel-analise-team-mobile .carousel-item > .row > [class*="col-"],
  #team #carousel-analise-team-mobile .carousel-inner > .item > .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  #team .box-team {
    max-width: 330px !important;
    margin: 0 auto !important;
  }

  #team .carousel-control.left,
  #team .carousel-control-prev {
    left: 8px !important;
  }

  #team .carousel-control.right,
  #team .carousel-control-next {
    right: 8px !important;
  }
}

/* Footer escuro no final da página */
#bottom,
.bottom-widget,
footer,
.footer,
.site-footer,
#footer,
.sub-footer {
  background: linear-gradient(135deg, #020918 0%, #071b36 48%, #0b2a55 100%) !important;
  color: #f8fbff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#bottom *,
.bottom-widget *,
footer *,
.footer *,
.site-footer *,
#footer *,
.sub-footer * {
  color: #f8fbff !important;
}

#bottom a,
.bottom-widget a,
footer a,
.footer a,
.site-footer a,
#footer a,
.sub-footer a {
  color: #ffffff !important;
}
