:root{
  --primary:#d32f2f;
  --primary-600:#c62828;
  --primary-700:#b71c1c;
  --bg:#ffffff;
  --bg-50:#fafafa;
  --bg-100:#f5f5f6;
  --text-900:#101113;
  --text-700:#2b2d31;
  --text-500:#6b7078;
  --text-300:#b6bac2;
  --text-inverse:#ffffff;
  --border:#e6e8ec;
  --shadow:0 6px 24px rgba(16,17,19,.08),0 2px 8px rgba(16,17,19,.06);
  --radius:16px;
  --container:1200px;
  --star:#f5b50a;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Segoe UI",system-ui,-apple-system,Arial,sans-serif;
  color:var(--text-900);
  background:var(--bg);
  line-height:1.55;
}

img{max-width:100%;display:block}
h1,h2,h3{margin:0 0 .5rem;line-height:1.2;color:var(--text-900)}
p{margin:.5rem 0 1rem;color:var(--text-500)}
.container{width:min(100%,var(--container));margin:0 auto;padding:0 20px}
section{padding:64px 0}

.announcement-bar{
  background:#2c2c2c;
  color:var(--text-inverse);
  font-weight:600;
  letter-spacing:.4px;
  text-align:center;
  padding:8px 16px;
}

.icon{width:28px;height:28px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:14px 28px;
  border-radius:10px;
  border:1px solid transparent;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.button:active{transform:translateY(1px)}
.button-primary{
  background:var(--primary);
  color:var(--text-inverse);
  box-shadow:0 8px 24px rgba(211,47,47,.24);
}
.button-primary:hover{background:var(--primary-600)}
.button-outline{
  background:transparent;
  color:var(--text-900);
  border-color:var(--border);
}
.button-outline:hover{border-color:var(--primary);color:var(--primary)}
.button-sm{padding:10px 16px;font-size:.9rem}

.input,.select,.textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:12px 14px;
  color:var(--text-900);
  background:#fff;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.input:focus,.select:focus,.textarea:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(211,47,47,.12);
}
.textarea{resize:vertical}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero{
  position:relative;
  padding:0;
  min-height:350px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background-image:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('../img/oficina2.jpg');
  background-size:cover;
  background-position:center;
}
.hero-inner{padding:96px 20px}
.hero h1{font-size:48px;margin-bottom:12px;color:#fff}
.hero-sub{color:#e9e9e9;margin-bottom:22px}
@media(min-width:768px){.hero h1{font-size:64px}}

.icon-grid{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
  margin:20px auto 36px;
  max-width:820px;
}
.icon-item{display:flex;flex-direction:column;align-items:center;gap:8px}
.icon-badge{
  width:64px;height:64px;display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.25);border-radius:999px;
  backdrop-filter:blur(6px);color:#fff
}
.icon-label{font-size:12px;color:#eee}

.section-muted{background:var(--bg-100)}
.section-plain{background:#fff}
.section-head{text-align:center;margin-bottom:28px}
.kicker{display:block;color:var(--primary);text-transform:uppercase;letter-spacing:.1em;font-weight:800;font-size:.8rem;margin-bottom:6px}
.section-title{font-size:32px;margin-bottom:6px}
.section-sub{max-width:760px;margin:0 auto;color:var(--text-500)}

.service-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
}
@media(max-width:960px){.service-grid{grid-template-columns:1fr}}
.service-card{padding:24px}
.service-info{padding:24px;display:flex;flex-direction:column;gap:18px}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
@media(max-width:720px){.form-grid{grid-template-columns:1fr}}
.field{display:flex;flex-direction:column;gap:6px}
.field-full{grid-column:1/-1}
.label{font-weight:600;color:var(--text-700)}
.form-actions{display:flex;gap:12px;margin-top:10px;flex-wrap:wrap}

.chips{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 6px}
.chip input{display:none}
.chip span{
  display:inline-flex;align-items:center;gap:6px;padding:10px 14px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--text-700);cursor:pointer;transition:all .2s ease
}
.chip input:checked+span{background:var(--primary);color:#fff;border-color:var(--primary)}

.info-block{display:flex;gap:12px;align-items:flex-start}
.info-icon{color:var(--primary)}
.info-title{font-size:1.05rem;margin-bottom:4px}
.info-text{margin:0}
.assurance{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.assurance-badge{
  display:inline-block;background:var(--bg-50);border:1px solid var(--border);
  padding:8px 12px;border-radius:999px;font-weight:700;color:var(--text-700)
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-top:8px;
}
@media(max-width:960px){.about-grid{grid-template-columns:1fr}}
.about-title{font-size:22px;margin-bottom:10px}
.about-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  align-content:start;
}
.about-gallery img{
  width:100%;height:190px;object-fit:cover;border-radius:12px
}
.about-gallery img:nth-child(2),.about-gallery img:nth-child(4){margin-top:24px}
.checklist{padding-left:18px}
.checklist li{margin-bottom:8px;color:var(--text-700)}

.testimonials-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:20px;
}
@media(max-width:960px){.testimonials-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.testimonials-grid{grid-template-columns:1fr}}

.testimonial-card{
  position:relative;
  padding:16px;
  border:1px solid rgba(16,17,19,.08);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 24px rgba(16,17,19,.08),0 2px 8px rgba(16,17,19,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease
}
.testimonial-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(16,17,19,.12),0 6px 14px rgba(16,17,19,.08);
  border-color:rgba(211,47,47,.22)
}

.testimonial-header{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:8px
}
.testimonial-header .img{
  width:44px;
  height:44px;
  flex-shrink:0;
  border-radius:999px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#f6f7f8
}
.testimonial-header .img img{width:100%;height:100%;object-fit:cover}
.head-meta{display:flex;align-items:center;gap:10px;min-width:0;flex-wrap:wrap}
.name{font-weight:900;font-size:1rem;color:var(--text-900);white-space:nowrap}

.stars{
  --rating:5;
  --active:var(--primary);
  --muted:#cfd4dc;
  --size:7px;
  --gap:6px;
  position:relative;
  display:inline-block;
  width:calc((var(--size) + var(--gap))*5 - var(--gap));
  height:var(--size);
  font-size:0;
  transform:translateY(1px)
}
.stars::before,
.stars::after{
  content:"";
  position:absolute;top:0;left:0;height:100%;
  background-repeat:repeat-x;
  background-position:left center;
  background-size:calc(20%) 100%
}
.stars::before{background-image:radial-gradient(circle,var(--muted) 45%, transparent 46%)}
.stars::after{
  background-image:radial-gradient(circle,var(--active) 45%, transparent 46%);
  width:calc(var(--rating)/5 * 100%)
}

.testimonials-grid .testimonial-card:nth-child(1) .stars{--rating:5}
.testimonials-grid .testimonial-card:nth-child(2) .stars{--rating:5}
.testimonials-grid .testimonial-card:nth-child(3) .stars{--rating:4}

.quote{color:var(--text-700);font-size:.98rem;line-height:1.6;margin-top:4px}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media(max-width:1024px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.products-grid{grid-template-columns:1fr}}
.product-card{padding:16px}
.product-media{
  width:100%;height:180px;border-radius:12px;
  background:#f0f0f0 center/cover no-repeat;margin-bottom:12px
}
.product-title{font-size:1.05rem;margin-bottom:6px}
.product-meta{display:flex;align-items:center;justify-content:space-between}
.price{font-weight:800;color:var(--text-900)}

.social-icon{display:inline-flex;align-items:center;justify-content:center}
.social-icon .icon{width:24px;height:24px}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  padding: 32px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(16,17,19,0.12);
}

.process-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
}

.process-card:hover .process-icon {
  background: var(--primary);
  color: #ffffff;
}

.process-icon .icon {
  width: 30px;
  height: 30px;
}

.process-number {
  position: absolute;
  top: -1px;
  right: 8px;
  font-size: 3.5rem;
  font-weight: 900;
  color: black;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.8;
}

.process-cta {
  text-align: center;
  margin-top: 32px;
}

.process-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-500);
}

@media(max-width: 960px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-number {
    font-size: 4rem;
    right: 4px;
  }
}
