body {
  font-family: 'Inter', sans-serif;
  color: #222;
  padding-top: 80px; /* espaço para o menu fixo */
}

/* HEADER */
header {
  background: #f7fafd;
  padding: 60px 0;
}
header h1 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #0a2540;
}
header p {
  font-size: 1.1rem;
  color: #444;
}

/* BOTÃO PRINCIPAL */
.btn-cta {
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  transition: 0.3s;
}
.btn-cta:hover {
  background: #e65c00;
  color: #fff;
}

section {
  padding: 70px 0;
}

/* ÍCONES E CORES */
.features i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ff6600;
}
.text-orange {
  color: #ff6600;
}

/* SEÇÕES ESPECÍFICAS */
.blue-box {
  background: #007bff;
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blue-box i {
  font-size: 1.3rem;
  color: #fff;
}
.blue-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

/* TESTEMUNHO */
.testimonial-box {
  background: #007bff;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

/* NAVBAR */
.navbar .nav-link {
  font-weight: 500;
  color: #0a2540 !important;
}
.navbar .nav-link:hover {
  color: #ff6600 !important;
}
.logo-obra { color: #ff6600; font-weight: 700; }
.logo-grf { color: #0a2540; }

/* SEÇÕES GERAIS */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #0a2540;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #007bff, #00b4ff);
}

/* RODAPÉ */
.site-footer {
  background: #0a2540;
}
.site-footer a {
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer a:hover {
  color: #ff6600;
}
.footer-bottom {
  background: #081b33;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* PROMOÇÃO */
.promo-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 50px 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.promo-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ff6600;
  margin: 15px 0;
}
.promo-box .btn-cta {
  background: #ff6600;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.promo-box .btn-cta:hover {
  background: #e65c00;
  transform: scale(1.03);
}

/* FAQ — USANDO BOOTSTRAP */
.faq .accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.faq .accordion-button {
  font-weight: 600;
  color: #0a2540;
  background: #fff;
  transition: all 0.3s ease;
}
.faq .accordion-button:hover {
  background: #ffe6d5;
}
.faq .accordion-button:not(.collapsed) {
  background-color: #ff6600;
  color: #fff;
  box-shadow: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  background: #fafafa;
}

/* ROTINA */
.rotina-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rotina-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.rotina-card img {
  height: 250px;
  object-fit: cover;
}
.rotina-text {
  background: #0a2540;
  color: #fff;
  padding: 18px;
  position: relative;
}
.rotina-text::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #ff6600;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.rotina-text h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

/* =============================
   ÍCONES EM CÍRCULO (Benefícios)
   ============================= */
.icon-circle-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: 0 auto; /* Centraliza no container */
  animation: rotateCircle 20s linear infinite; /* animação lenta */
}

.icon-item {
  --total: 8; /* número total de ícones */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(calc(360deg / var(--total) * var(--i))) 
             translate(130px) 
             rotate(calc(-360deg / var(--total) * var(--i)));
  transition: transform 0.3s ease;
}

.icon-item i {
  font-size: 1.8rem;
  width: 70px;
  height: 70px;
  background: #e9f2ff;
  color: #0a2540;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.icon-item i:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 18px rgba(0, 123, 255, 0.5);
}

/* Animação de rotação suave */
@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsivo */
@media (max-width: 768px) {
  .icon-circle-wrapper {
    width: 220px;
    height: 220px;
  }
  .icon-item {
    transform: rotate(calc(360deg / var(--total) * var(--i))) 
               translate(90px) 
               rotate(calc(-360deg / var(--total) * var(--i)));
  }
  .icon-item i {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
}
/* ===== Popup LGPD ===== */
.popup-lgpd {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 37, 64, 0.95);
  color: #fff;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  display: none;
  animation: slideUp 0.6s ease;
}

.popup-lgpd a {
  color: #ffcc66;
  text-decoration: underline;
}

.popup-lgpd .popup-content {
  max-width: 700px;
  margin: 0 auto;
}

.popup-lgpd .popup-buttons {
  margin-top: 15px;
}

.popup-lgpd .btn {
  margin: 5px;
  border-radius: 6px;
  font-weight: 600;
  padding: 8px 18px;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==== HERO OTIMIZADO ==== */
.hero-section {
  background: linear-gradient(145deg, #f8fafc 0%, #eaf2ff 100%);
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-logo {
  max-height: 88px;
}

.hero-section h1 {
  font-size: 2.6rem;
  color: #0a2540;
  line-height: 1.2;
}

.hero-section .text-highlight {
  color: #ff6600;
}

.hero-section p.lead {
  font-size: 1.1rem;
  color: #444;
}

.btn-cta {
  background: #ff6600;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 11px;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #e65c00;
  transform: translateY(-2px);
}

.hero-section .btn-outline-primary {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 28px;
}

.hero-section .floating-phone {
  animation: floatPhone 4s ease-in-out infinite;
  max-height: 550px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
  transform: rotate(0deg);
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .hero-section .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .floating-phone {
    max-height: 400px;
    margin-top: 20px;
  }
}
