
:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #f59e0b;
  --accent2: #2F80ED;
  --light: #f8fafc;
  --gray: #94a3b8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--primary);
  overflow-x: hidden;
}

.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  transition: 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 1.7rem;
    font-weight: 800;
    color: #fff !important;

    max-width: calc(100% - 60px);
}

.navbar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 576px) {

    .navbar-brand {
        font-size: .5rem;
        gap: 8px;
    }

    .navbar-logo {
        width: 70px;
        height: 70px;
    }

}

.navbar-brand span {
  color: var(--accent2);
}

.navbar .nav-link {
  position: relative;
  color: white !important;
  font-weight: 500;
  margin: 0 12px;
  transition: 0.3s ease;
  padding-bottom: 8px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 1.8rem;
  font-weight: 800;

  color: #fff !important;
  text-decoration: none;
}



.navbar-brand:hover {
  color: #fff !important;
}


/* LINHA ANIMADA */

.navbar .nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0%;
  height: 3px;

  background: var(--accent);
  border-radius: 20px;

  transition: 0.3s ease;
}

/* HOVER */

.navbar .nav-link:hover::after {
  width: 100%;
}

/* ACTIVE */

.navbar .nav-link.active::after {
  width: 100%;
}

/* COR AO PASSAR */

.navbar .nav-link:hover {
  color:var(--light)!important;
}

.btn-contact {
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.9)),
    url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?q=80&w=1600&auto=format&fit=crop') center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  color: #dbe4f0;
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: #d97706;
  transform: translateY(-3px);
}

.btn-outline-custom {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.btn-outline-custom:hover {
  background: var(--accent2);
  color: var(--white);
}

.stats {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--accent2);
  font-weight: 700;
}

.stat-item p {
  margin: 0;
  color: #dbe4f0;
}

section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: 12px;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 75px;
  height: 75px;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 25px;
  font-size: 2rem;
  color: var(--accent);
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
}

.about {
  background: var(--primary);
  color: var(--white);
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.about-content h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin: 20px 0;
}

.about-content p {
  color: #cbd5e1;
  line-height: 1.9;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.feature-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
}

.feature-list i {
  color: var(--accent2);
  font-size: 1.2rem;
}

.cta {
  background:
    linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.92)),
    url('https://images.unsplash.com/photo-1537462715879-360eeb61a0ad?q=80&w=1600&auto=format&fit=crop') center/cover;
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  padding: 80px 50px;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: auto;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-card {
  background: var(--white);
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card i {
  font-size: 2.3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.contact-card {
  cursor: pointer;
  transition: all .35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.contact-card-link:hover {
  color: inherit;
}

.contact-card p {
  color: #64748b;
  margin: 0;
}

footer {
  background: #020617;
  color: #94a3b8;
  padding: 40px 0;
  text-align: center;
}

.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.08);
  color: white;
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-buttons,
  .stats {
    justify-content: center;
  }

  .about-content {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .section-title h2,
  .about-content h2,
  .cta h2 {
    font-size: 2rem;
  }

  .cta {
    padding: 60px 25px;
  }
}


/* ================================= */
/* FORMULÁRIO CONTATO */
/* ================================= */

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form .form-control {
  height: 60px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  padding: 0 20px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-form textarea.form-control {
  height: auto;
  padding-top: 18px;
}

.contact-form .form-control:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.2);
}

.contact-form button {
  padding: 16px 35px;
  border-radius: 14px;
  font-weight: 600;
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .contact-form {
    padding: 30px 20px;
  }

}


/* ================================= */
/* SERVIÇOS PAGE */
/* ================================= */

.services-hero {
  min-height: 80vh;
}

.services-page-section {
  padding: 100px 0;
  background: #f8fafc;
}

.service-box-large {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  height: 100%;
}

.service-box-large:hover {
  transform: translateY(-10px);
}

.service-box-large img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-box-content {
  padding: 35px;
}

.service-icon-large {
  width: 75px;
  height: 75px;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
}

.service-box-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
}

.service-box-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-box-content ul {
  padding-left: 20px;
  margin: 0;
}

.service-box-content ul li {
  margin-bottom: 10px;
  color: #334155;
}

/* ================================= */
/* DIFERENCIAIS */
/* ================================= */

.advantages-section {
  background: white;
  padding: 100px 0;
}

.advantage-card {
  background: #f8fafc;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  transition: 0.3s ease;
  border: 1px solid #e2e8f0;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.advantage-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.advantage-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.advantage-card p {
  color: #64748b;
  line-height: 1.7;
}

/* ================================= */
/* PROCESSO */
/* ================================= */

.process-section {
  background: #0f172a;
  padding: 100px 0;
}

.process-section .section-title h2,
.process-section .section-title span {
  color: white;
}

.process-card {
  background: #1e293b;
  padding: 40px 25px;
  border-radius: 22px;
  height: 100%;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--accent2);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
}

