
:root{
  --celeste:#00a9c7;
  --celeste-dark:#0089a3;
  --gris:#6f757b;
  --gris-oscuro:#3f454b;
  --gris-claro:#f4f7f8;
  --borde:#e3e8eb;
  --blanco:#ffffff;
  --sombra:0 14px 35px rgba(0,0,0,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--gris-oscuro);
  background:#fff;
}
a{text-decoration:none;color:inherit}
.layout{
  display:flex;
  min-height:100vh;
}
.sidebar{
  position:fixed;
  left:0;
  top:0;
  bottom:0;
  width:250px;
  background:#ffffff;
  border-right:1px solid var(--borde);
  box-shadow:6px 0 25px rgba(0,0,0,.05);
  z-index:50;
}
.brand{
  padding:18px 20px 16px;
  border-bottom:1px solid var(--borde);
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:155px;
  max-width:100%;
}
.brand-small{
  font-size:12px;
  color:var(--gris);
  line-height:1.3;
}
.menu a{
  display:grid;
  grid-template-columns:62px 1fr;
  align-items:center;
  min-height:62px;
  border-bottom:1px solid var(--borde);
  color:#72787e;
  letter-spacing:.6px;
  transition:.25s ease;
  font-size:15px;
}
.menu a svg{
  width:24px;
  height:24px;
  margin:auto;
  stroke:#ffffff;
}
.menu a .icon{
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#a5adb2;
  transition:.25s ease;
}
.menu a.active .icon,
.menu a:hover .icon{
  background:var(--celeste);
}
.menu a.active,
.menu a:hover{
  background:#f7fbfc;
  color:var(--gris-oscuro);
}
.main{
  margin-left:250px;
  width:calc(100% - 250px);
}
.top-mobile{
  display:none;
  padding:12px 16px;
  background:#fff;
  border-bottom:1px solid var(--borde);
  position:sticky;
  top:0;
  z-index:40;
}
.top-mobile img{height:42px}
.hero{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.18) 100%),
    url("img/hero-industrial.png") center/cover no-repeat;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-140px;
  width:500px;
  height:500px;
  background:rgba(0,169,199,.10);
  border-radius:50%;
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(760px, 92%);
  padding:70px 60px;
}
.kicker{
  color:var(--celeste);
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:14px;
}
h1{
  font-size:46px;
  line-height:1.08;
  margin:14px 0 16px;
  color:#42484d;
}
.lead{
  font-size:18px;
  color:#667078;
  line-height:1.7;
  margin-bottom:30px;
}
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 20px;
  border-radius:4px;
  font-weight:700;
  transition:.25s ease;
}
.btn-primary{
  background:var(--celeste);
  color:#fff;
  box-shadow:0 10px 25px rgba(0,169,199,.25);
}
.btn-primary:hover{background:var(--celeste-dark); transform:translateY(-2px)}
.btn-outline{
  border:1px solid var(--celeste);
  color:var(--celeste-dark);
  background:#fff;
}
.btn-outline:hover{transform:translateY(-2px); box-shadow:var(--sombra)}
.section{
  padding:72px 60px;
}
.section.alt{background:var(--gris-claro)}
.section-title{
  max-width:920px;
  margin-bottom:34px;
}
.section-title h2{
  margin:0 0 10px;
  font-size:32px;
  color:#2f3438;
}
.line{
  width:42px;
  height:3px;
  background:var(--celeste);
  margin:12px 0 18px;
}
.section-title p{
  margin:0;
  color:#687178;
  line-height:1.7;
}
.grid{
  display:grid;
  gap:24px;
}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{
  background:#fff;
  border:1px solid var(--borde);
  border-radius:10px;
  padding:26px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  transition:.28s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--sombra);
}
.card h3{
  margin:0 0 10px;
  color:#3f454b;
}
.card p,.card li{
  color:#6a7278;
  line-height:1.65;
}
.card ul{padding-left:18px;margin-bottom:0}
.icon-round{
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(0,169,199,.10);
  color:var(--celeste);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:16px;
}
.image-card{
  padding:0;
  overflow:hidden;
}
.image-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  transition:.45s ease;
}
.image-card:hover img{
  transform:scale(1.06) rotate(.5deg);
}
.image-card .body{padding:24px}
.pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.price-card{
  background:#fff;
  border:1px solid var(--borde);
  overflow:hidden;
  transition:.28s ease;
}
.price-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--sombra);
}
.price-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#9da1a3;
  color:#fff;
  min-height:70px;
}
.price-title{
  padding:20px;
  font-weight:700;
}
.price{
  background:#8f9497;
  border:4px solid var(--celeste);
  padding:16px 18px;
  font-size:28px;
  font-weight:800;
  letter-spacing:1px;
}
.price-body{
  padding:22px;
}
.price-body ul{
  list-style:none;
  padding:0;
  margin:14px 0 0;
}
.price-body li{
  padding:12px 0;
  border-top:1px solid var(--borde);
  color:#6a7278;
}
.price-body li::before{
  content:"✓";
  color:var(--celeste);
  font-weight:800;
  margin-right:10px;
}
.categories{
  columns:3;
  column-gap:35px;
  padding-left:0;
  list-style:none;
}
.categories li{
  break-inside:avoid;
  padding:8px 0 8px 18px;
  position:relative;
  color:#626a70;
}
.categories li::before{
  content:"";
  width:7px;
  height:7px;
  background:var(--celeste);
  border-radius:50%;
  position:absolute;
  left:0;
  top:16px;
}
.cta{
  background:linear-gradient(135deg, var(--celeste), #0f8095);
  color:#fff;
  padding:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta h2{margin:0 0 8px;color:#fff}
.cta p{margin:0;opacity:.92}
.footer{
  padding:34px 60px;
  background:#0984ad;
  color:#dfe8eb;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer strong{color:#fff}
.footer a{color:#cdeff5}
.page-hero{
  background:linear-gradient(135deg,#f6fbfc,#fff);
  padding:70px 60px 40px;
  border-bottom:1px solid var(--borde);
}
.page-hero h1{font-size:40px}
.profile{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:30px;
  align-items:center;
}
.profile-placeholder{
  width:220px;
  height:220px;
  border-radius:12px;
  background:linear-gradient(135deg,#eff6f8,#dceff3);
  border:1px dashed var(--celeste);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--celeste-dark);
  font-weight:700;
  text-align:center;
  padding:20px;
}
.form{
  display:grid;
  gap:14px;
}
.form input,.form textarea,.form select{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--borde);
  border-radius:6px;
  font-family:inherit;
  font-size:15px;
}
.form textarea{min-height:130px}
@media(max-width:980px){
  .sidebar{width:82px}
  .brand{display:none}
  .menu a{grid-template-columns:82px; font-size:0}
  .main{margin-left:82px;width:calc(100% - 82px)}
  .grid-3,.pricing{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .categories{columns:2}
  .hero-content,.section,.page-hero,.footer{padding-left:32px;padding-right:32px}
  h1{font-size:38px}
}
@media(max-width:700px){
  .layout{display:block}
  .sidebar{
    position:static;
    width:100%;
    display:block;
  }
  .brand{display:flex}
  .menu{
    display:grid;
    grid-template-columns:repeat(5,1fr);
  }
  .menu a{
    grid-template-columns:1fr;
    min-height:58px;
    font-size:0;
  }
  .menu a .icon{width:100%; height:58px}
  .main{margin-left:0;width:100%}
  .hero{min-height:620px; align-items:flex-end}
  .hero-content{padding:40px 24px;background:rgba(255,255,255,.88)}
  h1{font-size:31px}
  .categories{columns:1}
  .cta{display:block}
  .cta .btn{margin-top:18px}
  .profile{grid-template-columns:1fr}
}


/* Ajuste solicitado: más separación entre icono y texto del menú lateral */
.menu a{
  grid-template-columns:70px 1fr;
  column-gap:12px;
}
.menu a span:last-child{
  padding-left:8px;
}
.sidebar{
  width:270px;
}
.main{
  margin-left:270px;
  width:calc(100% - 270px);
}

/* Grilla de categorías de tasación en servicios */
.asset-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:22px;
}
.asset-card{
  background:#fff;
  border:1px solid var(--borde);
  border-radius:14px;
  padding:22px 16px;
  text-align:center;
  min-height:230px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  transition:.28s ease;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  color:#4b5359;
}
.asset-card:hover{
  transform:translateY(-8px) perspective(700px) rotateX(3deg);
  box-shadow:0 18px 38px rgba(0,169,199,.18);
  border-color:var(--celeste);
}
.asset-card img{
  width:118px;
  height:138px;
  object-fit:contain;
  transition:.35s ease;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.08));
}
.asset-card:hover img{
  transform:scale(1.08) rotate(-1.5deg);
}
.asset-card h3{
  margin:12px 0 6px;
  color:var(--celeste-dark);
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:1.2px;
}
.asset-card p{
  margin:0;
  color:#6a7278;
  font-size:13px;
  line-height:1.45;
}
.asset-card .asset-link{
  margin-top:10px;
  color:var(--celeste-dark);
  font-weight:700;
  font-size:13px;
}
.category-detail-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  background:linear-gradient(135deg,#f6fbfc,#ffffff);
}
.category-detail-card{
  width:min(760px,96vw);
  background:#fff;
  border:1px solid var(--borde);
  border-radius:18px;
  box-shadow:var(--sombra);
  padding:42px;
  text-align:center;
}
.category-detail-icon{
  width:170px;
  height:190px;
  object-fit:contain;
  margin:10px auto 20px;
}
.back-link{
  display:inline-block;
  color:var(--celeste-dark);
  font-weight:700;
  margin-bottom:20px;
}
.category-detail-card h1{
  margin-top:0;
}
.category-detail-card p{
  color:#687178;
  line-height:1.7;
}
@media(max-width:1100px){
  .asset-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:980px){
  .sidebar{width:90px}
  .main{margin-left:90px;width:calc(100% - 90px)}
}
@media(max-width:760px){
  .asset-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .asset-grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .sidebar{width:100%}
  .main{margin-left:0;width:100%}
  .menu a span:last-child{padding-left:0}
}
