Habilitación Comercial Simplificada
/* =========================================================
RESET
========================================================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:'Segoe UI',sans-serif;
overflow-x:hidden;
background:#fff;
color:#1a1a1a;
}
/* =========================================================
VARIABLES
========================================================= */
:root{
--rojo:#C81E26;
--rojoOsc:#A11820;
--verde:#1FA55B;
--texto:#1A1A2E;
--texto2:#4B5563;
--gris:#F7F8FA;
--linea:#E5E7EB;
--shadow:
0 10px 40px rgba(0,0,0,.08);
--shadowStrong:
0 20px 60px rgba(0,0,0,.15);
--radio:24px;
}
/* =========================================================
CONTENEDOR
========================================================= */
.contenedor{
width:100%;
max-width:1200px;
margin:auto;
padding:0 24px;
}
/* =========================================================
HEADER
========================================================= */
.header{
position:fixed;
top:14px;
left:50%;
transform:translateX(-50%);
width:95%;
max-width:1240px;
z-index:1000;
padding:16px 0;
background:rgba(255,255,255,.92);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border-radius:24px;
border:1px solid rgba(255,255,255,.7);
box-shadow:
0 10px 40px rgba(0,0,0,.08),
0 2px 12px rgba(0,0,0,.04);
transition:.3s;
}
.nav{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}
/* =========================================================
LOGO
========================================================= */
.logo-lockup{
display:flex;
align-items:center;
gap:14px;
}
.logo-img{
height:54px;
width:auto;
}
.logo-divisor{
width:1px;
height:38px;
background:#ddd;
}
.logo-tagline{
font-size:.72rem;
font-weight:800;
text-transform:uppercase;
color:var(--rojo);
line-height:1.3;
max-width:170px;
}
/* =========================================================
MENU
========================================================= */
.nav-links{
display:flex;
align-items:center;
gap:5px;
list-style:none;
}
.nav-links a{
text-decoration:none;
color:var(--texto);
font-size:.92rem;
font-weight:700;
padding:10px 15px;
border-radius:12px;
transition:.25s;
}
.nav-links a:hover{
background:#FDEBEC;
color:var(--rojo);
transform:translateY(-2px);
}
/* =========================================================
BOTONES
========================================================= */
.btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:15px 28px;
border-radius:50px;
text-decoration:none;
font-weight:800;
transition:.25s;
}
.btn-rojo{
background:var(--rojo);
color:white;
box-shadow:
0 12px 28px rgba(200,30,38,.30);
}
.btn-rojo:hover{
background:var(--rojoOsc);
transform:translateY(-3px);
}
.btn-linea{
border:2px solid var(--rojo);
color:var(--rojo);
}
.btn-linea:hover{
background:var(--rojo);
color:white;
}
/* =========================================================
HERO
========================================================= */
.hero{
min-height:100vh;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
padding:220px 0 90px;
background:
radial-gradient(circle at top right,
rgba(200,30,38,.10),
transparent 35%),
radial-gradient(circle at bottom left,
rgba(200,30,38,.06),
transparent 30%);
}
.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
}
/* =========================================================
TEXTO HERO
========================================================= */
.hero-eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
background:#FDEBEC;
color:var(--rojo);
border-radius:50px;
padding:10px 18px;
font-size:.78rem;
font-weight:800;
margin-bottom:26px;
}
.hero h1{
font-size:clamp(3rem,6vw,5rem);
line-height:1.05;
margin-bottom:24px;
color:var(--texto);
}
.resaltado{
background:var(--rojo);
color:white;
padding:0 18px 4px;
border-radius:14px;
display:inline-block;
transform:rotate(-2deg);
}
.hero p{
font-size:1.15rem;
line-height:1.8;
color:var(--texto2);
max-width:550px;
margin-bottom:32px;
}
.hero-botones{
display:flex;
flex-wrap:wrap;
gap:14px;
}
/* =========================================================
CARD HERO
========================================================= */
.hero-visual{
position:relative;
display:flex;
justify-content:center;
}
.hero-card{
width:100%;
max-width:430px;
border-radius:30px;
overflow:hidden;
box-shadow:var(--shadowStrong);
position:relative;
z-index:2;
}
.hero-card img{
width:100%;
display:block;
}
/* =========================================================
BADGE
========================================================= */
.hero-badge{
position:absolute;
top:-18px;
right:-10px;
width:120px;
height:120px;
border-radius:50%;
background:var(--verde);
color:white;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
font-weight:900;
border:5px solid white;
box-shadow:var(--shadowStrong);
transform:rotate(-12deg);
z-index:10;
}
.hero-badge span{
font-size:.68rem;
letter-spacing:.08em;
}
/* =========================================================
FLOATS
========================================================= */
.float{
position:absolute;
background:white;
padding:14px 18px;
border-radius:16px;
box-shadow:var(--shadow);
font-weight:700;
z-index:5;
}
.float-1{
top:-20px;
left:-20px;
}
.float-2{
bottom:-10px;
right:-10px;
}
/* =========================================================
BENEFICIOS
========================================================= */
.beneficios{
padding:100px 0;
background:var(--gris);
}
.seccion-titulo{
text-align:center;
font-size:clamp(2rem,4vw,3rem);
margin-bottom:14px;
color:var(--texto);
}
.seccion-bajada{
text-align:center;
color:var(--texto2);
max-width:700px;
margin:0 auto 60px;
line-height:1.7;
}
.grid-beneficios{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}
.card-beneficio{
background:white;
border-radius:24px;
padding:34px 26px;
text-align:center;
box-shadow:var(--shadow);
transition:.25s;
}
.card-beneficio:hover{
transform:translateY(-8px);
}
.icono{
width:72px;
height:72px;
border-radius:22px;
background:#FDEBEC;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
font-size:32px;
}
.card-beneficio h3{
margin-bottom:12px;
font-size:1.2rem;
}
.card-beneficio p{
color:var(--texto2);
line-height:1.7;
}
/* =========================================================
PASOS
========================================================= */
.pasos{
padding:110px 0;
background:#111827;
color:white;
}
.grid-pasos{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}
.card-paso{
background:rgba(255,255,255,.06);
border-radius:24px;
padding:40px 30px;
border:1px solid rgba(255,255,255,.08);
transition:.25s;
}
.card-paso:hover{
transform:translateY(-8px);
background:rgba(255,255,255,.09);
}
.numero{
width:62px;
height:62px;
border-radius:50%;
background:var(--rojo);
display:flex;
align-items:center;
justify-content:center;
font-size:1.5rem;
font-weight:900;
margin-bottom:24px;
}
.card-paso h3{
margin-bottom:12px;
font-size:1.3rem;
}
.card-paso p{
color:rgba(255,255,255,.72);
line-height:1.7;
}
/* =========================================================
CTA
========================================================= */
.cta{
padding:120px 0;
text-align:center;
background:
linear-gradient(
135deg,
var(--rojo),
var(--rojoOsc)
);
color:white;
}
.cta h2{
font-size:clamp(2.2rem,4vw,4rem);
margin-bottom:20px;
}
.cta p{
max-width:700px;
margin:0 auto 36px;
font-size:1.1rem;
line-height:1.8;
opacity:.95;
}
/* =========================================================
FOOTER
========================================================= */
.footer{
background:#0F172A;
color:white;
padding:70px 0 30px;
}
.footer-grid{
display:grid;
grid-template-columns:1.3fr 1fr 1fr;
gap:40px;
margin-bottom:40px;
}
.footer h4{
margin-bottom:18px;
font-size:.9rem;
text-transform:uppercase;
opacity:.7;
}
.footer ul{
list-style:none;
}
.footer li{
margin-bottom:12px;
opacity:.8;
}
.footer-base{
border-top:1px solid rgba(255,255,255,.08);
padding-top:24px;
text-align:center;
opacity:.6;
font-size:.85rem;
}
/* =========================================================
RESPONSIVE
========================================================= */
@media(max-width:960px){
.hero-grid{
grid-template-columns:1fr;
text-align:center;
}
.hero p{
margin:auto auto 30px;
}
.hero-botones{
justify-content:center;
}
.hero-visual{
order:-1;
}
.grid-beneficios{
grid-template-columns:1fr 1fr;
}
.grid-pasos{
grid-template-columns:1fr;
}
.footer-grid{
grid-template-columns:1fr 1fr;
}
}
@media(max-width:680px){
.header{
width:92%;
padding:12px 0;
}
.nav{
flex-wrap:wrap;
}
.nav-links{
width:100%;
justify-content:center;
flex-wrap:wrap;
margin-top:10px;
}
.hero{
padding-top:180px;
}
.grid-beneficios{
grid-template-columns:1fr;
}
.footer-grid{
grid-template-columns:1fr;
}
.hero-badge{
transform:scale(.82) rotate(-12deg);
}
.float{
transform:scale(.85);
}
}
HABILITACIÓN COMERCIAL SIMPLIFICADA
De tu idea al cartel de
HABILITADO
Llegó la nueva Habilitación Comercial Simplificada
de San Salvador de Jujuy.
Menos papeles, menos tiempo y más oportunidades
para tu negocio.
⚡ Trámite rápido
✔
HABILITADO
ONLINE
📄 Menos papeles
Beneficios
Formalizá tu comercio de manera rápida,
simple y completamente online.
⚡
Más rápido
Aprobaciones ágiles y reducción de tiempos.
📄
Menos papeles
Documentación mínima y procesos simplificados.
💻
100% Online
Realizá el trámite desde cualquier lugar.
🏪
Más oportunidades
Impulsá tu negocio de forma segura y formal.
¿Cómo funciona?
Comenzá tu habilitación en simples pasos.
1
Completá tus datos
Ingresá la información básica de tu comercio.
2
Subí documentación
Adjuntá la documentación requerida.
3
Obtené tu habilitación
Recibí la aprobación y comenzá a trabajar.