Preview de mixed.css
/* MIXED CSS PACK */
/* Template: cerrajeriaemsecor.com.ar/index.html */
/* Template mtime: 2026-05-20 11:53:09 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@700;800&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ===================================================
ROOT TOKENS
=================================================== */
:root {
--brand: #204188;
--brand-light: #3a5bb8;
--brand-dark: #163174;
--accent: #f78c02;
--accent-light: #ff9d1c;
--accent-dark: #e37f00;
--text: #111;
--text-light: #333;
--muted: #6b7280;
--muted-light: #9ca3af;
--card: #ffffff;
--bg: #ffffff;
--bg-alt: #f4f7fc;
--radius: 14px;
--radius-lg: 22px;
--radius-xl: 32px;
--shadow: 0 8px 32px rgba(32,65,136,.09);
--shadow-lg: 0 20px 50px rgba(32,65,136,.14);
--shadow-sm: 0 3px 12px rgba(0,0,0,.06);
--transition: all .3s cubic-bezier(.4,0,.2,1);
/* Tipografía */
--font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* ===================================================
BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-size: 1rem;
line-height: 1.65;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
a { color: var(--brand); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; }
/* ===================================================
BOTONES
=================================================== */
.btn-brand {
display: inline-flex; align-items: center; gap: 7px;
background: var(--brand);
color: #fff; border: 2px solid var(--brand);
font-family: var(--font-body); font-weight: 700; font-size: .95rem;
padding: 13px 28px; border-radius: var(--radius);
box-shadow: 0 4px 18px rgba(32,65,136,.25);
transition: var(--transition); cursor: pointer;
}
.btn-brand:hover {
background: var(--brand-dark); border-color: var(--brand-dark);
color: #fff; transform: translateY(-2px);
box-shadow: 0 10px 28px rgba(32,65,136,.35);
}
.btn-accent {
display: inline-flex; align-items: center; gap: 7px;
background: var(--accent); color: #fff; border: 2px solid var(--accent);
font-family: var(--font-body); font-weight: 700; font-size: .95rem;
padding: 13px 28px; border-radius: var(--radius);
box-shadow: 0 4px 18px rgba(247,140,2,.28);
transition: var(--transition); cursor: pointer;
}
.btn-accent:hover {
background: var(--accent-dark); border-color: var(--accent-dark);
color: #fff; transform: translateY(-2px);
box-shadow: 0 10px 28px rgba(247,140,2,.38);
}
.btn-ghost {
display: inline-flex; align-items: center; gap: 7px;
background: transparent; color: var(--brand);
border: 2px solid rgba(32,65,136,.25);
font-family: var(--font-body); font-weight: 600; font-size: .95rem;
padding: 13px 28px; border-radius: var(--radius);
transition: var(--transition); cursor: pointer;
}
.btn-ghost:hover {
border-color: var(--brand); background: rgba(32,65,136,.05);
color: var(--brand); transform: translateY(-2px);
}
/* ===================================================
TIPOGRAFÍA
=================================================== */
.display-hero {
font-family: var(--font-display);
font-size: clamp(2.6rem, 5.5vw, 4.2rem);
font-weight: 800;
line-height: 1.08;
letter-spacing: -0.8px;
}
.section-label {
display: inline-flex; align-items: center; gap: 8px;
font-size: .78rem; font-weight: 800; letter-spacing: .08em;
text-transform: uppercase; color: var(--accent);
background: rgba(247,140,2,.1); border-radius: 50px;
padding: 6px 14px; margin-bottom: 16px;
}
.section-title {
font-family: var(--font-display);
font-size: clamp(1.9rem, 3.5vw, 2.6rem);
font-weight: 800; line-height: 1.12; letter-spacing: -.35px;
color: var(--text); margin-bottom: 14px;
}
.section-sub {
color: var(--muted); font-size: 1.05rem; line-height: 1.7;
max-width: 58ch;
}
.text-gradient {
background: linear-gradient(100deg, var(--brand) 0%, var(--accent) 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
/* ===================================================
SECCIONES
=================================================== */
.section { padding: 110px 0; }
.section-alt { padding: 110px 0; background: var(--bg-alt); }
/* ===================================================
NAVBAR — Glass premium
=================================================== */
.navbar {
background: rgba(255,255,255,.88);
backdrop-filter: blur(18px) saturate(180%);
-webkit-backdrop-filter: blur(18px) saturate(180%);
border-bottom: 1px solid rgba(0,0,0,.06);
padding: 18px 0;
transition: var(--transition);
}
.navbar.scrolled {
padding: 12px 0;
box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
/* Logo */
.navbar-brand {
font-family: var(--font-display);
font-size: 1.35rem; font-weight: 800;
letter-spacing: -.3px; line-height: 1;
color: var(--brand) !important;
display: flex; align-items: center; gap: 10px;
}
.navbar-brand .brand-dot {
width: 8px; height: 8px; border-radius: 50%;
background: var(--accent); display: inline-block;
}
/* Nav links */
.nav-link {
font-family: var(--font-body); font-weight: 600; font-size: .9rem;
color: var(--text-light) !important;
padding: 7px 13px !important; border-radius: 8px;
transition: var(--transition);
position: relative;
}
.nav-link:hover, .nav-link.active {
color: var(--brand) !important;
background: rgba(32,65,136,.07);
}
/* Toggler custom */
.navbar-toggler {
border: 1.5px solid rgba(32,65,136,.25); border-radius: 10px;
padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(32,65,136,.15); }
@media (max-width: 991.98px) {
.navbar-collapse {
margin-top: 12px; padding: 16px;
background: white; border-radius: var(--radius);
box-shadow: var(--shadow-lg);
}
}
/* ===================================================
HERO
=================================================== */
#inicio {
position: relative; overflow: hidden;
padding: 0;
min-height: 92vh;
display: flex; align-items: center;
}
/* Background decoration */
#inicio::before {
content: '';
position: absolute; top: -80px; right: -120px;
width: 650px; height: 650px;
background: radial-gradient(circle, rgba(247,140,2,.07) 0%, transparent 70%);
border-radius: 50%; pointer-events: none;
}
#inicio::after {
content: '';
position: absolute; bottom: -100px; left: -100px;
width: 500px; height: 500px;
background: radial-gradient(circle, rgba(32,65,136,.06) 0%, transparent 70%);
border-radius: 50%; pointer-events: none;
}
/* Geometric accent lines */
.hero-lines {
position: absolute; top: 0; right: 0;
width: 55%; height: 100%;
pointer-events: none; z-index: 0; overflow: hidden;
}
.hero-lines::before {
content: '';
position: absolute; top: 10%; right: 5%;
width: 420px; height: 420px;
border: 2px solid rgba(32,65,136,.06);
border-radius: 50%;
}
.hero-lines::after {
content: '';
position: absolute; top: 20%; right: 15%;
width: 280px; height: 280px;
border: 1.5px solid rgba(247,140,2,.08);
border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; padding: 120px 0 80px; }
.hero-badge {
display: inline-flex; align-items: center; gap: 8px;
background: linear-gradient(135deg, rgba(32,65,136,.08) 0%, rgba(247,140,2,.08) 100%);
border: 1px solid rgba(32,65,136,.12);
padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
font-size: .83rem; font-weight: 700; letter-spacing: .04em;
text-transform: uppercase; color: var(--brand);
}
.hero-badge::before {
content: '';
width: 7px; height: 7px; border-radius: 50%;
background: var(--accent); animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: .35; }
}
/* Bullet list */
.hero-bullets { margin: 28px 0; display: flex; flex-direction: column; gap: 10px; }
.hero-bullet {
display: flex; align-items: center; gap: 12px;
font-size: .96rem; font-weight: 500; color: var(--text-light);
}
.hero-bullet .bicon {
width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
display: grid; place-items: center;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
color: #fff; font-size: .7rem;
}
/* Hero image */
.hero-img-wrap {
position: relative; z-index: 1;
display: flex; align-items: center; justify-content: center;
}
.hero-img-ring {
position: relative;
width: min(460px, 100%); aspect-ratio: 1;
border-radius: 50%;
background: linear-gradient(135deg, rgba(32,65,136,.05), rgba(247,140,2,.05));
border: 1.5px solid rgba(32,65,136,.08);
display: flex; align-items: center; justify-content: center;
}
.hero-img-ring::before {
content: '';
position: absolute; inset: -16px;
border-radius: 50%;
border: 1px dashed rgba(247,140,2,.15);
animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-img-inner {
width: 72%; aspect-ratio: 1; border-radius: 50%;
background: #fff;
box-shadow: 0 24px 60px rgba(32,65,136,.14);
display: flex; align-items: center; justify-content: center;
overflow: hidden;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-14px); }
}
.hero-img-inner img {
width: 85%; object-fit: contain;
}
/* Hero stats */
.hero-stats {
display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
font-family: var(--font-display);
font-size: 1.8rem; font-weight: 800; line-height: 1;
color: var(--brand);
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-lbl {
font-size: .78rem; font-weight: 700; text-transform: uppercase;
letter-spacing: .04em; color: var(--muted);
}
/* ===================================================
QUIÉNES SOMOS
=================================================== */
.about-card {
background: #fff;
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
overflow: hidden;
}
.about-card-header {
background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
padding: 28px; color: #fff;
}
.about-card-header .bi { font-size: 2rem; opacity: .75; }
.about-card-body { padding: 22px; }
.about-card-body .row-item {
display: flex; align-items: flex-start; gap: 14px;
padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.05);
}
.about-card-body .row-item:last-child { border-bottom: none; }
.about-icon-sm {
width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
display: grid; place-items: center;
background: linear-gradient(135deg, #eef2ff, #e0e7ff);
color: var(--brand); font-size: 1rem;
}
/* ===================================================
SERVICIOS — Cards avanzadas
=================================================== */
.srv-card {
background: #fff;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
border: 1.5px solid rgba(0,0,0,.055);
padding: 30px 26px 28px;
height: 100%; position: relative; overflow: hidden;
transition: var(--transition);
}
.srv-card::after {
content: '';
position: absolute; bottom: 0; left: 0;
width: 100%; height: 3px;
background: linear-gradient(90deg, var(--brand), var(--accent));
transform: scaleX(0); transform-origin: left;
transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.srv-card:hover {
transform: translateY(-7px);
box-shadow: var(--shadow-lg);
border-color: transparent;
}
.srv-card:hover::after { transform: scaleX(1); }
.srv-icon {
width: 58px; height: 58px; border-radius: 16px; margin-bottom: 20px;
display: grid; place-items: center;
background: linear-gradient(135deg, rgba(32,65,136,.07), rgba(32,65,136,.12));
color: var(--brand); font-size: 1.5rem;
transition: var(--transition);
}
.srv-card:hover .srv-icon {
background: linear-gradient(135deg, var(--brand), var(--brand-light));
color: #fff;
}
.srv-card h5 {
font-family: var(--font-display);
font-weight: 700; font-size: 1.05rem;
margin-bottom: 8px; color: var(--text);
}
.srv-card p {
font-size: .9rem; color: var(--muted); line-height: 1.55; margin: 0;
}
/* Big number watermark */
.srv-num {
position: absolute; top: 16px; right: 18px;
font-family: var(--font-display);
font-size: 3rem; font-weight: 800; line-height: 1;
color: rgba(32,65,136,.05);
pointer-events: none; user-select: none;
transition: var(--transition);
}
.srv-card:hover .srv-num { color: rgba(247,140,2,.08); }
/* ===================================================
POR QUÉ ELEGIRNOS — Cards horizontales premium
=================================================== */
.why-card {
background: #fff;
border-radius: var(--radius-lg);
border: 1.5px solid rgba(0,0,0,.06);
box-shadow: var(--shadow-sm);
padding: 24px 22px;
display: flex; gap: 18px; align-items: flex-start;
height: 100%; transition: var(--transition);
}
.why-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
border-color: rgba(32,65,136,.12);
}
.why-icon {
width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
display: grid; place-items: center;
background: linear-gradient(135deg, rgba(247,140,2,.1), rgba(247,140,2,.18));
color: var(--accent); font-size: 1.3rem;
transition: var(--transition);
}
.why-card:hover .why-icon {
background: linear-gradient(135deg, var(--accent), var(--accent-light));
color: #fff;
}
.why-card h6 {
font-family: var(--font-display);
font-weight: 700; font-size: 1rem;
margin-bottom: 4px; color: var(--text);
}
.why-card p { font-size: .88rem; color: var(--muted); margin: 0; }
/* ===================================================
GALERÍA — igual que antes (sin tocar)
=================================================== */
/* [La sección se reutiliza íntegra] */
/* ===================================================
FAQ — Accordion moderno
=================================================== */
.faq-item {
margin-bottom: 10px; border-radius: var(--radius) !important;
border: 1.5px solid rgba(0,0,0,.07) !important;
background: #fff; overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.faq-item:hover { border-color: rgba(32,65,136,.15) !important; }
.faq-btn {
font-family: var(--font-body); font-weight: 700; font-size: 1rem;
color: var(--text) !important;
padding: 20px 22px !important;
background: #fff !important; border: none !important;
box-shadow: none !important;
border-radius: 0 !important;
display: flex; align-items: center; gap: 14px;
}
.faq-btn .faq-icon-wrap {
width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
display: grid; place-items: center;
background: rgba(32,65,136,.07); color: var(--brand);
font-size: .95rem; transition: var(--transition);
}
.faq-btn:not(.collapsed) .faq-icon-wrap {
background: var(--brand); color: #fff;
}
.faq-btn::after { margin-left: auto; }
.faq-btn:not(.collapsed) { color: var(--brand) !important; }
.faq-body {
padding: 0 22px 20px 70px !important;
font-size: .95rem; color: var(--muted); line-height: 1.65;
}
/* ===================================================
CONTACTO
=================================================== */
.contact-col-info { padding: 10px 0; }
.contact-info-item {
display: flex; gap: 18px; align-items: flex-start;
padding: 18px 20px; border-radius: var(--radius);
background: #fff; border: 1.5px solid rgba(0,0,0,.06);
box-shadow: var(--shadow-sm); margin-bottom: 12px;
transition: var(--transition);
}
.contact-info-item:hover {
border-color: rgba(32,65,136,.12);
box-shadow: var(--shadow);
transform: translateX(4px);
}
.ci-icon {
width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
display: grid; place-items: center;
background: linear-gradient(135deg, rgba(32,65,136,.08), rgba(32,65,136,.14));
color: var(--brand); font-size: 1.15rem;
transition: var(--transition);
}
.contact-info-item:hover .ci-icon {
background: linear-gradient(135deg, var(--brand), var(--brand-light));
color: #fff;
}
.ci-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.ci-value { font-weight: 600; color: var(--text); font-size: .97rem; margin-top: 2px; }
.ci-value a { color: inherit; }
.ci-value a:hover { color: var(--brand); }
/* Formulario premium */
.contact-form-card {
background: #fff;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
padding: 40px 36px;
border: 1.5px solid rgba(0,0,0,.05);
position: relative; overflow: hidden;
}
.contact-form-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 4px;
background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}
.form-label {
font-size: .82rem; font-weight: 700; text-transform: uppercase;
letter-spacing: .04em; color: var(--muted); margin-bottom: 6px;
}
.form-control {
border: 1.5px solid rgba(0,0,0,.1); border-radius: 10px;
padding: 12px 14px; font-size: .95rem; font-family: var(--font-body);
color: var(--text); background: var(--bg-alt);
transition: var(--transition);
}
.form-control:focus {
border-color: var(--brand); background: #fff;
box-shadow: 0 0 0 3px rgba(32,65,136,.1);
outline: none;
}
.form-control::placeholder { color: var(--muted-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
/* ===================================================
FOOTER
=================================================== */
footer {
background: var(--accent);
color: #111;
border-top: 0;
position: relative;
}
footer::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 5px;
background: rgba(0,0,0,.18);
}
footer a { color: #111; }
footer a:hover { color: #111; opacity: .72; }
.footer-brand {
font-family: var(--font-display);
font-size: 1.25rem; font-weight: 800; color: #111;
display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.footer-sub { font-size: .88rem; color: rgba(0,0,0,.78); font-weight: 600; }
footer .bi { color: #111 !important; }
.footer-links a {
font-size: .88rem; font-weight: 800; color: #111;
margin-left: 20px; transition: var(--transition);
}
.footer-links a:hover { color: #111; opacity: .72; }
.footer-social a {
display: inline-flex; align-items: center; justify-content: center;
width: 38px; height: 38px; border-radius: 10px;
background: rgba(255,255,255,.34); color: #111;
border: 1px solid rgba(0,0,0,.13);
margin-left: 8px; transition: var(--transition); font-size: 1rem;
}
.footer-social a:hover {
background: #111; color: var(--accent); transform: translateY(-2px); opacity: 1;
}
.footer-social a:hover .bi { color: var(--accent) !important; }
.footer-copy {
font-size: .82rem; color: rgba(0,0,0,.76); font-weight: 600;
border-top: 1px solid rgba(0,0,0,.18);
padding-top: 20px; margin-top: 24px; text-align: center;
}
/* ===================================================
FLOTANTES — igual que original
=================================================== */
.fb-float {
position: fixed; right: 18px; bottom: 156px;
z-index: 9997; width: 54px; height: 54px; border-radius: 50%;
display: grid; place-items: center; color: #fff; text-decoration: none;
background: linear-gradient(135deg,#1877F2,#0f5dc2);
box-shadow: 0 10px 30px rgba(0,0,0,.22);
transition: transform .25s, box-shadow .25s;
}
.fb-float:hover { transform: translateY(-2px) scale(1.06); color: #fff; }
.ig-float {
position: fixed; right: 18px; bottom: 92px;
z-index: 9998; width: 54px; height: 54px; border-radius: 50%;
display: grid; place-items: center; color: #fff; text-decoration: none;
background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
box-shadow: 0 10px 30px rgba(0,0,0,.22);
transition: transform .25s, box-shadow .25s;
}
.ig-float:hover { transform: translateY(-2px) scale(1.06); color: #fff; }
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 9999; font-family: inherit; }
.wa-btn {
background: linear-gradient(135deg,#25D366,#128C7E);
color: #fff; border: 0; width: 60px; height: 60px; border-radius: 50%;
display: grid; place-items: center;
box-shadow: 0 10px 30px rgba(0,0,0,.22);
cursor: pointer; transition: transform .3s, box-shadow .3s;
animation: wa-pulse 2.5s ease infinite;
}
@keyframes wa-pulse {
0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-btn:hover { transform: translateY(-3px) scale(1.05); }
/* WhatsApp Card */
.wa-card {
position: absolute; right: 0; bottom: 74px; width: min(360px,92vw);
background: #0b0f18; color: #fff; border-radius: 18px; overflow: hidden;
box-shadow: 0 18px 60px rgba(0,0,0,.45);
border: 1px solid rgba(255,255,255,.07);
transform: translateY(10px); opacity: 0;
transition: transform .3s, opacity .3s;
}
.wa-card[aria-modal="true"] { transform: translateY(0); opacity: 1; }
.wa-head {
display: flex; align-items: center; gap: 12px; padding: 14px;
background: #0d162c; border-bottom: 1px solid rgba(255,255,255,.06);
}
.wa-avatar {
width: 40px; height: 40px; border-radius: 8px; background: #0e1a33;
display: grid; place-items: center; border: 1px solid rgba(255,255,255,.08); overflow: hidden;
}
.wa-title { font-weight: 700; font-size: 1.05rem; }
.wa-status {
font-size: .85rem; color: rgba(255,255,255,.6);
display: flex; align-items: center; gap: 6px;
}
.wa-status::before {
content: ''; width: 8px; height: 8px; border-radius: 50%; background: #25D366;
}
.wa-close {
margin-left: auto; background: transparent; color: #fff; border: 0;
font-size: 24px; cursor: pointer; opacity: .6; width: 32px; height: 32px;
border-radius: 50%; display: flex; align-items: center; justify-content: center;
transition: .2s;
}
.wa-close:hover { opacity: 1; background: rgba(255,255,255,.1); }
.wa-body {
padding: 12px 14px; max-height: 40vh; overflow: auto;
display: flex; flex-direction: column; gap: 8px;
}
.wa-bubble {
max-width: 88%; padding: 10px 12px; border-radius: 14px;
line-height: 1.35; box-shadow: 0 4px 14px rgba(0,0,0,.2);
animation: fadeUp .25s ease;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(5px); } to { opacity:1; transform:none; } }
.wa-bot { background: #0c1428; border: 1px solid rgba(255,255,255,.06); align-self: flex-start; border-bottom-left-radius: 4px; }
.wa-user { background: #075E54; align-self: flex-end; border-bottom-right-radius: 4px; }
.wa-compose {
display: grid; grid-template-columns: 1fr auto; gap: 8px;
padding: 10px; background: #0b0f18; border-top: 1px solid rgba(255,255,255,.08);
}
.wa-compose textarea {
resize: none; border-radius: 12px; padding: 10px 12px;
border: 1px solid rgba(255,255,255,.12); background: #0a1324;
color: #fff; outline: none; min-height: 44px; font-family: inherit;
transition: .2s;
}
.wa-compose textarea:focus { border-color: #25D366; box-shadow: 0 0 0 2px rgba(37,211,102,.15); }
.wa-send {
background: #25D366; color: #0b1220; border: 0; border-radius: 12px;
padding: 0 16px; font-weight: 700; cursor: pointer; display: flex;
align-items: center; justify-content: center; transition: .2s;
}
.wa-send:hover { background: #128C7E; transform: scale(1.05); }
/* ===================================================
FADE-IN ANIMATION
=================================================== */
.fade-up {
opacity: 0; transform: translateY(28px);
transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* Stagger delays */
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .40s; }
/* ===================================================
RESPONSIVE
=================================================== */
@media (max-width: 991.98px) {
#inicio { min-height: auto; padding-bottom: 40px; }
.hero-content { padding: 100px 0 60px; }
.hero-img-wrap { margin-top: 40px; }
.hero-img-ring { width: min(320px, 90%); }
.section, .section-alt { padding: 80px 0; }
.contact-form-card { padding: 28px 20px; }
}
@media (max-width: 575.98px) {
.display-hero { font-size: clamp(2.15rem, 11vw, 3rem); letter-spacing: -0.45px; line-height: 1.1; }
.hero-stats { gap: 20px; }
.fb-float { right: 12px; bottom: 148px; width: 52px; height: 52px; }
.ig-float { right: 12px; bottom: 86px; width: 52px; height: 52px; }
.wa-float { right: 12px; bottom: 12px; }
.wa-card { width: calc(100vw - 24px); }
}
/* ===================================================
FIX MOBILE NAV + HERO — inyección correctiva
Evita scroll lateral en phone, compacta el hero y cierra menú.
=================================================== */
html,
body {
width: 100%;
max-width: 100%;
overflow-x: hidden;
}
body {
position: relative;
}
.navbar,
.navbar .container,
#inicio,
section,
footer {
max-width: 100vw;
}
@media (max-width: 991.98px) {
.navbar {
padding: 12px 0;
}
.navbar > .container {
width: 100%;
max-width: 100%;
padding-left: 12px;
padding-right: 12px;
flex-wrap: wrap;
overflow: visible;
}
.navbar-brand {
min-width: 0;
max-width: calc(100% - 64px);
font-size: 1.2rem;
white-space: nowrap;
overflow: hidden;
}
.navbar-brand img {
flex: 0 0 auto;
}
.navbar-toggler {
margin-left: auto;
flex: 0 0 auto;
width: 52px;
height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.navbar-collapse.collapse:not(.show) {
display: none !important;
}
.navbar-collapse.collapse.show,
.navbar-collapse.collapsing {
display: block !important;
width: 100%;
max-width: 100%;
flex-basis: 100%;
}
.navbar-collapse {
margin-top: 10px;
padding: 14px;
background: #fff;
border: 1px solid rgba(32,65,136,.08);
border-radius: var(--radius);
box-shadow: 0 18px 45px rgba(17,24,39,.13);
overflow-x: hidden;
}
.navbar-nav {
width: 100%;
}
.nav-link {
width: 100%;
}
#navMain .btn-accent {
width: 100%;
justify-content: center;
margin-top: 8px;
}
#inicio {
min-height: auto;
padding-bottom: 18px;
}
.hero-content {
padding: 34px 0 54px;
--bs-gutter-x: 1.25rem;
}
.hero-badge {
max-width: 100%;
width: fit-content;
white-space: normal;
line-height: 1.25;
}
.hero-bullet {
align-items: flex-start;
line-height: 1.45;
}
.hero-bullet .bicon {
margin-top: 2px;
}
.hero-img-wrap {
margin-top: 28px;
overflow: hidden;
}
.hero-img-ring {
max-width: 100%;
}
.hero-img-ring > div[style*="position:absolute"] {
display: none !important;
}
}
@media (max-width: 575.98px) {
.navbar {
padding: 10px 0;
}
.hero-content {
padding-top: 24px;
}
.hero-badge {
font-size: .73rem;
padding: 8px 13px;
}
.display-hero {
font-size: clamp(2rem, 10.5vw, 2.75rem);
line-height: 1.12;
letter-spacing: -0.35px;
}
.btn-brand,
.btn-ghost,
.btn-accent {
max-width: 100%;
}
.hero-stats {
gap: 18px;
}
}
/* ===================================================
FIX HERO IMAGE PHONE — imagen debajo del párrafo
Sólo aplica en phone: desktop y tablet quedan igual.
=================================================== */
.hero-img-mobile {
display: none;
}
@media (max-width: 767.98px) {
.hero-img-mobile {
display: flex;
justify-content: center;
align-items: center;
margin: 22px auto 22px;
width: 100%;
}
.hero-img-mobile .hero-img-ring {
width: min(255px, 82vw);
}
.hero-img-mobile .hero-img-ring::before {
inset: -10px;
}
.hero-img-mobile .hero-img-inner {
width: 74%;
}
.hero-visual-desktop {
display: none !important;
}
.hero-bullets {
margin-top: 22px;
}
}
/* ===================================================
FIX TIENDA RESPONSIVE — iframe + modales en phone
Mantiene desktop igual y evita que la tienda empuje
el lienzo hacia los costados en celulares.
=================================================== */
#tienda {
overflow: hidden;
}
.store-embed-wrap {
width: 100%;
max-width: 100%;
overflow: hidden;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
background: #fff;
border: 1.5px solid rgba(0,0,0,.05);
isolation: isolate;
}
.store-embed-frame {
display: block;
width: 100%;
max-width: 100%;
border: 0;
height: 80vh;
min-height: 680px;
background: #fff;
overflow: hidden;
}
.store-mobile-note {
display: none;
margin: 12px auto 0;
max-width: 520px;
color: var(--muted);
font-size: .86rem;
line-height: 1.45;
}
@media (max-width: 767.98px) {
#tienda {
padding-top: 72px;
padding-bottom: 72px;
}
#tienda .container {
width: 100%;
max-width: 100%;
padding-left: 10px;
padding-right: 10px;
overflow: hidden;
}
#tienda .text-center.mb-5 {
margin-bottom: 1.8rem !important;
}
.store-embed-wrap {
border-radius: 18px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 14px 38px rgba(32,65,136,.13);
}
.store-embed-frame {
height: 76vh;
min-height: 560px;
max-height: 820px;
width: 100%;
}
.store-mobile-note {
display: block;
}
.store-actions .btn-brand {
width: 100%;
justify-content: center;
}
}
@media (max-width: 390px) {
#tienda .container {
padding-left: 8px;
padding-right: 8px;
}
.store-embed-frame {
min-height: 535px;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* Galería — íntegra, sin cambios */
.gal-gallery .carousel{max-width:980px;margin-inline:auto;position:relative}
.gal-frame{
height:clamp(220px,48vh,440px);background:#fff;border-radius:16px;overflow:hidden;
box-shadow:0 12px 28px rgba(0,0,0,.12);
display:flex;align-items:center;justify-content:center;padding:8px
}
.gal-img{width:auto!important;max-width:100%;height:auto!important;max-height:100%;object-fit:contain!important;object-position:center;display:block;cursor:zoom-in}
.gal-gallery .carousel-control-prev,.gal-gallery .carousel-control-next{z-index:20;width:50px;height:50px;top:50%;transform:translateY(-50%);opacity:1;background:rgba(0,0,0,.55);border-radius:50%;margin:0 12px}
.gal-gallery .carousel-control-prev{left:0}
.gal-gallery .carousel-control-next{right:0}
.gal-gallery .gal-ctrl-icon{width:2.6rem;height:2.6rem;background-size:60% 60%}
.gal-gallery .carousel-indicators{z-index:10;bottom:-50px}
.gal-gallery .carousel-indicators button{width:10px;height:10px;border-radius:50%;background:rgba(0,0,0,.5);border:none}
.gal-gallery .carousel-indicators button.active{background:#000}
.gal-gallery{padding-bottom:56px}
#galLightbox .modal-content{background:#000}
#galLightboxImg{max-height:86vh;width:100%;height:auto;object-fit:contain;background:#000}
.gal-lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);border:0;width:44px;height:44px;border-radius:999px;background:rgba(255,255,255,.18);color:#fff;font-size:30px;line-height:44px;text-align:center;z-index:5;cursor:pointer}
.gal-lightbox-nav:hover{background:rgba(255,255,255,.28)}
.gal-lightbox-nav.gal-prev{left:10px}
.gal-lightbox-nav.gal-next{right:10px}
@media(max-width:575.98px){.gal-frame{height:clamp(200px,40vh,360px)}}