/* ========== Reset & Base ========== */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #121416;
  background: #ffffff !important;
  background-color: #ffffff !important;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Proteção contra dark mode automático */
@media (prefers-color-scheme: dark) {
  html, body {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #121416 !important;
  }
}
img { max-width: 100%; display: block; }

:root{
  --brand:#D86B26;
  --brand-dark:#A84B12;
  --text:#121416;
  --muted:#6B7280;
  --bg:#ffffff;
  --bg-alt:#FFF3E8;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.07);
  --radius:14px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { font-family: "Montserrat", sans-serif; color: var(--text); margin: 0 0 .5rem; }
h1 { font-size: clamp(2rem, 2.2rem + 1.5vw, 3.2rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 1.4rem + 1vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { color: #2b3137; }
small { color: var(--muted); }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.card--small { height: 100%; display: flex; flex-direction: column; }
.card--small h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--brand); }
.card--small p { font-size: 0.9rem; margin: 0; color: var(--text); flex-grow: 1; }

/* ========== Header ========== */
.header{
  position: sticky; top:0; z-index: 50; backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255,255,255,.8); border-bottom: 1px solid #eef0f3;
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.8rem 0; }
.brand{ display:flex; align-items:center; gap:.7rem; }
.brand__logo{ display:block; height:42px; width:auto; border-radius:0; background:transparent; }
.brand__text small{ display:block; color:var(--muted); margin-top:-4px; }

.nav{ display:flex; align-items:center; gap:1rem; }
.nav a{ color:#1f2937; font-weight:500; padding:.5rem .7rem; border-radius:10px; }
.nav a:hover{ background:#eef2f7; }
.nav .btn{ color:#fff; }
.nav__toggle{ display:none; border:0; background:transparent; font-size:1.4rem; }
.nav__close{ display:none; }

/* ========== Buttons ========== */
.btn{ display:inline-block; padding:.9rem 1.2rem; border-radius:12px; font-weight:600; transition:.2s ease; border:2px solid transparent; }
.btn--primary{ background:var(--brand); color:#fff; }
.btn--primary:hover{ background:var(--brand-dark); }
.btn--ghost{ background:transparent; border-color:#cfd6de; color:#111827; }
.btn--ghost:hover{ border-color:var(--brand); color:var(--brand); }
.btn--lg{ padding:1rem 1.4rem; font-size:1.05rem; }
.btn--sm{ padding:.55rem .8rem; }
.btn--full{ display:block; text-align:center; width:100%; margin-top:.6rem; }

/* ========== Hero ========== */
.hero{ position: relative; min-height: 74vh; display:grid; align-items:center; isolation:isolate; scroll-margin-top: 80px; }
.hero__bg{
  position:absolute; inset:0;   background:url('../../bannerhome1.webp') center/cover no-repeat;
}
.hero::after{ content:""; position:absolute; inset:0; background:none; z-index:0; }
.hero__content{ position:relative; z-index:1; color:#fff; padding: 5rem 0; }
.hero__content p{ color:#e5e7eb; max-width: 58ch; }
.hero__actions{ display:flex; gap:.8rem; margin-top:1rem; flex-wrap:wrap; }

/* ========== Sections & Layout ========== */
.section{ padding: 4rem 0; scroll-margin-top: 80px; }
.section--alt{ background: var(--bg-alt); }
.grid{ display:grid; gap:1.2rem; }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }
.grid--2-cols-about { grid-template-columns: 1fr 1.2fr; align-items: center; }

.card{ background: var(--card); border:1px solid #eef0f3; border-radius: var(--radius); box-shadow: var(--shadow); padding:1.1rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover{ transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0,0,0,.14); border-color: rgba(216,107,38,.3); }
.service:hover { background: #fff8f2; }
.highlight{ border:2px solid #F6D3B8; background:linear-gradient(180deg, #ffffff, #FFF6EE); }

.list{ margin: .6rem 0 0; padding-left: 1.1rem; }
.list li{ margin:.25rem 0; }

/* Forms */
.form{ display:flex; flex-direction:column; gap:.8rem; }
.form h3{ margin-bottom:.2rem; }
.form label span{ display:block; font-weight:600; color:#111827; margin-bottom:.25rem; }
.form input, .form select, .form textarea{
  width:100%; padding:.75rem .9rem; border:1px solid #e5e7eb; border-radius:12px; background:#fff; color:#111827;
}
.form input:focus, .form select:focus, .form textarea:focus{
  outline:none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(216,107,38,.12);
}

/* Steps timeline */
.steps{ list-style:none; margin:1rem 0 0; padding:0 0 0 1rem; border-left:2px solid #F6D3B8; }
.steps li{ position:relative; padding:.2rem 0 .9rem 0; }
.steps__dot{ position:absolute; left:-7px; top:6px; width:12px; height:12px; background:var(--brand); border-radius:50%; box-shadow:0 0 0 3px #FFE9D9; }
.steps strong{ display:block; margin-bottom:.15rem; }

/* Estilos da Seção de Contato */
#contato {
  background: #f8f9fa;
  padding: 5rem 0;
}

#contato h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a365d;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

#contato h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

#contato .text-center {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(216, 107, 38, 0.1);
}

/* Estilos para mensagens de erro e dicas */
.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #10b981;
}

.hint {
  display: block;
  color: #6b7280;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Estilo para o botão de envio quando estiver carregando */
#submit-button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.button-loader {
  display: none;
}

#submit-button[disabled] .button-text {
  display: none;
}

#submit-button[disabled] .button-loader {
  display: inline-block;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--brand);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

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

/* Estilos para a seção de contato */
#contato {
  background: #f8f9fa;
  padding: 5rem 0;
}

#contato h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a365d;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

#contato h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

#contato .text-center {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: stretch;
}

.contact-info {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  color: #2d3748;
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(216, 107, 38, 0.05);
}

.contact-icon {
  margin-right: 1.25rem;
  color: var(--brand);
  background: rgba(216, 107, 38, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-method h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #2d3748;
  font-weight: 600;
}

.contact-method p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.contact-method a {
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-method a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
}

.social-link.whatsapp { background: #25D366; }
.social-link.instagram { 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
}
.social-link.facebook { background: #1877F2; }

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}

.social-link:hover svg {
  transform: scale(1.1);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transition: transform 0.8s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

/* Estilos responsivos */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  #contato {
    padding: 3rem 0;
  }
  
  #contato h2 {
    font-size: 2rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-method {
    padding: 0.8rem;
    margin-bottom: 1.2rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-method {
    flex-direction: column;
    margin-bottom: 1.25rem;
  }
  
  .contact-icon {
    margin-bottom: 0.5rem;
  }
  
  .map-container iframe {
    height: 350px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-info, .map-container {
  animation: fadeIn 0.6s ease-out forwards;
}

.contact-method {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }
.contact-method:nth-child(4) { animation-delay: 0.4s; }
.social-links { animation-delay: 0.5s; }

/* Media Queries para Responsividade */
@media (max-width: 1024px) {
  .container {
    width: 92%;
  }
  
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .grid--3, 
  .grid--2 {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 60vh;
  }
  .hero__bg {
    background: url('../../bannerceel.png') center top / cover no-repeat;
  }
  
  .hero__content {
    padding: 4rem 0;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav--open {
    right: 0;
  }
  
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--brand);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
  }
  
  .nav__close:hover {
    background: var(--bg-alt);
  }
  
  .nav a {
    padding: 0.8rem 0;
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }
  
  .nav__toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
  }
  
  .whats {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whats svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-method {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-icon {
    margin-bottom: 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Estilos para mensagens de alerta */
.alert-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
  position: relative;
  padding-right: 2.5rem;
  transition: opacity 0.3s ease;
}

.alert-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.alert-message.error {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.alert-message::after {
  content: '×';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.alert-message::after:hover {
  opacity: 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para o botão flutuante do WhatsApp */
.whats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whats:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.whats svg {
  width: 30px;
  height: 30px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* FAQ */
.faq{ background:#fff; border:1px solid #eef0f3; border-radius:12px; padding:.8rem 1rem; margin:.6rem 0; box-shadow: var(--shadow); }
.faq summary{ cursor:pointer; font-weight:600; list-style:none; }
.faq[open]{ border-color: rgba(216,107,38,.35); }
.faq summary::-webkit-details-marker{ display:none; }
.faq p{ margin:.6rem 0 0; color:#374151; }

/* Services */
.service{ position: relative; overflow: hidden; }
.service .icon{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center; background: #FFE9D9; border:1px solid #FFD5BC; color: var(--brand); margin-bottom:.6rem; }
.service .icon svg{ width:28px; height:28px; color: var(--brand); transition: transform .2s ease-in-out; }
.service:hover .icon{ background:#FFDCC4; }
.service:hover .icon svg{ transform: scale(1.1); }

/* Diferenciais Grid */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.diferencial {
  background: var(--card);
  border: 1px solid #eef0f3;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.diferencial:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  border-color: rgba(216,107,38,.25);
}

.diferencial h3 {
  font-size: 1.2rem;
  color: var(--brand);
  margin: 0 0 0.5rem 0;
}

.diferencial p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

/* Sobre - Estilo do Texto */
.about-content {
  padding-right: 2rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

#sobre h2 {
  color: #111827;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.highlight-text {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.about-description > p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

/* About Values Section - Right Side */
.about-values {
  background: #f9fafb;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.values-content {
  position: sticky;
  top: 2rem;
}

.about-values h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.value-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.value-item:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.about-values h4 {
  color: #111827;
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
}

.about-values h4::before {
  content: '•';
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 0.5rem;
}

.about-values p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.5rem 0 0 1.75rem;
}

/* Clean styles */

@media (max-width: 768px) {
  .about-values {
    margin-top: 2rem;
  }
  
  .values-content {
    position: relative;
    top: 0;
  }
}

/* Clean styles */

/* Seção Light */
.section--light {
  background-color: #f9fafb;
}

/* Alinhamento do texto centralizado */
.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #4b5563;
}

/* Timeline Estilizada */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 3px;
  background: #e5e7eb;
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 3rem;
  z-index: 2;
}

.timeline-number {
  position: absolute;
  left: 0;
  width: 70px;
  height: 70px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content {
  background: white;
  padding: 1.75rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(216, 107, 38, 0.3);
}

.timeline-item:hover .timeline-number {
  transform: scale(1.1);
  background: var(--brand-dark);
}

.timeline h3 {
  color: #111827;
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
  position: relative;
  padding-bottom: 0.5rem;
}

.timeline h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.timeline-item:hover h3::after {
  width: 80px;
}

.timeline p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .timeline::before {
    left: 35px;
  }
  
  .timeline-item {
    padding-left: 80px;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .timeline-content {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 70px;
    margin-bottom: 2rem;
  }
  
  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .timeline h3 {
    font-size: 1.1rem;
  }
  
  .timeline p {
    font-size: 0.9rem;
  }
}

/* Gallery */
.gallery__item{ overflow:hidden; border-radius: 14px; background:#fff; border:1px solid #eef0f3; box-shadow: var(--shadow); }
.gallery__item img{ width:100%; height:240px; object-fit:cover; filter:saturate(98%); transition: transform .5s ease; }
.gallery__item:hover img{ transform: scale(1.03); }
.gallery__item figcaption{ padding:.7rem .9rem; color:#374151; font-weight:500; }

.note{ color: var(--muted); margin-top: .6rem; }

/* Quotes */
.quote p{ font-style: italic; }
.quote cite{ display:block; margin-top:.4rem; color: var(--muted); font-weight:600; }

/* CTA */
.section--cta {
  background: linear-gradient(135deg, #D86B26, #A84B12);
  color: #fff;
  padding: 4rem 0;
  scroll-margin-top: 80px;
}
.section--cta h2 {
  color: #fff;
}
.section--cta .subtitle {
  color: #fde8d9;
  max-width: 50ch;
  margin: 1rem auto 2.5rem;
}
.section--cta .btn--primary {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
.section--cta .btn--primary:hover {
  background: #fff;
  color: var(--brand-dark);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

/* ========== Footer ========== */
.footer { background: #1a1a1a; color: #fff; padding: 1.5rem 0; margin-top: 4rem; }
.footer__copy{ text-align:center; color:#9aa4af; }

/* Floating WhatsApp */
.whats{
  position: fixed; right: 18px; bottom: 18px; width:56px; height:56px; display:grid; place-items:center; border-radius:50%;
  background: #25D366; color:#fff; font-size: 1.4rem; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.whats svg{ width:28px; height:28px; }
.whats:hover{ filter:brightness(.95); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.24); }

/* ========== Responsive ========== */
@media (max-width: 960px){
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .grid--4{ grid-template-columns: repeat(3, 1fr); }
  .cta__inner{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px){
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 2fr 2fr; }
  .hero{ min-height: 68vh; }
}
