<style>
:root{

  --brand:#E53935;
  --brand-dark:#C62828;

  --wa-green:#E53935;
  --wa-dark:#C62828;

  --bg:#F5F7FA;
  --card:#FFFFFF;

  --text:#111827;
  --text-soft:#6B7280;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
   background:
 linear-gradient(
 180deg,
 #F7F8FA,
 #ECEFF3
 );
  line-height:1.5;

  
  font-family:'Inter',sans-serif;
  color:var(--text);
}

a:focus,
button:focus,
input:focus{

  outline:3px solid rgba(229,57,53,.35);
  outline-offset:2px;

}

img{
  max-width:100%;
}


.app-shell{
  max-width:520px;
  margin:auto;
  min-height:100vh;
  background:var(--bg);
  position:relative;
  box-shadow:0 10px 40px rgba(0,0,0,.08);
}

/* HEADER */

.floating-header{

  position:fixed;
  top:12px;
  left:50%;
  transform:translateX(-50%);

  width:calc(100% - 24px);
  max-width:496px;

  z-index:9999;

  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);

  background:rgba(233,238,241,.82);

  border:1px solid rgba(255,255,255,.35);

  border-radius:24px;

  padding:10px 12px;

  box-shadow:
    0 10px 30px rgba(0,0,0,.10),
    0 2px 8px rgba(0,0,0,.04);

}

.header-inner{
  display:flex;
  align-items:center;
  gap:10px;
}

.header-logo{
  flex-shrink:0;
}

.header-search{

  flex:1;

  height:48px;

  background:rgba(255,255,255,.72);

  border-radius:18px;

  display:flex;

  align-items:center;

  padding:0 14px;

  gap:10px;

  border:1px solid rgba(0,0,0,.04);

}

.header-search i{
  color:#667781;
  font-size:1rem;
}

.header-search input{

  border:none;
  background:transparent;

  width:100%;

  outline:none;

  font-size:.95rem;

  color:var(--text);

}

.header-search input::placeholder{
  color:#7b8790;
}

.business-card{

  border-top:4px solid var(--brand);

}



.business-avatar{
   width:44px;
  height:44px;
  border-radius:16px;
  object-fit:cover;
  border:3px solid rgba(255,255,255,.35);
}

.floating-header h1{
  color:var(--brand-dark);
  font-size:1rem;
  margin:0;
  font-weight:700;
}

.business-status{
  color:var(--brand-dark);
  font-size:.78rem;
  margin-top:3px;
}

/* MENU */

.menu-btn{
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;

  background:rgba(255,255,255,.45);

  color:#4B5563;

  font-size:1.35rem;

  display:flex;
  align-items:center;
  justify-content:center;
}

.modern-dropdown{
  border:none;
  border-radius:18px;
  padding:10px;
  min-width:220px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.modern-dropdown .dropdown-item{
  border-radius:12px;
  padding:12px 14px;
  font-weight:500;
}

/* HERO */

.hero{
      padding:108px 14px 4px;
}

.hero img{
   width:100%;
  height:240px;

  object-fit:cover;

  border-radius:32px;

  display:block;

  box-shadow:
    0 10px 30px rgba(0,0,0,.10),
    0 2px 8px rgba(0,0,0,.05);
}

.hero,
section.px-3{
    padding-left:10px !important;
    padding-right:10px !important;
}


.hero-placeholder{

  position:relative;

  width:100%;
  height:120px;

  border-radius:28px;

  display:flex;
  align-items:center;
  justify-content:center;

 background:
linear-gradient(
to bottom,
#ECEEF3,
#E4E8EE
);

  box-shadow:
    0 10px 30px rgba(0,0,0,.10),
    0 2px 8px rgba(0,0,0,.05);

}
.hero-placeholder i{

  font-size:4.5rem;

   color:#C62828;

  opacity:.95;

 

}

 
.hero-placeholder-text{

  font-size:1.2rem;

  font-weight:700;

  text-align:center;

  padding:0 20px;

}

.placeholder-label{

  position:absolute;

  top:95px;
  left:50%;

  transform:translateX(-50%);

  font-size:.92rem;
  font-weight:700;

    color:#4B5563;

  letter-spacing:.3px;

}
/* CARDS */

.modern-card{
  background:#FFFFFF;
  border-radius:24px;
  padding:14px;
  margin-top:12px;
  margin-bottom:16px;

  box-shadow:
    0 8px 24px rgba(0,0,0,.05);

  border:1px solid rgba(0,0,0,.04);
  
}

.location-section .modern-card{

  background:#FFF9F9;

  border:1px solid rgba(229,57,53,.08);

}


#conoce-mas .modern-card{

  background:#FCFCFC;

  border:1px solid rgba(0,0,0,.04);

}

