fletesymudanzascarlitos.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.csshttps://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,600;14..32,700;14..32,800;14..32,900&display=swap/* tus styles siguen acá abajo SIN CAMBIOS */
<style>
/* ===== RESET Y VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--accent: #e21728;
--accent-dark: #b0101c;
--accent-light: rgba(226, 23, 40, 0.08);
--text: #1a1e24;
--text-muted: #5b6877;
--bg: #ffffff;
--bg-soft: #f9fafc;
--border: #e9edf2;
--border-light: #f0f3f7;
--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
--shadow-md: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 20px 48px -12px rgba(0, 0, 0, 0.12);
--radius-md: 20px;
--radius-lg: 32px;
--radius-full: 999px;
--transition: all 0.2s ease;
}
html { scroll-behavior: smooth; }
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.5;
overflow-x: hidden;
}
html, body { overflow-x: hidden; }
/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.2;
}
.display-5 { font-size: clamp(2.2rem, 5vw, 3rem); }
/* ===== HELPERS ===== */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--accent);
background: var(--accent-light);
padding: 0.4rem 1rem;
border-radius: var(--radius-full);
}
.eyebrow i { font-size: 1rem; }
.section {
padding: clamp(64px, 8vw, 100px) 0;
}
.section-title {
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
margin-top: 1rem;
margin-bottom: 1rem;
}
.section-subtitle {
font-size: 1.2rem;
color: var(--text-muted);
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.anchor-offset { scroll-margin-top: 90px; }
/* ===== NAVBAR (MÁS ELEGANTE) ===== */
.navbar {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border-light);
padding: 0.75rem 0;
box-shadow: var(--shadow-sm);
}
.navbar-brand {
font-weight: 900;
letter-spacing: -0.02em;
color: var(--text);
}
.navbar-brand .footer-badge {
background: var(--accent);
color: white;
padding: 0.35rem 0.85rem;
border-radius: var(--radius-full);
font-size: 0.85rem;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.navbar .nav-link {
font-weight: 600;
color: var(--text);
opacity: 0.8;
padding: 0.5rem 1rem !important;
border-radius: var(--radius-full);
transition: var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
opacity: 1;
color: var(--accent);
background: var(--accent-light);
}
.navbar-toggler {
border: 1px solid var(--border);
padding: 0.5rem;
border-radius: 12px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--accent-light); }
/* ===== BOTONES ===== */
.btn {
font-weight: 700;
padding: 0.7rem 1.4rem;
border-radius: var(--radius-full);
transition: var(--transition);
}
.btn-accent {
background: var(--accent);
border-color: var(--accent);
color: white;
box-shadow: 0 8px 18px -6px rgba(226, 23, 40, 0.4);
}
.btn-accent:hover {
background: var(--accent-dark);
border-color: var(--accent-dark);
color: white;
transform: translateY(-2px);
box-shadow: 0 12px 24px -8px rgba(226, 23, 40, 0.5);
}
.btn-outline-accent {
border: 2px solid var(--accent);
color: var(--accent);
background: transparent;
}
.btn-outline-accent:hover {
background: var(--accent);
color: white;
transform: translateY(-2px);
box-shadow: 0 8px 18px -6px rgba(226, 23, 40, 0.3);
}
/* ===== CARDS (MODERNAS, CON MÁS PERSONALIDAD) ===== */
.card-soft {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
transition: var(--transition);
height: 100%;
}
.card-soft:hover {
box-shadow: var(--shadow-md);
border-color: rgba(226, 23, 40, 0.2);
}
.icon-badge {
width: 52px;
height: 52px;
border-radius: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--accent-light);
color: var(--accent);
font-size: 1.5rem;
transition: var(--transition);
}
.card-soft:hover .icon-badge {
background: var(--accent);
color: white;
}
/* ===== HERO (MÁS IMPACTO) ===== */
.hero {
padding-top: 120px;
padding-bottom: 60px;
background: linear-gradient(to bottom, white, var(--bg-soft));
}
.hero-card {
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
overflow: hidden;
background: white;
}
.hero-left { padding: clamp(30px, 4vw, 50px); }
.hero h1 { line-height: 1.1; }
.hero p { color: var(--text-muted); }
.hero-list {
list-style: none;
padding: 0;
display: grid;
gap: 0.75rem;
}
.hero-list li {
display: flex;
gap: 0.75rem;
align-items: center;
font-weight: 600;
}
.hero-list i {
color: var(--accent);
font-size: 1.25rem;
}
.hero-media {
background: linear-gradient(145deg, var(--accent-light), transparent 70%);
border-left: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.hero-media .media-frame {
width: 100%;
max-width: 500px;
aspect-ratio: 1/1;
background: white;
border-radius: 28px;
box-shadow: var(--shadow-md);
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
}
.hero-media img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
/* ===== GALERÍA (TU CÓDIGO, PERFECTAMENTE INTEGRADO) ===== */
.gal-gallery .carousel { max-width: 980px; margin-inline: auto; position: relative; }
.gal-frame {
height: clamp(240px, 50vh, 460px);
background: #fff; border-radius: 24px; overflow: hidden;
box-shadow: var(--shadow-md);
display: flex; align-items: center; justify-content: center; padding: 12px;
}
.gal-img {
width: auto !important; max-width: 100%;
height: auto !important; max-height: 100%;
object-fit: contain !important; cursor: zoom-in;
transition: transform 0.3s ease;
}
.gal-img:hover { transform: scale(1.02); }
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
z-index: 20; width: 48px; height: 48px; top: 50%; transform: translateY(-50%);
opacity: 1; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
border-radius: 50%; margin: 0 16px; border: 1px solid var(--border);
box-shadow: var(--shadow-sm);
}
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover { background: white; box-shadow: var(--shadow-md); }
.gal-gallery .carousel-control-prev-icon,
.gal-gallery .carousel-control-next-icon {
/* ...cortado... */
/* Contenedor del texto */
.video-head{ max-width: 860px; }
/* Card video: fija proporción para que NO se estire en desktop */
.video-card{
position: relative;
border-radius: 22px;
overflow: hidden;
background: #000;
box-shadow: 0 14px 35px rgba(0,0,0,.10);
border: 1px solid rgba(0,0,0,.06);
aspect-ratio: 16 / 9; /* ✅ desktop prolijo */
}
/* Video ocupa todo el card sin deformarse */
.promo-video{
position: absolute;
inset: 0;
width: 100%;
height: 100%;
display: block;
object-fit: cover; /* llena lindo sin deformar (puede recortar) */
background: #000;
}
/* Overlay suave */
.video-overlay{
position:absolute;
inset:0;
pointer-events:none;
background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.25) 100%);
opacity: .35;
z-index: 1;
}
/* Botón flotante dentro del video */
.sound-fab{
position: absolute;
top: 14px;
right: 14px;
z-index: 2;
border: 1px solid rgba(255,255,255,.35);
background: rgba(0,0,0,.45);
color: #fff;
width: 46px;
height: 46px;
border-radius: 999px;
display:flex;
align-items:center;
justify-content:center;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
cursor: pointer;
transition: transform .15s ease, background .15s ease;
}
.sound-fab:hover{ transform: translateY(-1px); background: rgba(0,0,0,.55); }
.sound-fab:active{ transform: translateY(0px) scale(.98); }
/* Phone */
@media (max-width: 576px){
.video-card{ aspect-ratio: 16 / 10; } /* un toque más alto en móvil */
}
/* Scope seguro: wa-* */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family: inherit;
}
/* BOTÓN */
.wa-btn{
width:60px;height:60px;border-radius:50%;
border:none;
background: linear-gradient(135deg, #25D366, #128C7E);
color:#fff;
display:grid;place-items:center;
cursor:pointer;
box-shadow:0 12px 34px rgba(18,140,126,.35);
transition: transform .25s ease, box-shadow .25s ease;
}
.wa-btn:hover{
transform: translateY(-3px) scale(1.05);
box-shadow:0 16px 44px rgba(18,140,126,.45);
}
/* CARD */
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid rgba(0,0,0,.12);
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform: translateY(10px);
opacity:0;
transition: .25s ease;
}
.wa-card[aria-modal="true"]{
transform:none;
opacity:1;
}
/* HEADER (adaptado al accent #e21728) */
.wa-head{
display:flex;align-items:center;gap:12px;
padding:14px;
background: linear-gradient(135deg, #e21728, #b8101f);
color:#fff;
}
.wa-avatar{
width:40px;height:40px;
background:#fff;
border-radius:10px;
display:grid;place-items:center;
overflow:hidden;
}
.wa-avatar img{ width:100%; height:100%; object-fit:contain; padding:6px; }
.wa-avatar.wa-avatar-fallback{
font-weight: 900;
color:#e21728;
font-size: 18px;
}
.wa-title{ font-weight:800; line-height:1.1; }
.wa-status{ font-size:.85rem; opacity:.92; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
line-height: 1;
cursor:pointer;
padding: 4px 8px;
border-radius: 10px;
}
.wa-close:hover{ background: rgba(255,255,255,.14); }
/* BODY */
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f8f9fa;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#fff;
border:1px solid rgba(0,0,0,.10);
align-self:flex-start;
}
.wa-user{
background: rgba(226,23,40,.08);
border: 1px solid rgba(226,23,40,.22);
align-self:flex-end;
}
/* COMPOSE */
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid rgba(0,0,0,.12);
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid rgba(0,0,0,.12);
font-family:inherit;
outline:none;
}
.wa-compose textarea:focus{
border-color: rgba(226,23,40,.55);
box-shadow: 0 0 0 .18rem rgba(226,23,40,.12);
}
.wa-send{
background:#e21728;
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
transition:.2s ease;
}
.wa-send:hover{ background:#b8101f; }
/* Mobile */
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
construccionescabral.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap/* ===== VARIABLES Y RESET ===== */
:root {
--accent: #928d8d;
--accent-dark: #7a7575;
--ink: #1e1e1e;
--muted: #5f5f5f;
--soft-bg: #f9f9f9;
--white: #ffffff;
--radius-lg: 24px;
--radius-md: 16px;
--radius-sm: 12px;
--shadow-card: 0 20px 35px -8px rgba(0,0,0,0.07), 0 5px 15px rgba(0,0,0,0.03);
--shadow-hover: 0 30px 45px -12px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.05);
--shadow-btn: 0 8px 18px rgba(146,141,141,0.2);
--transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
* {
box-sizing: border-box;
}
html, body {
height: 100%;
scroll-behavior: smooth;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
color: var(--ink);
background: var(--white);
overflow-x: hidden;
line-height: 1.5;
font-weight: 400;
}
/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
font-weight: 700;
letter-spacing: -0.02em;
}
.fw-black {
font-weight: 900;
}
/* ===== UTILIDADES ===== */
.accent {
color: var(--accent);
}
.muted {
color: var(--muted);
}
/* ===== BOTONES PREMIUM ===== */
.btn-accent {
--bs-btn-bg: var(--accent);
--bs-btn-border-color: var(--accent);
--bs-btn-hover-bg: var(--accent-dark);
--bs-btn-hover-border-color: var(--accent-dark);
--bs-btn-color: #fff;
--bs-btn-hover-color: #fff;
--bs-btn-focus-shadow-rgb: 146,141,141;
--bs-btn-active-bg: var(--accent-dark);
--bs-btn-active-border-color: var(--accent-dark);
border-radius: 60px;
padding: 0.75rem 1.5rem;
font-weight: 600;
font-size: 1rem;
transition: var(--transition);
box-shadow: none;
}
.btn-accent:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-btn);
}
.btn-outline-accent {
--bs-btn-color: var(--accent);
--bs-btn-border-color: var(--accent);
--bs-btn-hover-bg: var(--accent);
--bs-btn-hover-border-color: var(--accent);
--bs-btn-hover-color: #fff;
--bs-btn-focus-shadow-rgb: 146,141,141;
--bs-btn-active-bg: var(--accent);
--bs-btn-active-border-color: var(--accent);
border-radius: 60px;
padding: 0.75rem 1.5rem;
font-weight: 600;
font-size: 1rem;
transition: var(--transition);
}
.btn-outline-accent:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-btn);
}
/* ===== NAVBAR ===== */
.navbar {
backdrop-filter: blur(12px);
background: rgba(255, 255, 255, 0.85);
border-bottom: 1px solid rgba(0, 0, 0, 0.03);
box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.navbar .navbar-brand {
font-weight: 800;
letter-spacing: -0.02em;
color: var(--ink);
font-size: 1.3rem;
}
.navbar .nav-link {
font-weight: 500;
color: var(--ink);
padding: 0.5rem 1rem !important;
transition: var(--transition);
border-radius: 30px;
font-size: 0.95rem;
}
.navbar .nav-link:hover {
color: var(--accent);
background: rgba(146,141,141,0.05);
}
.navbar-toggler {
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 12px;
padding: 0.5rem 0.6rem;
box-shadow: none;
}
.navbar-toggler:focus {
box-shadow: none;
border-color: var(--accent);
}
/* ===== SECCIONES ===== */
.section {
padding: 100px 0;
}
.anchor-offset {
scroll-margin-top: 90px;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
background: rgba(146, 141, 141, 0.08);
padding: 0.4rem 1rem;
border-radius: 60px;
border: 1px solid rgba(146, 141, 141, 0.1);
backdrop-filter: blur(4px);
}
.section-title {
font-weight: 800;
font-size: clamp(2rem, 4vw, 2.8rem);
letter-spacing: -0.03em;
margin-top: 1rem;
margin-bottom: 1rem;
line-height: 1.2;
}
.section-subtitle {
color: var(--muted);
max-width: 70ch;
margin-inline: auto;
font-size: 1.1rem;
}
/* ===== HERO ===== */
.hero {
padding-top: 140px;
padding-bottom: 80px;
background: linear-gradient(145deg, rgba(146,141,141,0.06) 0%, rgba(255,255,255,0) 70%);
}
.hero h1 {
font-weight: 900;
letter-spacing: -0.03em;
line-height: 1.1;
font-size: clamp(2.5rem, 5vw, 3.8rem);
margin: 1rem 0 1.2rem;
}
.hero p {
color: var(--muted);
font-size: 1.1rem;
max-width: 65ch;
}
.hero-points {
margin: 1.8rem 0 1rem;
}
.hero-point {
display: flex;
gap: 0.8rem;
align-items: center;
color: var(--ink);
font-weight: 500;
margin-bottom: 0.6rem;
}
.hero-point i {
color: var(--accent);
font-size: 1.3rem;
flex-shrink: 0;
}
.hero-cta {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin: 2rem 0 1.5rem;
}
.hero-media {
border-radius: var(--radius-lg);
background: var(--white);
box-shadow: var(--shadow-card);
border: 1px solid rgba(0, 0, 0, 0.03);
overflow: hidden;
padding: 12px;
max-width: 520px;
margin-inline: auto;
transition: var(--transition);
}
.hero-media:hover {
box-shadow: var(--shadow-hover);
}
.hero-media .frame {
width: 100%;
aspect-ratio: 1/1;
background: var(--soft-bg);
border-radius: calc(var(--radius-lg) - 8px);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.hero-media img {
width: auto;
max-width: 100%;
height: auto;
max-height: 100%;
object-fit: contain;
display: block;
}
/* ===== CARDS ===== */
.card-soft {
border: 1px solid rgba(0, 0, 0, 0.03);
border-radius: var(--radius-md);
background: var(--white);
box-shadow: var(--shadow-card);
transition: var(--transition);
height: 100%;
overflow: hidden;
}
.card-soft:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-5px);
}
.card-soft .card-body {
padding: 1.8rem 1.5rem;
}
.icon-circle {
width: 52px;
height: 52px;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(146, 141, 141, 0.1);
color: var(--accent);
border: 1px solid rgba(146, 141, 141, 0.15);
margin-bottom: 1.2rem;
font-size: 1.8rem;
transition: var(--transition);
}
.card-soft:hover .icon-circle {
background: var(--accent);
color: white;
border-color: var(--accent);
}
/* ===== SERVICIOS ===== */
.service-item {
display: flex;
gap: 1rem;
align-items: flex-start;
padding: 1.2rem;
border-radius: var(--radius-md);
border: 1px solid rgba(0, 0, 0, 0.03);
background: var(--white);
box-shadow: var(--shadow-card);
height: 100%;
transition: var(--transition);
}
.service-item:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-4px);
}
.service-item .icon-circle {
width: 44px;
height: 44px;
border-radius: 14px;
font-size: 1.5rem;
m
/* ...cortado... */
/* ===== Videos (scope #videos / .vid-*) ===== */
#videos .vid-grid{
display:grid;
gap: 16px;
grid-template-columns: 1fr; /* phone */
}
@media (min-width: 992px){
#videos .vid-grid{
grid-template-columns: repeat(3, 1fr); /* desktop: 3 */
gap: 18px;
}
}
#videos .vid-card{
margin:0;
border:1px solid rgba(0,0,0,.06);
border-radius: 18px;
overflow:hidden;
background:#fff;
box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
#videos .vid{
width:100%;
height:auto;
display:block;
background:#000;
aspect-ratio: 16 / 9; /* mantiene proporción prolija */
}
/* Contenedor "más videos" con animación suave */
#videos .vid-more[hidden]{display:none !important;}
#videos .vid-more{
animation: vidFadeIn .25s ease-out both;
}
@keyframes vidFadeIn{
from{opacity:0; transform: translateY(6px);}
to{opacity:1; transform: translateY(0);}
}
/* contenedor */
.social-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
display:flex;
flex-direction:column;
align-items:flex-end;
gap:12px; /* separación FB arriba / WA abajo */
font-family:inherit;
}
/* ===== Facebook button ===== */
.fb-btn{
width:56px;
height:56px;
border-radius:50%;
display:grid;
place-items:center;
background: linear-gradient(135deg,#1877F2,#0f5fd3);
color:#fff;
text-decoration:none;
box-shadow:0 10px 30px rgba(24,119,242,.35);
transition:transform .25s, box-shadow .25s;
}
.fb-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(24,119,242,.45);
}
/* ===== WhatsApp (tu widget) ===== */
:root{
--wa:#6ba1bc;
--wa-dark:#5a8a9f;
--wa-light:#7db3ca;
--wa-text:#1a1a1a;
--wa-muted:#6c757d;
--wa-bg:#ffffff;
--wa-border:#e3e6ea;
}
.wa-float{ position:relative; }
.wa-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(135deg,#25D366,#128C7E); /* verde WA */
color:#fff;
display:grid;
place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.45);
transition:transform .3s, box-shadow .3s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:var(--wa-bg);
border-radius:18px;
border:1px solid var(--wa-border);
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.3s;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px;
background:linear-gradient(135deg,var(--wa),var(--wa-dark));
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:8px;
display:grid;
place-items:center;
overflow:hidden;
}
.wa-avatar img{width:26px;height:26px;object-fit:contain}
.wa-title{ font-weight:700; }
.wa-status{ font-size:.85rem; opacity:.9; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
cursor:pointer;
}
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f8f9fa;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#ffffff;
border:1px solid var(--wa-border);
align-self:flex-start;
}
.wa-user{
background:#eaf4f8;
border:1px solid #cfe4ef;
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid var(--wa-border);
background:#ffffff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid var(--wa-border);
font-family:inherit;
}
.wa-send{
background:var(--wa);
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ background:var(--wa-dark); }
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
:root{ --nav-offset: 88px; }
/* Para que anclas nativas no queden tapadas por la navbar */
section[id], [id].anchor-offset{ scroll-margin-top: var(--nav-offset); }
sculls.com.ar
https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],300..900&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css/* ===== VARIABLES Y RESET ===== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* ===== BRAND (UI principal) -> AZUL del logo ===== */
--brand-light: #eef6ff;
--brand: #1f78b4; /* 🔵 azul */
--brand-dark: #155a86; /* azul profundo */
--brand-glow: rgba(31, 120, 180, 0.28);
--brand-soft: rgba(31, 120, 180, 0.08);
/* ===== ACENTOS del logo ===== */
--accent-red: #e10600; /* 🔴 rojo */
--accent-red-dark: #b80000;
--accent-red-soft: rgba(225, 6, 0, 0.08);
--accent-red-glow: rgba(225, 6, 0, 0.22);
--accent-yellow: #f4c400; /* 🟡 amarillo */
--accent-yellow-dark: #c99d00;
--accent-yellow-soft: rgba(244, 196, 0, 0.14);
--accent-black: #111111; /* ⚫ negro */
/* ===== BASE UI ===== */
--bg: #ffffff;
--bg-alt: #f4f5f7;
--surface: rgba(255, 255, 255, 0.86);
--surface-solid: #ffffff;
/* ===== TEXTOS ===== */
--text-primary: #111827;
--text-secondary: #1f2937;
--text-muted: #4b5563;
--text-light: #6b7280;
/* ===== BORDES ===== */
--border-light: rgba(17, 24, 39, 0.08);
--border-medium: rgba(17, 24, 39, 0.16);
/* ===== SOMBRAS ===== */
--shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
--shadow-md: 0 12px 24px -8px rgba(0, 32, 64, 0.12), 0 4px 12px -4px rgba(0, 0, 0, 0.04);
--shadow-lg: 0 32px 48px -16px rgba(0, 48, 80, 0.2), 0 8px 16px -8px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 48px 64px -24px rgba(0, 64, 96, 0.25);
/* ===== RADIOS ===== */
--radius-md: 12px;
--radius-lg: 24px;
--radius-xl: 32px;
--radius-full: 9999px;
/* ===== TRANSICIONES ===== */
--transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
background: var(--bg-alt);
color: var(--text-primary);
line-height: 1.5;
overflow-x: hidden;
}
/* ===== BACKGROUNDS SUTILES ===== */
body::before {
content: '';
position: fixed;
inset: 0;
background:
radial-gradient(800px at 10% 20%, rgba(35, 182, 201, 0.08), transparent 50%),
radial-gradient(600px at 90% 70%, rgba(35, 182, 201, 0.06), transparent 50%),
repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(35, 182, 201, 0.02) 20px, rgba(35, 182, 201, 0.02) 40px);
pointer-events: none;
z-index: -1;
}
/* ===== UTILIDADES ===== */
.anchor-offset {
scroll-margin-top: 88px;
}
.container {
max-width: 1280px;
padding-inline: 24px;
}
/* ===== ESPACIADO ENTRE SECCIONES (más aire entre fin de una sección y el eyebrow de la siguiente) ===== */
section {
padding: 88px 0;
}
/* Mantener HERO con su propio padding (ya definido) */
header.hero {
padding: 140px 0 120px;
position: relative;
background: url('img/hero2.jpg') center / cover no-repeat;
}
.hero::before{
content:'';
position:absolute;
inset:0;
/* overlay mínimo (sin gradiente) para que se vea la foto y el texto tenga contraste */
background: rgba(0,0,0,0.18);
pointer-events:none;
}
.hero > .container{
position: relative;
z-index: 1;
}
/* ===== HERO: CONTRASTE DE TEXTOS SOBRE IMAGEN (título negro, resto blanco) ===== */
header.hero .display-eyebrow{
color:#fff;
background: rgba(0,0,0,0.35);
border-color: rgba(255,255,255,0.22);
text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
header.hero h1{
color: var(--text-primary);
/* sombra suave para que el negro se lea sobre la foto */
text-shadow: 0 2px 14px rgba(255,255,255,0.30), 0 2px 18px rgba(0,0,0,0.30);
}
header.hero .lead,
header.hero .hero-bullets .it,
header.hero .hero-meta,
header.hero .hero-meta *{
color:#fff;
text-shadow: 0 2px 12px rgba(0,0,0,0.60);
}
header.hero .hero-bullets .it i{
color:#fff;
filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}
@media (max-width: 576px){
header.hero{
padding: 120px 0 140px;
background-position: center;
}
.hero::before{
/* overlay mínimo también en phone (sin gradiente) */
background: rgba(0,0,0,0.22);
}
}
/* Galería ya define padding-bottom; le sumamos padding-top coherente */
.gal-gallery {
padding-top: 88px;
padding-bottom: 80px;
}
/* Footer ya tiene su padding */
/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2;
}
.display-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 14px;
background: rgba(35, 182, 201, 0.1);
border: 1px solid rgba(35, 182, 201, 0.2);
border-radius: var(--radius-full);
color: var(--brand-dark);
font-weight: 600;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.5px;
backdrop-filter: blur(4px);
}
.display-eyebrow i {
color: var(--brand);
font-size: 1rem;
}
.section-title {
font-size: clamp(2rem, 4vw, 2.75rem);
font-weight: 800;
letter-spacing: -0.03em;
margin-top: 16px;
background: linear-gradient(145deg, var(--text-primary) 0%, var(--text-secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-subtitle {
font-size: 1.125rem;
color: var(--text-muted);
max-width: 800px;
margin: 16px auto 0;
}
/* ===== NAVBAR ===== */
.navbar {
background: rgba(255, 255, 255, 0.75);
backdrop-filter: blur(16px) saturate(180%);
border-bottom: 1px solid var(--border-light);
padding: 16px 0;
transition: var(--transition-base);
}
.navbar-scrolled {
padding: 12px 0;
background: rgba(255, 255, 255, 0.9);
box-shadow: var(--shadow-md);
}
.navbar-brand {
font-weight: 800;
font-size: 1.75rem;
letter-spacing: -0.02em;
color: var(--text-primary) !important;
display: flex;
align-items: center;
gap: 12px;
}
.brand-dot {
width: 10px;
height: 10px;
background: var(--brand);
border-radius: var(--radius-full);
box-shadow: 0 0 0 6px var(--brand-glow);
transition: var(--transition-base);
}
.navbar-brand:hover .brand-dot {
transform: scale(1.2);
box-shadow: 0 0 0 8px var(--brand-glow);
}
.navbar-nav .nav-link {
font-weight: 600;
color: var(--text-secondary) !important;
padding: 8px 16px !important;
border-radius: var(--radius-full);
transition: var(--transition-fast);
position: relative;
}
.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 4px;
left: 50%;
transform: translateX(-50%) scaleX(0);
width: 20px;
height: 3px;
background: var(--brand);
border-radius: var(--radius-full);
transition: transform var(--transition-fast);
}
.navbar-nav .nav-link:hover {
color: var(--brand-dark) !important;
background: var(--brand-soft);
}
.navbar-nav .nav-link:hover::after {
transform: translateX(-50%) scaleX(1);
}
.navbar-toggler {
/* ...cortado... */
/* ===== VENTA: imágenes uniformes y prolijas ===== */
.sale-card .sale-media{
width: 100%;
aspect-ratio: 16 / 10; /* marco uniforme */
background: var(--bg-alt);
border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-sm);
margin-bottom: 18px;
}
.sale-card .sale-media img{
width: 100%;
height: 100%;
object-fit: contain; /* se ve ENTERA */
object-position: center;
padding: 10px; /* aire interno */
transform: none !important;
}
@media (max-width: 768px){
.sale-card .sale-media{
aspect-ratio: 4 / 3;
}
}
.gal-lightbox-nav {
background: rgba(255,255,255,0.2);
border: none;
color: white;
font-size: 2.5rem;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(8px);
transition: all 0.3s ease;
z-index: 10;
}
.gal-lightbox-nav:hover {
background: rgba(255,255,255,0.4);
transform: scale(1.1);
}
:root{
/* WhatsApp oficiales */
--wa:#25D366;
--wa-dark:#128C7E;
--light-bg:#ffffff;
--light-bg-soft:#f6fbfc;
--light-border:#d7e7ea;
--dark-text:#0b1220;
--muted-text:#5a6472;
}
.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,.25);
transition:transform .25s, box-shadow .25s;
}
.ig-float:hover{ transform:translateY(-2px) scale(1.04); box-shadow:0 14px 36px rgba(0,0,0,.35); }
.wa-float{
position:fixed; right:18px; bottom:18px;
z-index:9999; font-family:inherit;
}
/* ✅ Botón 100% clickeable */
.wa-btn{
width:60px; height:60px; border-radius:50%;
display:grid; place-items:center;
background:var(--wa);
color:#fff;
border:0;
cursor:pointer;
box-shadow:0 10px 28px rgba(0,0,0,.20);
transition:transform .25s, box-shadow .25s, filter .25s;
position:relative;
z-index:10002;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}
.wa-btn svg{ color:#fff; pointer-events:none; }
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 16px 40px rgba(0,0,0,.26);
filter:saturate(1.05) brightness(1.02);
}
/* ✅ La tarjeta NO tapa el botón cuando está cerrada */
.wa-card{
position:absolute; right:0; bottom:74px;
width:min(360px,92vw);
background:var(--light-bg);
color:var(--dark-text);
border-radius:18px;
overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.25);
border:1px solid var(--light-border);
transform:translateY(10px);
opacity:0;
transition:transform .25s, opacity .25s;
z-index:10001;
pointer-events:none; /* << CLAVE */
}
.wa-card[aria-modal="true"]{
transform:translateY(0);
opacity:1;
pointer-events:auto; /* << CLAVE */
}
.wa-head{
display:flex; align-items:center; gap:12px;
padding:14px 16px;
background:linear-gradient(135deg, #ffffff, #f0fffa);
border-bottom:1px solid var(--light-border);
}
.wa-avatar{
width:40px; height:40px; border-radius:10px;
background:#eafff6;
display:grid; place-items:center;
border:1px solid #c9f5e2;
overflow:hidden;
}
.wa-title{ font-weight:850; font-size:1.02rem; }
.wa-status{
font-size:.85rem; color:var(--muted-text);
display:flex; align-items:center; gap:6px;
}
.wa-status::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--wa); }
.wa-close{
margin-left:auto;
background:transparent; color:var(--muted-text);
border:0; font-size:24px; cursor:pointer;
opacity:.75; width:32px; height:32px; border-radius:50%;
display:flex; align-items:center; justify-content:center;
transition:.2s;
}
.wa-close:hover{ opacity:1; background:rgba(0,0,0,.04); }
.wa-body{
padding:12px 14px;
max-height:40vh; overflow:auto;
background:var(--light-bg-soft);
display:flex; flex-direction:column; gap:8px;
}
.wa-bubble{
max-width:88%;
padding:9px 11px;
border-radius:14px;
line-height:1.35;
box-shadow:0 3px 10px rgba(0,0,0,.06);
font-size:.9rem;
}
.wa-bot{
background:#fff;
border:1px solid var(--light-border);
align-self:flex-start;
border-bottom-left-radius:4px;
}
.wa-user{
background:var(--wa);
color:#fff;
align-self:flex-end;
border-bottom-right-radius:4px;
}
.wa-compose{
display:grid; grid-template-columns:1fr auto; gap:8px;
padding:10px 12px;
background:#fff;
border-top:1px solid var(--light-border);
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px 12px;
border:1px solid var(--light-border);
background:#f7fcfd;
color:var(--dark-text);
outline:none;
min-height:44px;
font-family:inherit;
font-size:.9rem;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:var(--wa);
box-shadow:0 0 0 2px rgba(37,211,102,.18);
background:#fff;
}
.wa-send{
background:var(--wa-dark);
color:#fff;
border:0;
border-radius:12px;
padding:0 16px;
font-weight:800;
cursor:pointer;
display:flex; align-items:center; justify-content:center;
transition:.2s;
}
.wa-send:hover{ filter:brightness(1.02); transform:scale(1.04); }
@media (max-width:480px){
.ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}
aguaquerika.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swaphttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.csso tu CSS propio abajo, dejalo tal cual -->
<style>
/* ===== VARIABLES PREMIUM (respetando gama de colores) ===== */
:root {
--brand: #1f9d45; /* verde principal - vibrante */
--brand-dark: #0f7a33; /* verde oscuro - profundidad */
--brand-soft: rgba(31, 157, 69, 0.1);
--brand-glow: rgba(31, 157, 69, 0.4);
--ink: #0b1a2e; /* casi negro para textos */
--muted: #4a5a6e; /* gris con alma azulada */
--card-bg: #ffffff;
--bg: #f4faf6; /* fondo con un suspiro verde */
--ring: rgba(31, 157, 69, 0.5);
--radius: 24px; /* más grande y elegante */
--radius-sm: 16px;
--shadow-sm: 0 8px 20px -6px rgba(11, 26, 46, 0.12);
--shadow-md: 0 20px 35px -10px rgba(11, 26, 46, 0.2);
--shadow-lg: 0 30px 50px -15px rgba(11, 26, 46, 0.25);
--transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
color: var(--ink);
background: var(--bg);
overflow-x: hidden;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
/* ===== TIPOGRAFÍA PREMIUM ===== */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2;
}
.display-xl {
font-size: clamp(2.5rem, 5vw, 3.8rem);
font-weight: 800;
letter-spacing: -0.03em;
}
/* ===== COMPONENTES REUTILIZABLES ===== */
.btn {
border-radius: 60px;
padding: 0.75rem 1.5rem;
font-weight: 600;
transition: var(--transition);
border: 2px solid transparent;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.btn-brand {
background: var(--brand);
color: white;
box-shadow: 0 15px 25px -8px var(--brand-glow);
}
.btn-brand:hover {
background: var(--brand-dark);
color: white;
transform: scale(1.02);
box-shadow: 0 20px 30px -8px var(--brand-glow);
}
.btn-outline-brand {
background: transparent;
border-color: var(--brand);
color: var(--brand-dark);
}
.btn-outline-brand:hover {
background: var(--brand-soft);
border-color: var(--brand-dark);
color: var(--brand-dark);
transform: translateY(-2px);
}
.btn-light-custom {
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
color: white;
}
.btn-light-custom:hover {
background: rgba(255, 255, 255, 0.4);
color: white;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
letter-spacing: 0.02em;
text-transform: uppercase;
color: var(--brand-dark);
background: var(--brand-soft);
padding: 0.5rem 1rem;
border-radius: 60px;
font-size: 0.8rem;
border: 1px solid rgba(31, 157, 69, 0.3);
backdrop-filter: blur(4px);
}
.section-title {
font-size: clamp(2rem, 3.5vw, 2.8rem);
font-weight: 800;
margin-top: 1rem;
margin-bottom: 1rem;
}
.section-subtitle {
color: var(--muted);
font-size: 1.1rem;
max-width: 65ch;
margin: 0 auto 2rem auto;
}
/* ===== NAVBAR DE LUJO ===== */
.navbar {
background: rgba(244, 250, 246, 0.8);
backdrop-filter: blur(15px);
border-bottom: 1px solid rgba(11, 26, 46, 0.08);
padding: 0.8rem 0;
}
.navbar .navbar-brand {
font-weight: 800;
font-size: 1.5rem;
letter-spacing: -0.02em;
color: var(--ink);
}
.navbar .navbar-brand span{
background: none !important;
width: auto !important;
height: auto !important;
border-radius: 0 !important;
display: inline !important;
box-shadow: none !important;
}
.navbar-nav .nav-link {
font-weight: 600;
color: var(--ink) !important;
padding: 0.5rem 1rem !important;
transition: var(--transition);
border-radius: 60px;
}
.navbar-nav .nav-link:hover {
color: var(--brand) !important;
background: var(--brand-soft);
}
/* ===== HERO ESPECTACULAR ===== */
.hero {
padding-top: 140px;
padding-bottom: 80px;
}
.hero-card {
background: var(--card-bg);
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
overflow: hidden;
border: 1px solid rgba(11, 26, 46, 0.05);
transition: var(--transition);
}
.hero-left {
padding: 3rem;
background: linear-gradient(145deg, #ffffff 0%, #fafffc 100%);
}
.hero h1 {
font-size: clamp(2.2rem, 4vw, 3.2rem);
font-weight: 800;
line-height: 1.1;
margin: 1.2rem 0 1rem 0;
}
.hero-highlight {
color: var(--brand);
border-bottom: 3px solid var(--brand-soft);
}
.hero-list {
list-style: none;
padding: 0;
margin: 1.5rem 0;
display: grid;
gap: 0.8rem;
}
.hero-list li {
display: flex;
align-items: center;
gap: 0.8rem;
font-weight: 500;
}
.hero-list .dot {
width: 12px;
height: 12px;
background: var(--brand);
border-radius: 50%;
box-shadow: 0 0 0 5px rgba(31, 157, 69, 0.2);
}
.hero-right {
background: radial-gradient(ellipse at 80% 30%, rgba(31, 157, 69, 0.15), transparent 60%);
display: flex;
align-items: center;
justify-content: center;
padding: clamp(1.25rem, 3vw, 2.25rem);
border-left: 1px solid rgba(11, 26, 46, 0.05);
height: 100%;
}
/* HERO media: ocupa bien el lado derecho sin quedar “chiquita” */
.hero-media{
width: 100%;
max-width: 560px;
}
.hero-media-img{
width: 100%;
height: auto;
display: block;
object-fit: contain;
border-radius: var(--radius-sm);
box-shadow: var(--shadow-md);
background: #fff;
padding: clamp(.6rem, 1.2vw, 1rem);
transition: var(--transition);
}
.hero-media-img:hover{
transform: scale(1.01);
box-shadow: var(--shadow-lg);
}
/* ===== CARDS CON GLAMOUR ===== */
.card-premium {
background: var(--card-bg);
border: 1px solid rgba(11, 26, 46, 0.05);
border-radius: var(--radius-sm);
padding: 2rem 1.5rem;
box-shadow: var(--shadow-sm);
transition: var(--transition);
height: 100%;
position: relative;
overflow: hidden;
}
.card-premium::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--brand), var(--brand-dark));
transform: scaleX(0);
transition: var(--transition);
}
.card-premium:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-md);
}
.card-premium:hover::before {
transform: scaleX(1);
}
.card-premium .icon {
width: 90px; /* MÁS GRANDE para tus PNG (20/12/6 + soda) */
height: 90px; /* MÁS GRANDE */
background: var(--brand-soft);
border-radius: 28px; /* Más proporcional */
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.8rem;
border: 1px solid rgba(31, 157, 69, 0.25);
padding: 12px; /* Espacio interno
/* ...cortado... */
/* Evita scroll horizontal por elementos que se pasan 1-2px (muy común en mobile) */
html, body { overflow-x: hidden; }
/* Mobile / Tablet: menú desplegable prolijo full-width dentro del flujo */
@media (max-width: 991.98px){
.navbar { padding: .6rem 0; }
.navbar > .container { padding-left: 16px; padding-right: 16px; }
/* El collapse se ve como panel sólido, sin “cajita rara” */
.navbar-collapse{
background: #f4faf6; /* sólido (sin blur) */
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
border: 1px solid rgba(11, 26, 46, 0.10);
border-radius: 16px;
box-shadow: 0 18px 45px rgba(11, 26, 46, 0.12);
margin-top: .6rem;
padding: .25rem 0;
}
.navbar-nav{
align-items: stretch !important;
gap: 0 !important;
}
.navbar-nav .nav-link{
border-radius: 0 !important;
padding: .85rem 1rem !important;
}
.navbar-nav .nav-link:hover{
background: rgba(31, 157, 69, 0.10);
}
/* Botón WhatsApp ocupa ancho, se ve “CTA” y no desarma el layout */
.navbar-nav .btn{
width: calc(100% - 2rem);
margin: .5rem 1rem .75rem;
justify-content: center;
display: inline-flex;
}
}
:root{ --nav-h: 86px; }
/* Anclas: que no queden tapadas por la navbar fixed */
.anchor-offset{ scroll-margin-top: calc(var(--nav-h) + 12px); }
/* Navbar un poco más “compacta” y consistente */
.navbar{ min-height: var(--nav-h); }
/* Menos hueco entre navbar y hero (antes: 140px) */
.hero{
padding-top: calc(var(--nav-h) + 22px);
padding-bottom: 70px;
}
/* Secciones: más aire (evita “todo apretado”) */
section{
padding-top: 84px;
padding-bottom: 84px;
}
.gal-gallery{ padding-bottom: 84px; } /* mantiene la galería prolija */
/* Divisores: que no sumen altura de más */
.soft-divider{ margin: 0; }
/* HERO: grid para controlar orden (desktop vs phone) */
.hero-grid{
display: grid;
gap: 1.75rem;
align-items: start;
}
@media (min-width: 992px){
.hero-grid{
grid-template-columns: 1.25fr 0.75fr;
align-items: center;
}
.hero-media-wrap{
justify-content: center;
align-items: center;
}
}
.hero-p{
color: var(--muted);
max-width: 62ch;
margin-bottom: 1rem;
}
.hero-media-wrap{
display: flex;
justify-content: center;
}
.hero-media-img{
width: min(560px, 100%);
height: auto;
object-fit: contain;
}
/* Phone: padding más chico y mantiene jerarquía visual */
@media (max-width: 991.98px){
:root{ --nav-h: 74px; }
section{ padding-top: 70px; padding-bottom: 70px; }
.hero{ padding-top: calc(var(--nav-h) + 14px); padding-bottom: 56px; }
.hero-left{ padding: 1.6rem; }
.hero-list{ margin-top: 1.15rem; }
.hero-media-wrap{ margin-top: .75rem; margin-bottom: .25rem; }
}
/* ===== WhatsApp Float (scope wa-*) ===== */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family:inherit;
}
/* Botón verde oficial WhatsApp */
.wa-btn{
width:60px;height:60px;border-radius:50%;
border:none;
background:linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
display:grid;place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.45);
transition:transform .25s, box-shadow .25s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
/* Card */
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid rgba(15,23,42,.12);
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.25s;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
/* Header: usa --brand si existe (tu verde del sitio) */
.wa-head{
display:flex;align-items:center;gap:12px;
padding:14px;
background:linear-gradient(135deg, var(--brand, #1f9d45), var(--brand-2, #0f7a33));
color:#fff;
}
.wa-avatar{
width:40px;height:40px;
background:#fff;
border-radius:10px;
display:grid;place-items:center;
overflow:hidden;
}
.wa-avatar img{ width:26px;height:26px;object-fit:contain;display:block; }
.wa-title{ font-weight:800; letter-spacing:-0.01em; }
.wa-status{ font-size:.85rem; opacity:.92; }
.wa-close{
margin-left:auto;
border:none;background:transparent;color:#fff;
font-size:24px;line-height:1;
cursor:pointer;
}
/* Body bubbles */
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f8fafc;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#ffffff;
border:1px solid rgba(15,23,42,.10);
align-self:flex-start;
}
.wa-user{
background:#eafff2;
border:1px solid rgba(31,157,69,.25);
align-self:flex-end;
}
/* Composer */
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid rgba(15,23,42,.10);
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid rgba(15,23,42,.14);
font-family:inherit;
outline:none;
}
.wa-compose textarea:focus{
border-color: rgba(31,157,69,.55);
box-shadow: 0 0 0 .18rem rgba(31,157,69,.25);
}
.wa-send{
background: var(--brand, #1f9d45);
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ background: var(--brand-2, #0f7a33); }
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
aspersonalizados.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.csshttps://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap/*--------------------------------------------------------------
# VARIABLES (respetadas y enriquecidas con tonos más profundos)
--------------------------------------------------------------*/
:root {
--ink: #0b1120; /* más profundo que el original */
--muted: #4b5565; /* equilibrado */
--bg: #ffffff;
--bg-alt: #f4f6fc; /* ligeramente más fresco */
--border: rgba(2, 10, 25, 0.06);
--border-strong: rgba(2, 10, 25, 0.12);
--shadow-sm: 0 12px 30px -8px rgba(0, 0, 0, 0.05), 0 4px 8px -4px rgba(0, 0, 0, 0.02);
--shadow-md: 0 25px 50px -15px rgba(0, 0, 0, 0.15), 0 8px 15px -8px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 40px 70px -20px rgba(0, 0, 0, 0.25), 0 15px 30px -12px rgba(0, 0, 0, 0.15);
--accent: #95c931;
--accent-soft: rgba(205, 231, 34, 0.14);
--accent-glare: rgba(11, 17, 32, 0.85);
--accent-glow: rgba(205, 231, 34, 0.10);
--radius-md: 24px;
--radius-lg: 40px;
--radius-xl: 48px;
--transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
--transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/*--------------------------------------------------------------
# BASE (reset moderno)
--------------------------------------------------------------*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "Inter", sans-serif;
color: var(--ink);
background: var(--bg);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
width: 100%;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
.anchor-offset {
scroll-margin-top: 100px;
}
/*--------------------------------------------------------------
# SECCIONES (más aire entre bloques)
--------------------------------------------------------------*/
.section {
padding: 96px 0;
}
@media (max-width: 768px) {
.section {
padding: 72px 0;
}
}
/*--------------------------------------------------------------
# NAVBAR (vidrio hiper premium)
--------------------------------------------------------------*/
.navbar {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid var(--border);
padding: 16px 0;
transition: var(--transition);
}
.navbar-brand {
font-weight: 800;
letter-spacing: -0.03em;
font-size: 1.8rem;
background: linear-gradient(135deg, var(--ink) 20%, var(--accent) 90%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-link {
font-weight: 550;
color: var(--muted);
padding: 0.5rem 1.2rem !important;
border-radius: 100px;
font-size: 1rem;
transition: var(--transition);
}
.nav-link:hover {
color: var(--ink);
background: var(--accent-soft);
transform: translateY(-1px);
}
.btn-nav {
background: transparent;
border: 1.5px solid var(--border-strong);
border-radius: 100px;
padding: 0.65rem 1.6rem;
font-weight: 600;
color: var(--ink);
box-shadow: var(--shadow-sm);
transition: var(--transition-bounce);
}
.btn-nav:hover {
background: var(--accent);
border-color: var(--accent);
color: var(--ink);
transform: translateY(-4px) scale(1.02);
box-shadow: var(--shadow-md);
}
.btn-wa {
background: var(--accent);
color: var(--ink);
border-radius: 100px;
padding: 0.65rem 1.8rem;
font-weight: 600;
box-shadow: var(--shadow-sm);
transition: var(--transition-bounce);
border: 1.5px solid transparent;
}
.btn-wa:hover {
background: var(--ink);
transform: translateY(-4px) scale(1.02);
box-shadow: var(--shadow-lg);
color: white;
border-color: rgba(255, 255, 255, 0.1);
}
/*--------------------------------------------------------------
# TIPOGRAFÍA (ultra legible)
--------------------------------------------------------------*/
.eyebrow {
display: inline-block;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.6px;
font-weight: 700;
color: var(--accent-glare);
background: var(--accent-soft);
padding: 0.5rem 1.2rem 0.5rem 1.1rem;
border-radius: 100px;
border: 1px solid var(--border);
backdrop-filter: blur(4px);
margin-bottom: 1rem;
}
.eyebrow i {
margin-right: 8px;
font-size: 1.1rem;
}
.section-title {
font-size: clamp(2.5rem, 7vw, 3.8rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1.1;
color: var(--ink);
margin: 0.5rem 0 1rem;
}
.section-subtitle {
font-size: 1.3rem;
color: var(--muted);
max-width: 720px;
margin-left: auto;
margin-right: auto;
font-weight: 400;
}
/*--------------------------------------------------------------
# HERO (fondo con gradientes cinéticos)
--------------------------------------------------------------*/
.hero {
background:
radial-gradient(1400px 600px at 10% 30%, rgba(205, 231, 34, 0.10), transparent 60%),
radial-gradient(1000px 500px at 100% 70%, rgba(205, 231, 34, 0.10), transparent 70%),
var(--bg-alt);
border-bottom: 1px solid var(--border);
padding-top: 2rem;
}
.hero-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
overflow: hidden;
transition: var(--transition);
}
.hero h1 {
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1.1;
}
.hero-list {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.hero-list li {
display: flex;
gap: 1.2rem;
align-items: center;
font-weight: 550;
}
.hero-list i {
color: var(--accent);
font-size: 1.8rem;
background: var(--accent-soft);
border-radius: 100px;
padding: 0.4rem;
transition: var(--transition);
}
.hero-list li:hover i {
background: var(--accent);
color: var(--ink);
transform: scale(1.05);
}
.hero-img-wrap {
background: linear-gradient(135deg, #ffffff, var(--bg-alt));
display: flex;
align-items: center;
justify-content: center;
height: 100%;
min-height: 400px;
border-left: 1px solid var(--border);
padding: 2rem;
}
.hero-img {
max-width: 100%;
max-height: 460px;
object-fit: contain;
border-radius: 32px;
box-shadow: var(--shadow-lg);
transition: var(--transition-bounce);
}
.hero-img:hover {
transform: scale(1.02) rotate(0.5deg);
box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.5);
}
/* Ajuste fino: HERO mantiene su padding superior y suma un buen cierre */
.hero.section {
padding-top: 2rem; /* respeta el diseño existente */
padding-bottom: 88px;
}
@media (max-width: 768px) {
.hero.section {
padding-bottom: 64px
/* ...cortado... */
/* ===== HERO FIX MOBILE FULL WIDTH ===== */
@media (max-width: 576px) {
.hero {
padding-left: 0 !important;
padding-right: 0 !important;
}
.hero .container,
.hero .container-fluid {
max-width: 100% !important;
padding-left: 0 !important;
padding-right: 0 !important;
}
.hero .row {
margin-left: 0 !important;
margin-right: 0 !important;
}
.hero img {
width: 100% !important;
height: auto !important;
display: block;
}
}
/* WhatsApp flotante (no pisa tus estilos) */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family:inherit;
}
.wa-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(135deg,#25D366,#128C7E); /* ✅ verde oficial */
color:#fff;
display:grid;
place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.45);
transition:transform .3s, box-shadow .3s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid rgba(0,0,0,.08);
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.25s ease;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px;
background:linear-gradient(135deg,#0ea5a8,#0b7285); /* header neutro y prolijo */
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:10px;
display:grid;
place-items:center;
overflow:hidden;
}
.wa-title{ font-weight:800; line-height:1; }
.wa-status{ font-size:.85rem; opacity:.9; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
cursor:pointer;
line-height:1;
}
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f6f7f8;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#fff;
border:1px solid rgba(0,0,0,.06);
align-self:flex-start;
}
.wa-user{
background:#e9fbf0;
border:1px solid rgba(37,211,102,.25);
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid rgba(0,0,0,.08);
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid rgba(0,0,0,.12);
font-family:inherit;
outline:none;
}
.wa-compose textarea:focus{
border-color:rgba(37,211,102,.6);
box-shadow:0 0 0 4px rgba(37,211,102,.12);
}
.wa-send{
background:#25D366;
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ background:#1fb956; }
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
pizzeriaebenezer.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.csshttps://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&family=Playfair+Display:ital@0;1&display=swap/* ------------------------------------------------------------
VARIABLES + RESET EXTREMO (respetando tu gama)
------------------------------------------------------------ */
:root {
/* PALETA ORIGINAL (potenciada) */
--accent-red: #b10012;
--accent-red-light: rgba(177, 0, 18, 0.08);
--accent-red-soft: rgba(177, 0, 18, 0.04);
--accent-gold: #c8a24a;
--accent-gold-light: rgba(200, 162, 74, 0.12);
--accent-gold-soft: rgba(200, 162, 74, 0.06);
--ink: #0a0a0a;
--ink-soft: #1e1e1e;
--paper: #fbfbf7;
--paper-deep: #f4efe5;
--paper-2: #f2efe8;
--muted: #5b5b5b;
--muted-light: #8b8b8b;
--border-light: rgba(0, 0, 0, 0.06);
--border-soft: rgba(0, 0, 0, 0.1);
--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
--shadow-md: 0 12px 30px -8px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.02);
--shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.2), 0 8px 18px rgba(0, 0, 0, 0.06);
--shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
--radius-md: 12px;
--radius-lg: 24px;
--radius-xl: 32px;
--radius-full: 9999px;
--transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
color: var(--ink);
background: var(--paper);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.muted { color: var(--muted) !important; }
/* Tipografía ultra jerárquica */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1.1;
}
h1, .h1 { font-size: clamp(2.5rem, 7vw, 4rem); }
h2, .h2 { font-size: clamp(2rem, 5vw, 2.8rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.eyebrow {
display: inline-block;
padding: 0.4rem 1rem;
border-radius: var(--radius-full);
font-weight: 700;
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
background: var(--accent-gold-light);
color: #7a5b19;
border: 1px solid var(--accent-gold);
backdrop-filter: blur(4px);
box-shadow: var(--shadow-sm);
}
.section-title {
font-weight: 900;
margin-top: 1rem;
background: linear-gradient(135deg, var(--ink) 0%, #3d3d3d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-subtitle {
color: var(--muted);
font-size: 1.1rem;
max-width: 60ch;
margin-left: auto;
margin-right: auto;
}
/* Espaciado consistente entre secciones */
.section-pad { padding: 96px 0; }
@media (max-width: 991.98px){ .section-pad { padding: 84px 0; } }
@media (max-width: 575.98px){ .section-pad { padding: 72px 0; } }
/* Links y acentos */
a {
color: inherit;
text-decoration: none;
transition: var(--transition);
}
/* Scroll padding para anchors */
.anchor-offset {
scroll-margin-top: 100px;
}
/* ------------------------------------------------------------
NAVBAR ULTRAPREMIUM (glassmorphism)
------------------------------------------------------------ */
.navbar {
background: rgba(251, 251, 247, 0.75);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border-bottom: 1px solid var(--border-light);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
padding: 1rem 0;
transition: var(--transition);
}
.navbar .container {
max-width: 1400px;
}
.brand-badge {
display: flex;
align-items: center;
gap: 0.75rem;
font-weight: 900;
font-size: 1.4rem;
letter-spacing: -0.02em;
}
.brand-mark {
width: 44px;
height: 44px;
border-radius: 14px;
background: linear-gradient(135deg, var(--accent-red-light), var(--accent-gold-light));
border: 1px solid rgba(255, 255, 255, 0.4);
display: grid;
place-items: center;
box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
color: var(--accent-red);
font-size: 1.5rem;
transition: var(--transition);
}
.brand-badge:hover .brand-mark {
transform: scale(1.02);
box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.nav-link {
font-weight: 600;
color: var(--ink-soft);
padding: 0.5rem 1rem !important;
border-radius: var(--radius-full);
transition: var(--transition);
font-size: 0.95rem;
}
.nav-link:hover {
color: var(--accent-red);
background: var(--accent-red-light);
}
/* Botones ultra pro */
.btn {
border-radius: var(--radius-full);
font-weight: 700;
padding: 0.6rem 1.5rem;
transition: var(--transition);
border: 1px solid transparent;
font-size: 0.95rem;
letter-spacing: -0.01em;
}
.btn-sm { padding: 0.4rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 0.8rem 2.2rem; font-size: 1.05rem; }
.btn-accent {
background: var(--accent-red);
color: white;
box-shadow: 0 10px 20px -8px rgba(177, 0, 18, 0.4);
}
.btn-accent:hover {
background: #8f0010;
transform: translateY(-2px);
box-shadow: 0 16px 24px -8px rgba(177, 0, 18, 0.5);
color: white;
}
.btn-outline-gold {
background: rgba(200, 162, 74, 0.06);
border: 1px solid rgba(200, 162, 74, 0.4);
color: #7a5b19;
backdrop-filter: blur(8px);
}
.btn-outline-gold:hover {
background: var(--accent-gold);
border-color: var(--accent-gold);
color: black;
transform: translateY(-2px);
box-shadow: 0 12px 20px -10px var(--accent-gold);
}
/* ------------------------------------------------------------
HERO SECTION (nivel dios)
------------------------------------------------------------ */
.hero {
padding-top: 140px;
padding-bottom: 80px;
background: radial-gradient(circle at 80% 20%, var(--accent-gold-light), transparent 40%),
radial-gradient(circle at 20% 80%, var(--accent-red-light), transparent 40%),
var(--paper);
}
.hero-card {
border-radius: var(--radius-xl);
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: var(--shadow-xl), inset 0 1px 2px rgba(255, 255, 255, 0.6);
overflow: hidden;
}
.hero-list li {
display: flex;
gap: 0.75rem;
align-items: center;
font-weight: 500;
}
.hero-list i {
color: var(--accent-red);
font-size: 1.3rem;
background: rgba(177, 0, 18, 0.08);
padding: 0.3rem;
border-radius: 50%;
}
.hero-media {
height: 100%;
min-height: 400px;
background: linear-gradient(135deg, #f0e9d8, #e5dccd);
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.hero-media .placeholder {
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(8px);
border-radius: var(--radius-lg);
padding: 1.5rem;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: var(--shadow-md);
font-weight: 600;
max-width: 80%;
}
/* -------------
/* ...cortado... */
:root{
/* WhatsApp oficial */
--wa:#25D366;
--wa-dark:#1fb85a;
--wa-darker:#189a4a;
/* UI clara */
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#1c1f1d;
--muted-text:#6c756f;
}
/* FACEBOOK button (arriba del IG) */
.fb-float{
position:fixed; right:18px; bottom:166px;
z-index:9997;
width:54px; height:54px; border-radius:50%;
display:grid; place-items:center; color:#fff; text-decoration:none;
background: linear-gradient(180deg, #1877F2 0%, #0f63d6 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.fb-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
/* IG button (medio) */
.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,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.ig-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
/* WhatsApp flotante */
.wa-float{
position:fixed; right:18px; bottom:18px;
z-index:9999; font-family:inherit;
}
.wa-btn{
background:var(--wa);
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, filter .3s;
position:relative; overflow:hidden;
z-index:9999;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.28);
filter:brightness(.98);
}
.wa-card{
position:absolute; right:0; bottom:74px;
width:min(360px,92vw);
background:var(--light-bg);
color:var(--dark-text);
border-radius:18px;
overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.25);
border:1px solid var(--light-border);
transform:translateY(10px);
opacity:0;
transition:transform .3s, opacity .3s;
z-index:10000;
}
.wa-card[aria-modal="true"]{
transform:translateY(0);
opacity:1;
}
.wa-head{
display:flex; align-items:center; gap:12px;
padding:14px 16px;
background:linear-gradient(135deg, #ffffff, #ecf6f0);
border-bottom:1px solid var(--light-border);
}
.wa-avatar{
width:40px; height:40px; border-radius:10px;
background:#e9f7ef;
display:grid; place-items:center;
border:1px solid #cfeeda;
overflow:hidden;
}
.wa-title{
font-weight:800;
font-size:1.02rem;
color:var(--dark-text);
}
.wa-status{
font-size:.85rem;
color:var(--muted-text);
display:flex; align-items:center; gap:6px;
}
.wa-status::before{
content:""; width:8px; height:8px; border-radius:50%;
background:var(--wa);
}
.wa-close{
margin-left:auto;
background:transparent;
color:var(--muted-text);
border:0;
font-size:24px;
cursor:pointer;
opacity:.75;
width:32px; height:32px;
border-radius:50%;
display:flex; align-items:center; justify-content:center;
transition:.2s;
}
.wa-close:hover{
opacity:1;
background:rgba(0,0,0,.04);
}
.wa-body{
padding:12px 14px;
max-height:40vh;
overflow:auto;
background:var(--light-bg-soft);
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:9px 11px;
border-radius:14px;
line-height:1.35;
box-shadow:0 3px 10px rgba(0,0,0,.06);
animation:fadeIn .25s ease;
font-size:0.9rem;
}
@keyframes fadeIn{
from{opacity:0; transform:translateY(5px)}
to{opacity:1; transform:none}
}
.wa-bot{
background:#ffffff;
border:1px solid var(--light-border);
align-self:flex-start;
border-bottom-left-radius:4px;
}
.wa-user{
background:var(--wa);
color:#fff;
align-self:flex-end;
border-bottom-right-radius:4px;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px 12px;
background:#ffffff;
border-top:1px solid var(--light-border);
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px 12px;
border:1px solid var(--light-border);
background:#f9fbfa;
color:var(--dark-text);
outline:none;
min-height:44px;
font-family:inherit;
font-size:0.9rem;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:var(--wa);
box-shadow:0 0 0 2px rgba(37,211,102,.15);
background:#ffffff;
}
.wa-send{
background:var(--wa);
color:#ffffff;
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:var(--wa-dark);
transform:scale(1.04);
}
.wa-body::-webkit-scrollbar{ width:6px; }
.wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.03); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.18); }
@media (max-width:480px){
.fb-float{ right:12px; bottom:160px; 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); right:0; }
}
.carta-fab{
position: fixed;
top: 92px;
left: 16px;
z-index: 99999;
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 14px;
border: 0;
border-radius: 999px;
cursor: pointer;
background: transparent; /* ⬅️ SIN FONDO */
color: #fff;
box-shadow: 0 10px 30px rgba(0,0,0,.28);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .2s ease, visibility .2s ease;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
/* cuando bajás: desaparece */
.carta-fab.is-hidden{
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateY(-10px);
}
.carta-fab:hover{
transform: translateY(-2px);
box-shadow: 0 16px 38px rgba(0,0,0,.32);
background: rgba(255,255,255,0.05); /* hover muy sutil */
}
.carta-fab:active{ transform: translateY(0); }
.carta-fab__logo{
width: 30px;
height: 30px;
object-fit: contain;
border-radius: 8px;
animation: cartaPulse 1.35s ease-in-out infinite;
will-change: transform, filter;
}
.carta-fab__txt{
font-weight: 700;
font-size: 14px;
letter-spacing: .2px;
line-height: 1;
white-space: nowrap;
}
@keyframes cartaPulse{
0%{ transform: translateY(0) scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
50%{ transform: translateY(-1px) scale(1.06); filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }
100%{ transform: translateY(0) scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
}
@media (max-width: 576px){
.carta-fab{ top: 86px; left: 12px; padding: 9px 12px; gap: 9px; }
.carta-fab__logo{ width: 28px; height: 28px; }
.carta-fab__txt{ font-size: 13px; }
}
/* ======= Modal ======= */
.carta-modal{
position: fixed;
inset: 0;
z-index: 99998;
display: none;
}
.carta-modal.is-open{ display: block; }
.carta-modal__backdrop{
position: absolute;
inset: 0;
background: rgba(0,0,0,.62);
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
}
.carta-modal__panel{
position: relative;
z-index: 1;
width: min(980px, calc(100vw - 28px));
max-height: calc(100vh - 28px);
margin: 14px auto;
border-radius: 16px;
overflow: hidden;
background: #0f0f10;
box-shadow: 0 20px 60px rgba(0,0,0,.55);
transform: translateY(10px);
opacity: 0;
animation: cartaIn .18s ease forwards;
}
@keyframes cartaIn{ to{ transform: translateY(0); opacity: 1; } }
.carta-modal__close{
position: absolute;
top: 10px;
right: 10px;
width: 42px;
height: 42px;
border: 0;
border-radius: 999px;
cursor: pointer;
background: rgba(255, 0, 0, 0.15);
color: #ff0000;
font-size: 28px;
line-height: 1;
display: grid;
place-items: center;
transition: transform .15s ease, background .15s ease;
}
.carta-modal__close:hover{
transform: scale(1.04);
background: rgba(255, 0, 0, 0.25);
}
.carta-modal__img{
display: block;
width: 100%;
height: auto;
max-height: calc(100vh - 28px);
object-fit: contain;
background: #0f0f10;
}
body.carta-lock{
overflow: hidden !important;
touch-action: none;
}
.carta-fab__txt{
font-weight: 700;
font-size: 14px;
letter-spacing: .2px;
line-height: 1;
white-space: nowrap;
background: linear-gradient(
90deg,
#b8860b 0%,
#ffd700 25%,
#fff4b0 50%,
#ffd700 75%,
#b8860b 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
text-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.carta-fab {
position: fixed;
top: 92px;
left: 16px;
z-index: 9998;
/* ... resto igual ... */
}
/* Cuando el modal está abierto, el botón se oculta un poco más */
.carta-modal.is-open ~ .carta-fab,
.carta-modal.is-open + * .carta-fab,
body.carta-lock .carta-fab {
z-index: 9990; /* Aún más bajo cuando el modal está abierto */
}
.carta-modal {
position: fixed;
inset: 0;
z-index: 9999; /* Más alto que el botón */
display: none;
}
.carta-modal.is-open {
display: block;
z-index: 10000; /* Aún más alto cuando está abierto */
}