/* ===== Reset e Variáveis ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --azul-metálico: #1c4e80;
  --cinza-aco: #5c5c5c;
  --grafite-escuro: #2c2c2c;
  --branco: #ffffff;
  --cinza-claro: #f8f9fa;
  --azul-hover: #163a5f;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--grafite-escuro);
  line-height: 1.6;
  background-color: var(--branco);
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem 0;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.section-header h2 {
  margin-bottom: 1.2rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--cinza-aco);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== Header ===== */
header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(124, 128, 133, 0.966);
  backdrop-filter: blur(10px);
  z-index: 2000;
  padding: 2rem 0;
  transition: background 0.3s;
}

header.navbar.scrolled {
  background: #1c4e80c9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  line-height: 0; /* Remove espaço extra embaixo da imagem */
}

.logo img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  transform: scale(4);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: rgba(0, 217, 255, 0.856);
  text-decoration: none;
}

/* ===== Hero ===== */
.hero {
  height: 88vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.705), rgba(0, 0, 0, 0.705)),
    url(./img/city-sp.jpg) no-repeat center center/cover;
  color: var(--branco);
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.slogan {
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2rem;
}

/* ===== Seções ===== */
section {
  scroll-margin-top: 80px;
}

.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--cinza-claro);
}

.bg-blue-light {
  background-color: rgba(28, 78, 128, 0.03);
}

/* ===== Apresentação ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.intro-text {
  text-align: left;
}

.intro-text p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.intro-lead {
  font-size: 1.25rem;
  color: #173a57;
  margin: 0.6rem 0;
}

.intro-desc {
  color: var(--cinza-aco);
  margin-bottom: 1rem;
}

.ap-info {
  margin-top: 0.7rem;
}

.ap-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: var(--cinza-aco);
}

.ap-bullets li {
  background: rgba(28, 78, 128, 0.06);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.ap-stats {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.ap-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.ap-stat-value {
  font-weight: 700;
  color: var(--azul-metálico);
  font-size: 1.05rem;
}

.ap-stat-label {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.85);
}

.cta-group {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.btn-outline {
  background: transparent;
  color: var(--azul-metálico);
  border: 1px solid rgba(28, 78, 128, 0.12);
}

.intro-image .image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.intro-image .image-wrap:hover img {
  transform: scale(1.04);
  transition: transform 0.5s ease;
}

.image-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.ap-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.benefit-tag {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.02rem;
  color: var(--cinza-aco);
  line-height: 1.5;
}

.benefit-tag i {
  color: var(--azul-metálico);
  font-size: 1.1rem;
  min-width: 20px;
  margin-top: 0.2rem;
}

/* ===== Dados Técnicos (Atualizada) ===== */
.tech-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.tech-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.feature-card i {
  font-size: 1.6rem;
  color: var(--azul-metálico);
  min-width: 36px;
  text-align: center;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--grafite-escuro);
}

.feature-card p {
  font-size: 1.05rem;
  color: var(--cinza-aco);
  margin: 0;
}

.offer-card {
  grid-column: span 2;
  border-left: 4px solid #2e7d32;
  background: rgba(46, 125, 50, 0.04);
}

.offer-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--azul-metálico);
  margin: 0.3rem 0;
}

.discount-tag {
  font-size: 1rem;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 0.4rem;
}

.tech-image .image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tech-image img {
  display: block;
  width: 100%;
  height: 700px;
  transition: transform 0.5s ease;
}

.tech-image .image-wrap:hover img {
  transform: scale(1.03);
}

.tech-image .image-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.tech-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(28, 78, 128, 0.1);
  padding: 1.2rem;
  border-radius: 10px;
  margin-top: 2.5rem;
  border-left: 4px solid var(--azul-metálico);
  font-weight: 600;
  color: var(--azul-metálico);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tech-highlight i {
  font-size: 1.4rem;
}

/* ===== Localização Estratégica ===== */
.location-section {
  background: var(--cinza-claro);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  height: fit-content;
}

.map-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.location-card {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-card i {
  font-size: 1.6rem;
  color: var(--azul-metálico);
  min-width: 36px;
  text-align: center;
}

.location-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--grafite-escuro);
}

.location-card-content p {
  font-size: 1.05rem;
  color: var(--cinza-aco);
}

.address-full {
  background: var(--azul-metálico);
  color: white;
  padding: 1.2rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
}

/* ===== Oportunidade ===== */
.opportunity-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.opp-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

.opp-card:hover {
  transform: translateY(-6px);
}

.opp-card i {
  font-size: 2.2rem;
  color: var(--azul-metálico);
  margin-bottom: 1rem;
}

.opp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--azul-metálico);
}

/* ===== Galeria ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 240px; /* Aumentado — ajuste conforme desejado */
  object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img:hover {
  transform: translateY(-8px);
}

.gallery-item p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--cinza-aco);
  text-align: center;
}

/* ===== Contato ===== */
.contact-section {
  background: linear-gradient(
    to right,
    var(--azul-metálico),
    var(--grafite-escuro)
  );
  color: white;
  text-align: center;
}

.contact-section .container {
  max-width: 1100px;
}