.process-card h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* ================================= */
/* CTA FINAL */
/* ================================= */

.cta-final {
  padding: 100px 0;
  background:
    linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.92)),
    url('https://images.unsplash.com/photo-1537462715879-360eeb61a0ad?q=80&w=1600&auto=format&fit=crop') center/cover;
  text-align: center;
  color: white;
}

.cta-final h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-final p {
  color: #cbd5e1;
  max-width: 700px;
  margin: auto auto 35px;
  line-height: 1.8;
}

/* ================================= */
/* RESPONSIVO */
/* ================================= */

@media (max-width: 768px) {

  .service-box-content {
    padding: 28px;
  }

  .service-box-content h3 {
    font-size: 1.5rem;
  }

  .cta-final h2 {
    font-size: 2rem;
  }

}


/* ================================= */
/* QUEM SOMOS PAGE */
/* ================================= */

.about-hero {
  min-height: 100vh;
  padding-top: 140px;
}

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* ================================= */
/* STATS */
/* ================================= */

.about-stats {
  padding: 100px 0;
  background: #f8fafc;
}

.about-stat-card {
  background: white;
  border-radius: 24px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  transition: 0.4s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-stat-card:hover {
  transform: translateY(-10px);
}

.about-stat-card i {
  font-size: 2.7rem;
  color: #f59e0b;
  margin-bottom: 20px;
}

.about-stat-card h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.about-stat-card p {
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* ================================= */
/* HISTORY */
/* ================================= */

.history-section {
  padding: 120px 0;
  background: white;
}

.history-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.history-content span {
  color: var(--accent2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.history-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin: 20px 0;
  line-height: 1.2;
}

.history-content p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-history-list li {
  color: var(--shadow);
  text-transform: uppercase;
}

/* ================================= */
/* VALUES */
/* ================================= */

.values-section {
  padding: 110px 0;
  background: #0f172a;
}

.values-section .section-title h2,
.values-section .section-title span,
.values-section .section-title p {
  color: white;
}

.value-card {
  background: #1e293b;
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
  height: 100%;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.value-card:hover {
  transform: translateY(-10px);
  background: #273449;
}

.value-card i {
  font-size: 3rem;
  color: var(--accent2);
  margin-bottom: 25px;
}

.value-card h4 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.value-card p {
  color: #cbd5e1;
  line-height: 1.8;
}

/* ================================= */
/* RESPONSIVO */
/* ================================= */

@media (max-width: 992px) {

  .about-hero {
    text-align: center;
  }

  .history-content {
    text-align: center;
  }

  .feature-list {
    justify-content: center;
  }

}

@media (max-width: 768px) {

  .history-content h2 {
    font-size: 2rem;
  }

  .about-stat-card h2 {
    font-size: 2.2rem;
  }

}

/* ================================= */
/* MAPA */
/* ================================= */

.map-section {
  padding: 110px 0;
  background: #f8fafc;
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  filter:
    grayscale(0.1)
    contrast(1.05)
    brightness(0.95);
}

/* CARD SOBRE O MAPA */

.map-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
}

.map-info {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);

  color: white;

  padding: 22px 28px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  gap: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.map-info i {
  font-size: 2rem;
  color: var(--accent);
}

.map-info h5 {
  margin: 0;
  font-weight: 700;
}

.map-info p {
  margin: 0;
  color: #cbd5e1;
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .map-container iframe {
    height: 400px;
  }

  .map-overlay {
    left: 15px;
    right: 15px;
    top: 15px;
  }

  .map-info {
    width: 100%;
    padding: 18px;
  }

}


/* ================================= */
/* FOOTER */
/* ================================= */

.footer {
  background: #0f172a;
  padding-top: 90px;
  color: white;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.footer-logo span {
  color: #f59e0b;
}

.footer-description {
  margin: 25px 0;
  color: #cbd5e1;
  line-height: 1.9;
  max-width: 350px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;

  background: #1e293b;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 1.1rem;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #f59e0b;
  transform: translateY(-5px);
}

/* TITULOS */

.footer h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

/* LISTAS */

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 14px;
  color: #cbd5e1;
}

.footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer ul li a:hover {
  color: #f59e0b;
  padding-left: 5px;
}

/* CONTATO */

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  color: #f59e0b;
}

/* FOOTER BOTTOM */

.footer-bottom {
  margin-top: 70px;
  padding: 30px 0;

  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .footer {
    text-align: center;
  }

  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

}




/* ================================= */
/* SCROLLBAR PERSONALIZADA */
/* ================================= */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #f59e0b,
    #ea580c
  );

  border-radius: 20px;
  border: 2px solid #0f172a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #fbbf24,
    #f97316
  );
}

/* FIREFOX */

html {
  scrollbar-width: thin;
  scrollbar-color: #f59e0b #0f172a;
}