/* ================================
   T-SERVICE LANDING - CSS OFICIAL
   ================================ */

:root{
  --bg:#f2f2f2;
  --card:#f7f7f8;
  --text:#ffffff;
  --muted:#e0d7d7;
  --line:#f20707;
  --accent:#25D366;
  --red:#ff3b30;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* CONTAINER */
.wrap{
  max-width:520px;
  margin:0 auto;
  padding:20px 16px 100px;
}

/* TOPBAR */
.topbar{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.logo{
  width:200px;
}

.toptext .t1{
  font-weight:700;
  font-size:14px;
color:#000000;
}

.toptext .t2{
  font-size:12px;
  color:#000000;
}

/* TITULOS */
h1{
  font-size:22px;
  margin-bottom:8px;
color:#f20707;
}

.sub{
  font-size:14px;
  color:var(--muted);
  margin-bottom:20px;
}

/* CARD */
.card{
  background:#000000;
  border-radius:18px;
  padding:18px;
  margin-bottom:20px;
  border:1px solid var(--line);
}

/* SERVICIOS GRID */
.services-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:10px;
}

/* SERVICE ITEM */
.service-item{
  background:#c7bdbd;
  border-radius:16px;
  padding:5px 10px;
  text-align:center;
  border:1px solid var(--line);
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}

.service-item img{
  width:160px;
  margin-bottom:5px;
  transition:transform .25s ease, filter .25s ease;
}

.service-item span{
  display:block;
  font-size:13px;
  font-weight:600;
  color:#000;
}

/* HOVER ROJO DINAMICO */
.service-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, rgba(255,59,48,.15), transparent 60%);
  opacity:0;
  transition:opacity .25s ease;
}

.service-item:hover{
  transform:translateY(-4px);
  border-color:var(--red);
  box-shadow:0 10px 25px rgba(255,59,48,.15);
}

.service-item:hover::before{
  opacity:1;
}

.service-item:hover img{
  transform:scale(1.08);
  filter:drop-shadow(0 6px 14px rgba(255,59,48,.2));
}

/* MOBILE TAP EFFECT */
@media (hover:none){
  .service-item:active{
    transform:translateY(-3px);
    border-color:var(--red);
  }
}

/* FORM */
label{
  display:block;
  font-size:12px;
  margin-top:12px;
  margin-bottom:5px;
  color:var(--muted);
}

input, select{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--line);
  font-size:14px;
}

/* UBICACION */
.loc{
  margin-top:15px;
  font-size:13px;
  color:var(--muted);
}

/* BOTON STICKY */
.sticky{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:#ffffff;
  padding:12px;
  border-top:1px solid var(--line);
}

.sticky-inner{
  max-width:520px;
  margin:0 auto;
  display:flex;
  gap:10px;
}

.btn{
  flex:1;
  background:var(--accent);
  color:#fff;
  border:none;
  border-radius:14px;
  padding:15px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s ease;
}

.btn:hover{
  opacity:.9;
}

.ghost{
  width:60px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#f3f3f3;
  font-size:18px;
}

/* SCROLL ANIMATION */
[data-animate]{
  opacity:0;
  transform:translateY(20px);
}

.animate-in{
  opacity:1;
  transform:translateY(0);
  transition:all .6s ease;
}