.contact-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-person {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
}

.btn-email {
  background-color: white;
  color: var(--azul-metálico);
}

.btn-email:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.contact-grid {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.6rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 760px;
}

.contact-card h3 {
  margin-bottom: 0.6rem;
  color: #eef6ff;
}

.contact-card .muted {
  color: rgba(230, 238, 249, 0.85);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0.9rem 0;
  color: #ffffff;
}

.contact-item i {
  font-size: 1.1rem;
  color: #fff;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.contact-item a,
.contact-item span {
  display: block;
  color: #e6eef9;
  text-decoration: none;
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  justify-content: flex-start;
}

.contact-actions .btn {
  padding: 0.8rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.contact-actions .btn-email {
  background: transparent;
  color: #e6eef9;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-actions .btn-whatsapp {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.18);
}

.contact-actions .btn-plataforma {
  background: rgba(255, 166, 0, 0.76);
  color: #e6eef9;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-plataforma:hover {
  background: #ff9800;
  transform: translateY(-3px);
}

.consultant {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.consultant-info {
  text-align: left;
}
.consultant-name {
  display: block;
  font-size: 1.15rem;
  color: #fff;
}

.consultant-role,
.consultant-hours {
  display: block;
  color: rgba(230, 238, 249, 0.85);
  font-size: 0.95rem;
}

.contact-note {
  margin-top: 0.6rem;
  color: rgba(230, 238, 249, 0.85);
  font-style: italic;
}

/* ===== Footer ===== */
.footer {
  background: rgb(85, 85, 85);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.footer-contact i {
  color: #25d366;
  min-width: 20px;
}

.footer-slogan {
  font-style: italic;
  margin: 1.5rem 0;
  padding-left: 0.5rem;
  border-left: 3px solid var(--azul-metálico);
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column.center {
  text-align: center;
}
.footer-column.center ul {
  display: inline-block;
}

/* ===== WhatsApp Flutuante ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: transform 0.3s;
}

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

/* ===== Responsividade ===== */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }

  .hero-content {
    max-width: 800px;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  /* Layout */
  .intro-grid,
  .tech-data,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .opportunity-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Imagens e Cards */
  .intro-image,
  .tech-image {
    max-width: 700px;
    margin: 2rem auto 0;
  }

  .intro-image img,
  .tech-image img {
    height: 500px;
  }

  .gallery-item img {
    height: 220px;
  }

  /* Navegação */
  .nav-links {
    gap: 1.2rem;
    font-size: 0.95rem;
  }

  /* Stats e Features */
  .ap-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-card {
    padding: 1.3rem;
  }

  .map-wrapper iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* Typography */
  .hero h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  /* Layout */
  .tech-details {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  /* Cards e Componentes */
  .feature-card,
  .location-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .feature-card i,
  .location-card i {
    font-size: 2rem;
    margin: 0 auto 0.8rem;
  }

  .btn {
    width: 100%;
    margin: 0.8rem 0 !important;
    justify-content: center;
  }

  /* Outros Elementos */
  .tech-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-grid {
    padding: 0 1rem;
  }

  .footer-content {
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  /* Layout & Spacing */
  .section {
    padding: 3rem 0;
  }

  .container {
    width: 92%;
  }

  /* Typography */
  .hero h1 {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .slogan {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  /* Components */
  .gallery-item img {
    height: 200px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer {
    padding: 2rem 0 1.5rem;
  }
}

@media (max-width: 400px) {
  /* Typography */
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  /* Components */
  .gallery-item img {
    height: 180px;
  }

  .ap-stat {
    min-width: 100%;
  }

  .contact-card {
    padding: 1.2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Lightbox mobile adjustments */
.custom-lightbox .clb-inner {
  padding: 0.5rem;
}
.custom-lightbox .clb-close {
  top: 0.5rem;
  right: 0.5rem;
}
.custom-lightbox .clb-prev,
.custom-lightbox .clb-next {
  padding: 1rem 0.5rem;
}

/* Custom Lightbox */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-lightbox.open {
  display: block;
  opacity: 1;
}

.custom-lightbox .clb-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-lightbox .clb-viewport {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-lightbox .clb-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.custom-lightbox .clb-caption {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 800px;
}

.custom-lightbox .clb-close,
.custom-lightbox .clb-prev,
.custom-lightbox .clb-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  padding: 1rem;
  transition: all 0.3s ease;
  opacity: 0.7;
  z-index: 10;
}

.custom-lightbox .clb-close:hover,
.custom-lightbox .clb-prev:hover,
.custom-lightbox .clb-next:hover {
  opacity: 1;
  transform: scale(2.0);
}

.custom-lightbox .clb-close {
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
}

.custom-lightbox .clb-prev,
.custom-lightbox .clb-next {
  top: 50%;
  transform: translateY(15%);
  padding: 2rem 1rem;
  font-size: 3rem;
}

.custom-lightbox .clb-prev {
  left: 0;
}

.custom-lightbox .clb-next {
  right: 0;
}

.btn {
  text-decoration: none !important;
}

.btn:hover {
  text-decoration: none !important;
}

.whatsapp-float {
  text-decoration: none !important;
}