#conoce-mas .accordion-button{
    padding:14px 18px;
}

#similares .modern-card{

  background:
  linear-gradient(
    180deg,
    #FFF8F8,
    #FCF4F4
  );

  border:1px solid rgba(229,57,53,.12);

}


.modern-card:hover{
  transform:translateY(-3px);
}


.service-icon{

  width:34px;
  height:34px;

  min-width:34px;

  border-radius:12px;

  background:#F7F8F9;

color:var(--brand);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:.95rem;

  margin-right:10px;

}

.service-title{
  font-size:.95rem;
  font-weight:600;
}

.soft-text{
  color:#4B5563;
}

.section-title{
  font-size:1.15rem;

  font-weight:700;

  margin-bottom:18px;

  color:var(--brand-dark) !important;

}

/* TAGS */

.tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:18px;
}

.tags span{

  background:#FCF4F4;

  color:var(--brand-dark);

  padding:8px 12px;

  border-radius:999px;

  font-size:.8rem;

  font-weight:600;

}

/* QUICK CARDS */

.quick-cards{

  display:flex;

  flex-direction:column;

  gap:12px;

  margin-top:20px;

}

.quick-card{

  width:100%;

  border:none;

  background:white;

  border-radius:22px;

  padding:16px;

  display:flex;

  align-items:center;

  gap:16px;

  text-align:left;

  transition:.25s;

  color:var(--text);

  box-shadow:0 4px 14px rgba(0,0,0,.04);
  cursor:pointer;

}

.quick-card:hover{

  transform:translateY(-2px);

}

.quick-card-icon{

  width:56px;

  height:56px;

  border-radius:18px;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:1.4rem;

  flex-shrink:0;

}

.share-card .quick-card-icon{

  background:#eef3f5;

  color:#3b4a54;

}

.contact-card .quick-card-icon{

  background:#F7F8F9;

  color:var(--brand);

}

.quick-card-title{

  font-weight:700;

  margin-bottom:3px;

}

.quick-card-text{

  font-size:.84rem;

  color:var(--text-soft);

}

/* ACCORDION */

.accordion-item{
  border:none;
  margin-bottom:8px;
  overflow:hidden;
  border-radius:16px !important;
}


.accordion-button{
  padding:12px 14px;
  min-height:56px;
}

.accordion-button:focus{
  box-shadow:none;
}

.service-icon{
  width:38px;
  height:38px;
  border-radius:12px;
  font-size:1rem;
  margin-right:10px;
}

.accordion-body{
  background:white;
  padding:20px;
}

.service-list{
  padding-left:18px;
  margin-bottom:18px;
}

.service-list li{
  margin-bottom:8px;
  color:var(--text-soft);
}

/* GALLERY */

.gallery-scroll{

  display:flex;

  gap:14px;

  overflow-x:auto;

  overflow-y:hidden;

  scroll-snap-type:x mandatory;

  -webkit-overflow-scrolling:touch;

  padding-bottom:6px;

}

.gallery-scroll::-webkit-scrollbar{
  display:none;
}

.gallery-item{
  flex:0 0 auto;
  scroll-snap-align:start;
}

.gallery-item img{
  width:240px;
  height:180px;
  object-fit:cover;
  border-radius:22px;
  cursor:pointer;
  transition:.25s;
}

.gallery-item img:hover{
  transform:scale(1.02);
}

/* LOCATION */

.location-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.location-left{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.location-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:#F7F8F9;

color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  flex-shrink:0;
}

.location-info h4{
  font-size:1rem;
  margin:0 0 3px;
  font-weight:700;
}

.location-info div{
  font-size:.88rem;
  color:var(--text-soft);
}

.route-btn{
  border:none;
  background:#eef3f5;
  color:var(--text);
  padding:12px 14px;
  border-radius:16px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
  font-size:.85rem;
}

.route-btn:hover{
  transform:translateY(-2px);
}

/* MODALS */

.modal-content{
  border:none;
  border-radius:26px;
  overflow:hidden;
}

.gallery-modal img{
  width:100%;
}

.privacy-modal{
  border:none;
  border-radius:28px;
}

/* FLOATING BAR */

.floating-bar{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  z-index:9999;

 
  border-top:1px solid rgba(0,0,0,.06);

  padding:8px;

 box-shadow:
    0 -8px 30px rgba(0,0,0,.12),
    0 -2px 8px rgba(0,0,0,.06);
	
background:rgba(233,238,241,.92);
backdrop-filter:blur(12px);	
	
}

.float-btn{

  width:100%;

  height:48px;

  border:none;

  border-radius:20px;

  font-size:.70rem;
  font-weight:600;

  transition:.2s;
  display:flex!important;

}

.float-btn:hover{
  transform:translateY(-2px);
}

.float-btn i{

  display:block;

  font-size:1.1rem;

  margin-bottom:3px;

}

.float-wa{

    background:#22C55E;

  color:white;

}

.float-wa:hover{

  background:#16A34A;

}

.float-light{

  background:#f8fafb;
  color:var(--text);

  box-shadow:0 2px 8px rgba(0,0,0,.04);
   border:1px solid rgba(0,0,0,.04);
   
   

}
/* FOOTER */

.footer-legal{
     padding:30px 20px 80px;
  text-align:center;
  font-size:.82rem;
  color:#8b98a1;
  
  

}

.footer-legal a{
  color:#8b98a1;
  text-decoration:none;
  margin:0 8px;
}

.footer-powered{
  margin-top:14px;
  font-size:.78rem;
}




/* SERVICIOS DESTACADOS */

#services .modern-card{

  background:linear-gradient(180deg,#ffffff,#f6faf7);
padding:16px;
  
  box-shadow:
    0 10px 28px rgba(0,0,0,.06);

}

#services .section-title{

    display:flex;

  align-items:center;

  gap:8px;

  color:var(--brand-dark);

  font-size:1.1rem;

  font-weight:800;

  padding-bottom:10px;

  border-bottom:2px solid rgba(229,57,53,.10);

  margin-bottom:10px;

}

#services .section-title::before{

    content:"✦";

  color:var(--brand);
  font-size:.9rem;

}

#services .accordion-item{



  box-shadow:none;

}

#services .accordion-button{

  padding:12px;

  background:#fff;

}

#services .accordion-body{
    padding:14px 16px;
}

#services .accordion-button:not(.collapsed){

  background:#FCF4F4;

  color:var(--brand-dark);

}


/* DESKTOP */

@media(min-width:992px){

  .floating-bar{
    display:none;
  }

  .footer-legal{
    padding-bottom:40px;
  }

}

@media (prefers-reduced-motion: reduce){

  *{
    scroll-behavior:auto !important;
    transition:none !important;
  }

}

@media(max-width:576px){

.quick-card:hover,
  .float-btn:hover,
  .route-btn:hover,
  .modern-card:hover{
    transform:none;
  }

  .location-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .route-btn{
    width:100%;
    text-align:center;
    margin-top:12px;
  }

  .quick-card:hover{
  transform:none;
}

}

</style>
