capellanessinfronteras.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:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swapy/o links CSS propios como estaban) -->
<style>
:root {
/* Colores base según especificación */
--color-black: #0b0b0b;
--color-white: #ffffff;
--color-primary: #1d297a; /* Azul profundo */
--color-secondary: #009d89; /* Verde turquesa */
--color-accent1: #00afe0; /* Azul claro */
--color-accent2: #9c2f53; /* Granate */
--color-accent3: #fcdd69; /* Amarillo suave */
/* Colores derivados */
--color-gray-50: #f8f9fa;
--color-gray-100: #f1f3f5;
--color-gray-200: #e9ecef;
--color-gray-300: #dee2e6;
--color-gray-400: #ced4da;
--color-gray-500: #adb5bd;
--color-gray-600: #868e96;
--color-gray-700: #495057;
--color-gray-800: #343a40;
--color-gray-900: #212529;
/* Tipografía */
--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
--font-secondary: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
/* Espaciados */
--spacing-xs: 0.25rem;
--spacing-sm: 0.5rem;
--spacing-md: 1rem;
--spacing-lg: 1.5rem;
--spacing-xl: 2rem;
--spacing-xxl: 3rem;
/* Bordes */
--border-radius-sm: 8px;
--border-radius-md: 12px;
--border-radius-lg: 16px;
--border-radius-xl: 20px;
--border-radius-round: 50%;
/* Sombras */
--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12);
/* Transiciones */
--transition-fast: 150ms ease;
--transition-normal: 250ms ease;
--transition-slow: 350ms ease;
}
/* Reset y estilos base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
font-family: var(--font-primary);
color: var(--color-black);
background-color: var(--color-white);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-secondary);
font-weight: 700;
line-height: 1.2;
margin-bottom: var(--spacing-md);
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
}
p {
margin-bottom: var(--spacing-md);
color: var(--color-gray-700);
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {
color: var(--color-accent1);
}
.container {
max-width: 1200px;
padding-left: var(--spacing-lg);
padding-right: var(--spacing-lg);
}
/* Componentes reutilizables */
.section {
padding: var(--spacing-xxl) 0;
position: relative;
}
.section-title {
position: relative;
margin-bottom: var(--spacing-lg);
}
.section-title::after {
content: '';
position: absolute;
left: 0;
bottom: -8px;
width: 80px;
height: 4px;
background: linear-gradient(90deg, var(--color-secondary), var(--color-accent1));
border-radius: 2px;
}
.section-title.text-center::after {
left: 50%;
transform: translateX(-50%);
}
.eyebrow {
display: inline-block;
font-size: 0.875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--color-secondary);
margin-bottom: var(--spacing-sm);
padding: var(--spacing-xs) var(--spacing-md);
background-color: rgba(0, 157, 137, 0.1);
border-radius: var(--border-radius-sm);
}
.lead {
font-size: 1.25rem;
color: var(--color-gray-600);
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
/* Botones */
.btn {
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius-md);
font-weight: 600;
transition: all var(--transition-normal);
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--spacing-sm);
border: 2px solid transparent;
}
.btn-primary {
background-color: var(--color-primary);
border-color: var(--color-primary);
color: white;
}
.btn-primary:hover {
background-color: #151f5c;
border-color: #151f5c;
color: white;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-secondary {
background-color: var(--color-secondary);
border-color: var(--color-secondary);
color: white;
}
.btn-secondary:hover {
background-color: #008577;
border-color: #008577;
color: white;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-outline {
background-color: transparent;
border-color: var(--color-gray-300);
color: var(--color-gray-700);
}
.btn-outline:hover {
background-color: var(--color-gray-100);
border-color: var(--color-gray-400);
color: var(--color-gray-900);
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
}
/* Navbar Premium */
.navbar {
padding: var(--spacing-md) 0;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--color-gray-200);
position: sticky;
top: 0;
z-index: 1000;
transition: all var(--transition-normal);
}
.navbar.scrolled {
padding: var(--spacing-sm) 0;
box-shadow: var(--shadow-sm);
}
.navbar-brand {
font-family: var(--font-secondary);
font-weight: 700;
font-size: 1.5rem;
color: var(--color-primary);
display: flex;
align-items: center;
gap: var(--spacing-sm);
}
.navbar-brand .logo-dot {
width: 10px;
height: 10px;
border-radius: var(--border-radius-round);
background: linear-gradient(135deg, var(--color-secondary), var(--color-accent1));
display: inline-block;
}
.nav-link {
font-weight: 500;
color: var(--color-gray-700);
padding: var(--spacing-sm) var(--spacing-md) !important;
border-radius: var(--border-radius-md);
transition: all var(--transition-fast);
position: relative;
}
.nav-link:hover, .nav-link.active {
color: var(--color-primary);
background-color: rgba(29, 41, 122, 0.05);
}
.nav-link::after {
content: '';
position: absolute;
left: 50%;
bottom: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--color-secondary), var(--color-accent1));
transition: all var(--transition-normal);
transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
width: 60%;
}
.btn-wa {
background: linear-gradient(135deg, #25D366, #128C7E);
color: white;
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius-md);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: var(--spacing-sm);
box-shadow: var(--shadow-md);
transition: all var(--transition-nor
/* ...cortado... */
.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
}
/* Controles circulares con más contraste */
.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%}
/* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
.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} /* espacio para indicadores */
/* Modal */
#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}
/* Pequeños ajustes móviles */
@media (max-width: 575.98px){
.gal-frame{height: clamp(200px, 40vh, 360px)}
}
/* =========================
WhatsApp Floating Chat — Estilo alineado a tu sitio
Usa tus variables CSS ya definidas en :root
========================= */
.cc-wa{
position:fixed;
right:18px;
bottom:18px;
z-index:99999;
font-family: var(--font-primary);
}
/* Panel */
.cc-wa-panel{
position:absolute;
right:0;
bottom:76px;
width:min(380px, 92vw);
border-radius: var(--border-radius-lg);
overflow:hidden;
border:1px solid rgba(0,0,0,.12);
box-shadow: var(--shadow-xl);
background: var(--color-white);
transform: translateY(10px);
opacity:0;
pointer-events:none;
transition: var(--transition-normal);
}
.cc-wa-panel.open{
transform: translateY(0);
opacity:1;
pointer-events:auto;
}
/* Header (coherente con paleta) */
.cc-wa-head{
display:flex;
align-items:center;
justify-content:space-between;
padding: 12px 12px;
color:#fff;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}
.cc-wa-brand{
display:flex;
align-items:center;
gap: 10px;
}
.cc-wa-dot{
width:12px;height:12px;border-radius:999px;
background: var(--color-accent3);
box-shadow: 0 0 0 6px rgba(252,221,105,.18);
}
.cc-wa-title{ font-weight: 800; line-height:1.1; }
.cc-wa-sub{ font-size:.85rem; opacity:.92; }
.cc-wa-x{
border:none;background:transparent;color:#fff;
font-size:28px; line-height:1; cursor:pointer;
opacity:.9;
}
.cc-wa-x:hover{ opacity:1; transform: rotate(90deg); transition:.2s; }
/* Body tipo chat */
.cc-wa-body{
padding: 12px;
background: #f3f6fb;
background-image:
radial-gradient(rgba(29,41,122,.08) 1px, transparent 1px);
background-size: 16px 16px;
max-height: 42vh;
overflow:auto;
display:flex;
flex-direction:column;
gap: 8px;
}
.cc-wa-bubble{
max-width: 90%;
padding: 10px 12px;
border-radius: 14px;
font-size: .95rem;
box-shadow: 0 10px 22px rgba(0,0,0,.10);
border: 1px solid rgba(0,0,0,.08);
}
.cc-wa-bubble.bot{
align-self:flex-start;
background:#fff;
color: var(--color-gray-800);
}
.cc-wa-bubble.user{
align-self:flex-end;
background: rgba(0,157,137,.14);
border-color: rgba(0,157,137,.22);
color: var(--color-gray-900);
}
/* Quick chips */
.cc-wa-quick{
display:flex;
flex-wrap:wrap;
gap: 8px;
margin-top: 6px;
}
.cc-wa-chip{
border: 1px solid rgba(0,0,0,.12);
background:#fff;
color: var(--color-gray-800);
padding: 8px 10px;
border-radius: 999px;
font-weight: 600;
font-size: .85rem;
cursor:pointer;
transition: var(--transition-fast);
}
.cc-wa-chip:hover{
transform: translateY(-1px);
border-color: rgba(0,175,224,.35);
box-shadow: 0 10px 18px rgba(0,0,0,.10);
}
/* Compose */
.cc-wa-compose{
display:grid;
grid-template-columns: 1fr auto;
gap: 8px;
padding: 10px;
background: #fff;
border-top: 1px solid rgba(0,0,0,.10);
}
.cc-wa-compose textarea{
resize:none;
border-radius: var(--border-radius-md);
border: 1px solid rgba(0,0,0,.18);
padding: 10px 12px;
outline:none;
}
.cc-wa-compose textarea:focus{
border-color: var(--color-accent1);
box-shadow: 0 0 0 .25rem rgba(0,175,224,.18);
}
.cc-wa-send{
border:none;
border-radius: var(--border-radius-md);
padding: 0 16px;
cursor:pointer;
color:#fff;
background: linear-gradient(135deg, var(--color-secondary), var(--color-accent1));
display:grid;
place-items:center;
box-shadow: var(--shadow-md);
transition: var(--transition-fast);
}
.cc-wa-send:hover{ transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.cc-wa-send svg{ width:18px;height:18px; }
/* FAB (siempre visible, bien contrastado) */
.cc-wa-fab{
width:64px;height:64px;border-radius:999px;
border:none; cursor:pointer;
color:#fff;
background: linear-gradient(135deg,#25D366,#128C7E);
box-shadow: 0 18px 46px rgba(18,140,126,.35);
display:grid;
place-items:center;
position:relative;
transition: transform .25s ease, box-shadow .25s ease;
}
.cc-wa-fab:hover{ transform: translateY(-3px) scale(1.03); box-shadow: 0 26px 68px rgba(18,140,126,.45); }
.cc-wa-icon{ width:34px;height:34px; display:block; }
.cc-wa-ring{
position:absolute; inset:-6px;
border-radius:999px;
border: 2px solid rgba(37,211,102,.35);
animation: ccRing 1.8s infinite;
pointer-events:none;
}
@keyframes ccRing{
0%{ transform: scale(.92); opacity:.9; }
70%{ transform: scale(1.08); opacity:.2; }
100%{ transform: scale(.92); opacity:.0; }
}
/* Pill */
.cc-wa-pill{
position:absolute;
right: 76px;
bottom: 12px;
border:1px solid rgba(0,0,0,.10);
background:#fff;
color: var(--color-gray-900);
border-radius:999px;
padding:.55rem .85rem;
font-weight:800;
cursor:pointer;
box-shadow: var(--shadow-md);
display:inline-flex;
align-items:center;
gap:.5rem;
}
.cc-wa-live{
width:10px;height:10px;border-radius:999px;
background: var(--color-secondary);
box-shadow: 0 0 0 6px rgba(0,157,137,.14);
}
/* Mobile: oculto pill y panel más ancho */
@media (max-width: 480px){
.cc-wa{ right:14px; bottom:14px; }
.cc-wa-pill{ display:none; }
.cc-wa-panel{ width: calc(100vw - 24px); }
}
tecnotapas.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:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap:root {
--ink: #0b1220;
--ink-light: #1e293b;
--muted: #64748b;
--line: rgba(15, 23, 42, .08);
--bg: #ffffff;
--soft: #f8fafc;
--soft-blue: #f0f9ff;
--brand: #0ea5e9;
--brand-dark: #0284c7;
--brand-light: #7dd3fc;
--accent: #ffce2a;
--accent-light: #c4b5fd;
--radius: 20px;
--radius-sm: 12px;
--radius-lg: 28px;
--shadow: 0 20px 50px rgba(2, 6, 23, .08);
--shadow-lg: 0 32px 64px rgba(2, 6, 23, .12);
--shadow-sm: 0 4px 12px rgba(2, 6, 23, .04);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--gradient-bg: linear-gradient(135deg, #f0f9ff 0%, #fef7ff 50%, #f0f9ff 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
color: var(--ink);
background: var(--bg);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', 'Inter', sans-serif;
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.02em;
}
a {
color: inherit;
text-decoration: none;
transition: var(--transition);
}
.container {
max-width: 1200px;
padding-left: 24px;
padding-right: 24px;
}
.section {
padding: 100px 0;
position: relative;
}
@media (max-width: 992px) {
.section {
padding: 80px 0;
}
}
@media (max-width: 768px) {
.section {
padding: 60px 0;
}
}
/* ===== NAVBAR PREMIUM ===== */
.navbar {
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--line);
padding: 16px 0;
transition: var(--transition);
box-shadow: var(--shadow-sm);
}
.navbar.scrolled {
padding: 12px 0;
box-shadow: var(--shadow);
}
.navbar-brand {
font-weight: 800;
font-size: 1.5rem;
letter-spacing: -0.01em;
display: flex;
align-items: center;
gap: 10px;
}
.brand-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
transition: var(--transition);
}
.navbar-brand:hover .brand-icon {
transform: rotate(15deg);
}
.nav-link {
color: var(--ink-light);
font-weight: 600;
padding: 8px 16px !important;
border-radius: var(--radius-sm);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--brand), var(--accent));
transition: var(--transition);
border-radius: 2px;
}
.nav-link:hover {
color: var(--brand-dark);
}
.nav-link:hover::after {
width: 80%;
}
.nav-link.active {
color: var(--brand-dark);
}
.nav-link.active::after {
width: 80%;
}
.btn-brand {
background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
border: none;
color: white;
font-weight: 600;
padding: 12px 24px;
border-radius: var(--radius-sm);
transition: var(--transition);
box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn-brand:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
color: white;
}
.btn-ghost {
background: transparent;
border: 2px solid var(--line);
color: var(--ink-light);
font-weight: 600;
padding: 10px 22px;
border-radius: var(--radius-sm);
transition: var(--transition);
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn-ghost:hover {
border-color: var(--brand-light);
background: rgba(14, 165, 233, 0.05);
color: var(--brand-dark);
transform: translateY(-2px);
}
/* ===== HERO SECTION PREMIUM ===== */
.hero {
padding: 160px 0 100px;
position: relative;
overflow: hidden;
background: var(--gradient-bg);
border-bottom: 1px solid var(--line);
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 2;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid var(--line);
border-radius: 100px;
color: var(--brand-dark);
font-weight: 600;
font-size: 0.875rem;
letter-spacing: 0.02em;
margin-bottom: 24px;
backdrop-filter: blur(10px);
animation: fadeInUp 0.6s ease-out;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 900;
letter-spacing: -0.03em;
line-height: 1.1;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--ink) 0%, var(--brand-dark) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 0.8s ease-out 0.2s both;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
}
.hero p {
font-size: 1.125rem;
color: var(--muted);
font-weight: 500;
max-width: 600px;
margin-bottom: 32px;
animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-pills {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 32px;
animation: fadeInUp 0.8s ease-out 0.6s both;
}
.pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid var(--line);
border-radius: 100px;
font-weight: 600;
font-size: 0.875rem;
color: var(--ink-light);
transition: var(--transition);
backdrop-filter: blur(10px);
}
.pill:hover {
border-color: var(--brand);
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
}
.pill i {
color: var(--brand);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 32px;
animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-note {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 24px;
background: rgba(255, 255, 255, 0.9);
border-radius: var(--radius-sm);
border: 1px solid var(--line);
font-weight: 600;
color: var(--ink-light);
backdrop-filter: blur(10px);
animation: fadeInUp 0.8s ease-out 1s both;
}
/* ...cortado... */
/* Scope: vids-4 */
.vids-4 .vid-card{
background:#fff;
border:1px solid rgba(15,23,42,.12);
border-radius:18px;
box-shadow:0 10px 30px rgba(2,6,23,.06);
padding:12px;
height:100%;
}
.vids-4 .vid-frame{
width:100%;
aspect-ratio: 9 / 16; /* vertical tipo phone */
border-radius:16px;
overflow:hidden;
background:#f6f8fb;
border:1px solid rgba(15,23,42,.12);
position:relative;
}
/* video ocupa todo */
.vids-4 .vid-el{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
/* preview encima del video (se oculta al reproducir) */
.vids-4 .vid-preview{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
display:block;
background:#f6f8fb;
z-index:2;
}
/* botón play sobre la preview */
.vids-4 .vid-play{
position:absolute;
inset:auto;
left:50%;
top:50%;
transform:translate(-50%,-50%);
width:54px;
height:54px;
border-radius:999px;
border:0;
background:rgba(0,0,0,.55);
color:#fff;
z-index:3;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
}
.vids-4 .vid-play:hover{ background:rgba(0,0,0,.65); }
.vids-4 .vid-play-ico{ font-size:18px; margin-left:2px; }
/* Cuando está reproduciendo, ocultamos preview + botón */
.vids-4 .vid-frame.is-playing .vid-preview,
.vids-4 .vid-frame.is-playing .vid-play{
display:none !important;
}
/* Mobile compact */
@media (max-width: 575.98px){
.vids-4 .vid-card{ padding:10px; }
}
.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
}
/* Controles circulares con más contraste */
.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%}
/* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
.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} /* espacio para indicadores */
/* Modal */
#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}
/* Pequeños ajustes móviles */
@media (max-width: 575.98px){
.gal-frame{height: clamp(200px, 40vh, 360px)}
}
: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; }
}
pc
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:wght@300;400;500;600;700;800;900&family=Montserrat:wght@800;900&display=swap:root {
--sky: #0066cc;
--sky-light: #0088ff;
--sky-lighter: #e6f2ff;
--sky-dark: #004d99;
--ink: #0f172a;
--ink-light: #334155;
--muted: #64748b;
--muted-light: #94a3b8;
--card: #ffffff;
--card-hover: #f8fafc;
--border: rgba(203, 213, 225, 0.6);
--border-hover: rgba(59, 130, 246, 0.3);
--radius: 16px;
--radius-sm: 10px;
--radius-lg: 24px;
--shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
--shadow-hover: 0 20px 60px rgba(0, 102, 204, 0.15);
--shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--ink);
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
line-height: 1.6;
overflow-x: hidden;
position: relative;
min-height: 100vh;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.04) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(0, 102, 204, 0.04) 0%, transparent 40%);
z-index: -1;
pointer-events: none;
}
/* Tipografía */
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', 'Inter', sans-serif;
font-weight: 800;
letter-spacing: -0.025em;
line-height: 1.2;
}
h1 {
font-size: clamp(2.75rem, 5vw, 4.5rem);
background: linear-gradient(135deg, var(--ink) 0%, var(--sky-dark) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
h2 {
font-size: clamp(2.25rem, 4vw, 3.5rem);
position: relative;
display: inline-block;
}
h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.lead {
font-size: 1.25rem;
font-weight: 400;
color: var(--ink-light);
line-height: 1.7;
}
/* Componentes */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--sky);
background: linear-gradient(90deg, var(--sky-lighter) 0%, rgba(230, 242, 255, 0.4) 100%);
padding: 0.5rem 1.25rem;
border-radius: 100px;
border: 1px solid rgba(0, 102, 204, 0.15);
}
.section {
padding: 100px 0;
position: relative;
}
.bg-light {
background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
position: relative;
overflow: hidden;
}
.bg-light::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
pointer-events: none;
}
.section-title {
margin-bottom: 1rem;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -12px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 5px;
background: linear-gradient(90deg, var(--sky), var(--sky-light));
border-radius: 3px;
}
.section-subtitle {
color: var(--muted);
max-width: 800px;
margin: 2rem auto 3rem;
font-size: 1.125rem;
line-height: 1.7;
}
.soft-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow-card);
transition: var(--transition);
overflow: hidden;
position: relative;
backdrop-filter: blur(10px);
}
.soft-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-hover);
border-color: var(--border-hover);
}
.icon-pill {
width: 60px;
height: 60px;
border-radius: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--sky), var(--sky-dark));
color: white;
font-size: 1.5rem;
flex-shrink: 0;
transition: var(--transition);
box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}
.icon-pill-sm {
width: 48px;
height: 48px;
border-radius: 12px;
font-size: 1.25rem;
}
/* Botones */
.btn-sky {
background: linear-gradient(135deg, var(--sky), var(--sky-dark));
border: none;
color: white;
font-weight: 600;
padding: 1rem 2rem;
border-radius: 12px;
transition: var(--transition);
position: relative;
overflow: hidden;
z-index: 1;
font-size: 1rem;
box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
}
.btn-sky::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--sky-dark), var(--sky));
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}
.btn-sky:hover {
transform: translateY(-3px) scale(1.02);
box-shadow: 0 16px 40px rgba(0, 102, 204, 0.35);
}
.btn-sky:hover::before {
opacity: 1;
}
.btn-ghost {
background: transparent;
border: 2px solid var(--border);
color: var(--ink);
font-weight: 600;
padding: 1rem 2rem;
border-radius: 12px;
transition: var(--transition);
font-size: 1rem;
}
.btn-ghost:hover {
border-color: var(--sky);
color: var(--sky);
background: rgba(0, 102, 204, 0.04);
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
}
/* Navbar */
.navbar {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(226, 232, 240, 0.8);
padding: 1.25rem 0;
transition: var(--transition);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}
.navbar.scrolled {
padding: 0.75rem 0;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.brand-mark {
width: 48px;
height: 48px;
border-radius: 12px;
background: linear-gradient(135deg, var(--sky), var(--sky-dark));
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 1.5rem;
box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
transition: var(--transition);
}
.brand-mark:hover {
transform: rotate(10deg) scale(1.05);
}
.nav-link {
font-weight: 600;
color: var(--ink-light);
padding: 0.75rem 1.25rem !important;
border-radius: 10px;
transition: var(--transition);
position: relative;
margin: 0 0.25rem;
}
.nav-link:hover {
color: var(--sky);
background: rgba(0, 102, 204, 0.08);
transform: translateY(-2px);
}
.nav-link.active {
color: var(--sky);
background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
font-weight: 700;
}
/* Hero */
.hero {
padding: 160px 0 100px;
position: relative;
/* ...cortado... */
.purpose-logo-wrap{
margin-top: 14px;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
/* NUEVO: un poquito más centrada visualmente */
padding-top: 18px; /* antes 8px */
transform: translateY(-6px); /* sube un toque para que quede más “en el medio” */
min-height: 120px;
}
.purpose-logo{
max-width: 720px;
width: 100%;
height: auto;
opacity: .98;
display: block;
/* opcional por si el PNG tiene espacio raro */
margin: 0 auto;
}
.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
}
/* Controles circulares con más contraste */
.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%}
/* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
.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} /* espacio para indicadores */
/* Modal */
#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}
/* Pequeños ajustes móviles */
@media (max-width: 575.98px){
.gal-frame{height: clamp(200px, 40vh, 360px)}
}
:root{
--wa:#25D366;
--wa-dark:#1DA851;
--wa-darker:#128C7E;
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#111827;
--muted-text:#6b7280;
}
.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;
}
.wa-btn{
background:#fff;
color:var(--wa);
border:2px solid var(--wa);
width:60px; height:60px; border-radius:50%;
display:grid; place-items:center;
box-shadow:0 8px 24px rgba(0,0,0,.18);
cursor:pointer;
transition:transform .3s, box-shadow .3s, background .3s, color .3s, border-color .3s;
position:relative; overflow:hidden;
z-index:9999;
}
.wa-btn svg{ color:var(--wa); }
.wa-btn:hover{
background:var(--wa);
border-color:var(--wa-dark);
color:#fff;
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.28);
}
.wa-btn:hover svg{ color:#fff; }
.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 .28s ease, opacity .28s ease;
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, rgba(37,211,102,.10));
border-bottom:1px solid var(--light-border);
}
.wa-avatar{
width:42px; height:42px; border-radius:12px;
background:rgba(37,211,102,.12);
display:grid; place-items:center;
border:1px solid rgba(37,211,102,.25);
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:.7;
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:#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:#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,.18);
background:#fff;
}
.wa-send{
background:var(--wa);
color:#fff;
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); }
@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; }
}
canteraelias.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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css:root {
--accent: #0f6f73;
--accent-dark: #0a5053;
--accent-light: #e1f2f3;
--ink: #0b0f12;
--ink-light: #2c3238;
--muted: rgba(11, 15, 18, 0.72);
--muted-light: rgba(11, 15, 18, 0.56);
--border: rgba(11, 15, 18, 0.12);
--border-light: rgba(11, 15, 18, 0.06);
--soft: rgba(15, 111, 115, 0.08);
--soft-dark: rgba(15, 111, 115, 0.15);
--radius-lg: 22px;
--radius-md: 16px;
--radius-sm: 12px;
--shadow-subtle: 0 8px 30px rgba(0, 0, 0, 0.08);
--shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.12);
--shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.15);
--gradient-accent: linear-gradient(135deg, #0f6f73 0%, #13868b 100%);
--gradient-light: linear-gradient(135deg, rgba(15, 111, 115, 0.1) 0%, rgba(19, 134, 139, 0.05) 100%);
--transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
}
body {
background: #fff;
color: var(--ink);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.6;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 80%, rgba(15, 111, 115, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(15, 111, 115, 0.02) 0%, transparent 50%);
z-index: -1;
pointer-events: none;
}
/* Tipografía mejorada */
h1, h2, h3, h4, h5, h6 {
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.2;
}
.display-6 {
font-size: clamp(2.2rem, 5vw, 3.2rem);
line-height: 1.1;
}
.lead {
font-size: 1.15rem;
font-weight: 400;
}
/* Navbar Premium */
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-light);
padding: 0.75rem 0;
transition: var(--transition);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.navbar.scrolled {
padding: 0.5rem 0;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.brand-mark {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--gradient-accent);
display: inline-flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 800;
font-size: 1.1rem;
flex: 0 0 auto;
box-shadow: 0 6px 15px rgba(15, 111, 115, 0.25);
transition: var(--transition);
}
.navbar-brand:hover .brand-mark {
transform: rotate(15deg) scale(1.1);
box-shadow: 0 8px 20px rgba(15, 111, 115, 0.35);
}
.nav-link {
color: var(--ink) !important;
font-weight: 500;
position: relative;
padding: 0.5rem 0.75rem !important;
margin: 0 0.25rem;
transition: color 0.3s ease;
}
.nav-link::before {
content: '';
position: absolute;
bottom: 0;
left: 0.75rem;
right: 0.75rem;
height: 2px;
background: var(--gradient-accent);
border-radius: 2px;
transform: scaleX(0);
transition: transform 0.3s ease;
}
.nav-link:hover::before,
.nav-link.active::before {
transform: scaleX(1);
}
.nav-link:hover,
.nav-link.active {
color: var(--accent) !important;
}
.btn-accent {
background: var(--gradient-accent);
border: none;
color: white;
border-radius: 50px;
padding: 0.75rem 1.75rem;
font-weight: 600;
letter-spacing: 0.02em;
box-shadow: 0 10px 25px rgba(15, 111, 115, 0.3);
transition: var(--transition);
position: relative;
overflow: hidden;
z-index: 1;
}
.btn-accent::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.7s ease;
z-index: -1;
}
.btn-accent:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(15, 111, 115, 0.4);
}
.btn-accent:hover::before {
left: 100%;
}
.btn-outline-ink {
border-radius: 50px;
border: 2px solid var(--border);
color: var(--ink);
padding: 0.75rem 1.75rem;
font-weight: 500;
transition: var(--transition);
background: white;
}
.btn-outline-ink:hover {
border-color: var(--accent);
color: var(--accent);
background: var(--accent-light);
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
/* Secciones */
section {
padding: 100px 0;
position: relative;
}
.section-title {
font-size: clamp(2rem, 5vw, 3rem);
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 80px;
height: 4px;
background: var(--gradient-accent);
border-radius: 2px;
}
.text-center .section-title::after {
left: 50%;
transform: translateX(-50%);
}
.section-subtitle {
color: var(--muted);
max-width: 800px;
margin: 0 auto 3rem;
font-size: 1.15rem;
}
.eyebrow {
display: inline-block;
font-weight: 700;
color: var(--accent);
background: var(--soft);
border: 1px solid rgba(15, 111, 115, 0.18);
border-radius: 50px;
padding: 0.4rem 1.2rem;
margin-bottom: 1rem;
font-size: 0.85rem;
letter-spacing: 0.05em;
text-transform: uppercase;
box-shadow: 0 4px 10px rgba(15, 111, 115, 0.1);
}
/* Hero Section - Completamente Rediseñada */
#inicio {
padding-top: 140px;
padding-bottom: 100px;
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 150%;
background: var(--gradient-light);
border-radius: 50%;
z-index: -1;
opacity: 0.6;
}
.hero-wrap {
border-radius: var(--radius-lg);
box-shadow: var(--shadow-elevated);
overflow: hidden;
background: white;
position: relative;
border: none;
transition: var(--transition);
}
.hero-wrap:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-5px);
}
.hero-left {
padding: clamp(2.5rem, 5vw, 4rem);
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
.hero-right {
background: var(--gradient-light);
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
position: relative;
overflow: hidden;
}
.hero-right::before {
content: '';
position: absolute;
top: -50%;
right: -30%;
width: 100%;
height: 200%;
background: radial-gradient(circle, rgba(15, 111, 115, 0.1) 0%, transparent 70%);
z-index: 0;
}
.hero-img {
width: 100%;
height: auto;
max-height: 420px;
object-fit: contain;
border-radius: var(--radius-md);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
position: relative;
z-i
/* ...cortado... */
.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
}
/* Controles circulares con más contraste */
.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%}
/* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
.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} /* espacio para indicadores */
/* Modal */
#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}
/* Pequeños ajustes móviles */
@media (max-width: 575.98px){
.gal-frame{height: clamp(200px, 40vh, 360px)}
}
) -->
<style>
/* Container un poco más compacto (opcional) */
#contacto .contacto-container{
max-width: 1100px;
}
/* La clave: NO estirar la card izquierda a la altura del form */
#contacto .contacto-info{
height: auto !important;
}
/* Opcional: bajar un toque padding para que se sienta menos "gigante" */
#contacto .cardx{
padding: 1.6rem;
}
/* En mobile, que no quede apretado */
@media (max-width: 575.98px){
#contacto .cardx{ padding: 1.25rem; }
}
/* Footer sólido */
footer.footer-ce{
background: #138287;
color: #000;
border-top: none;
padding: 4rem 0 2rem;
}
/* Títulos y textos */
footer.footer-ce .fw-bold,
footer.footer-ce .fs-4,
footer.footer-ce .fs-5{
color:#000;
}
/* Texto “muted” pero en negro suave */
footer.footer-ce .foot-muted{
color: rgba(0,0,0,.78);
}
footer.footer-ce .foot-muted-light{
color: rgba(0,0,0,.68);
}
/* Links */
footer.footer-ce a.foot-link{
color:#000;
text-decoration:none;
opacity:.9;
transition: opacity .2s ease, transform .2s ease;
position: relative;
display: inline-block;
}
footer.footer-ce a.foot-link:hover{
opacity:1;
transform: translateX(2px);
}
footer.footer-ce a.foot-link::after{
content:'';
position:absolute;
left:0; bottom:-2px;
width:0; height:2px;
background: rgba(0,0,0,.75);
transition: width .25s ease;
}
footer.footer-ce a.foot-link:hover::after{
width:100%;
}
/* Brand mark adaptado a fondo sólido */
footer.footer-ce .brand-mark{
background: rgba(255,255,255,.28);
color:#000;
box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
/* Íconos */
footer.footer-ce i{
color:#000 !important;
opacity:.9;
}
/* Línea separadora */
footer.footer-ce hr{
border-color: rgba(0,0,0,.22) !important;
}
/* Responsive */
@media (max-width: 575.98px){
footer.footer-ce{ padding: 3rem 0 1.5rem; }
}
.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);
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,.10);
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,#0f6f73,#13868b);
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; }
.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:#ffffff;
border:1px solid rgba(0,0,0,.08);
align-self:flex-start;
}
.wa-user{
background:#e1f2f3;
border:1px solid rgba(15,111,115,.18);
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,.10);
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid rgba(0,0,0,.10);
font-family:inherit;
}
.wa-send{
background:#0f6f73;
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ background:#0a5053; }
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
inmobiliariarios.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.csshttps://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swaphttps://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css.hero-section{ position:relative; overflow:hidden; }
.hero-slider{ position:absolute; inset:0; z-index:0; }
.hero-overlay{ position:absolute; inset:0; z-index:1; }
/* Asegura que TODO el contenido (texto/logo/buscador) quede arriba del overlay */
.hero-content{ position:relative; z-index:2; }
/* Bloque superior (texto + logo) */
.hero-top{ padding-top: clamp(38px, 5vw, 72px); }
.hero-logo-wrap{
display:flex;
justify-content:flex-end;
align-items:center;
height:100%;
pointer-events:none; /* el logo no molesta al click del usuario */
}
.hero-logo{
width: min(360px, 100%);
max-width: 360px;
height: auto;
object-fit: contain;
filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
opacity: .98;
}
/* Buscador abajo: siempre con espacio y sin ser tapado */
.search-container{
position:relative;
z-index:3;
margin-top: clamp(18px, 3vw, 34px);
padding-bottom: clamp(18px, 3vw, 30px);
}
/* En mobile, el logo no invade: se centra y baja de tamaño */
@media (max-width: 991.98px){
.hero-logo-wrap{ justify-content:center; margin-top: 14px; }
.hero-logo{ max-width: 240px; }
}
/* ===== VARIABLES Y ESTILOS GENERALES ===== */
:root {
--primary: #8f82ae;
--primary-dark: #7c6ca0;
--primary-light: #f8f7fc;
--accent: #e74c3c;
--dark: #1e293b;
--dark-bg: #0f172a;
--light: #f8fafc;
--muted: #64748b;
--border: #e2e8f0;
--radius: 16px;
--shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
--shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.15);
--gradient: linear-gradient(135deg, var(--primary) 0%, #6b5d90 100%);
--gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
* {
box-sizing: border-box;
}
body {
font-family: 'Poppins', system-ui, -apple-system, sans-serif;
color: var(--dark);
background: var(--light);
line-height: 1.6;
overflow-x: hidden;
padding-top: 80px;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 600;
}
.section-py {
padding: 6rem 0;
}
@media (max-width: 768px) {
.section-py {
padding: 4rem 0;
}
}
.section-title {
position: relative;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--dark);
}
.section-title::after {
content: '';
position: absolute;
left: 0;
bottom: -10px;
width: 80px;
height: 4px;
background: var(--primary);
border-radius: 2px;
}
@media (max-width: 768px) {
.section-title {
font-size: 2rem;
}
}
/* ===== NAVBAR ===== */
.navbar-premium {
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
padding: 1rem 0;
}
.navbar-premium.scrolled {
background: rgba(15, 23, 42, 0.98);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
font-weight: 700;
letter-spacing: 0.5px;
}
.brand-img {
height: 40px;
width: auto;
}
.brand-text {
font-size: 1.25rem;
color: white;
font-weight: 600;
}
.navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.9) !important;
font-weight: 500;
padding: 0.5rem 1rem;
margin: 0 0.25rem;
border-radius: 8px;
transition: all 0.3s ease;
font-size: 0.95rem;
}
.navbar-nav .nav-link:hover {
color: white !important;
background: rgba(255, 255, 255, 0.1);
}
.navbar-nav .nav-link.active {
background: var(--primary);
color: white !important;
}
/* ===== HERO SECTION - CORREGIDO ===== */
.hero-section {
position: relative;
height: 85vh;
min-height: 700px;
display: flex;
align-items: center;
overflow: hidden;
margin-top: -80px;
}
.hero-slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.hero-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
opacity: 1;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(15, 23, 42, 0.6) 0%,
rgba(15, 23, 42, 0.4) 50%,
rgba(15, 23, 42, 0.8) 100%
);
z-index: 2;
}
.hero-content {
position: relative;
z-index: 3;
width: 100%;
margin-top: 2rem;
}
.hero-text {
padding: 2rem;
max-width: 800px;
}
.hero-text h1 {
font-size: 3.5rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-text .lead {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
/* ===== BUSCADOR INTEGRADO - CORREGIDO ===== */
.search-container {
margin-top: 3rem;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.search-box {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.search-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--dark);
}
.search-subtitle {
color: var(--muted);
font-size: 1rem;
}
.search-box .form-label {
color: var(--dark);
font-weight: 600;
margin-bottom: 0.5rem;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.search-box .form-select {
border: 2px solid var(--border);
border-radius: 10px;
padding: 0.75rem 1rem;
font-size: 1rem;
height: 54px;
transition: all 0.3s ease;
background: white;
}
.search-box .form-select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(143, 130, 174, 0.2);
}
.btn-search {
background: var(--primary);
color: white;
border: none;
border-radius: 10px;
padding: 0.75rem;
font-weight: 600;
transition: all 0.3s ease;
height: 54px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.btn-search:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
}
.scroll-down {
display: block;
width: 40px;
height: 40px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
text-align: center;
line-height: 36px;
color: white;
text-decoration: none;
transition: all 0.3s ease;
}
.scroll-down:hover {
border-color: white;
transform: translateY(5px);
}
/* ===== CARDS ===== */
.property-card {
background: white;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: all 0.3s ease;
height: 100%;
}
.property-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.property-image {
position: relative;
height: 240px;
overflow: hidden;
}
.property-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.property-card:hover .property-image img {
transform: scale(1.05);
}
.property-type {
position: absolute;
top: 15px;
right: 15px;
background: rgba(255, 255, 255, 0.95);
color: var(--primary-dark);
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.875rem;
backdrop-filter: blur(5px);
}
.property-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.8));
padding: 2rem 1.5rem 1.5rem;
transform: translateY(100%);
transition: transform 0.3s ease;
}
.property-card:hover .property-overlay {
transform: translateY(0);
}
.property-body {
padding: 1.5rem;
}
.property-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--dark);
}
.property-meta {
display: flex;
align-items: center;
gap: 1rem;
color: var(--muted);
font-size: 0.9rem;
margin-bottom: 1rem;
}
.property-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--primary);
text-decoration: none;
font-weight: 600;
transition: gap 0.3s ease;
}
.property-link:hover {
gap: 0.75rem;
color: var(--primary-dark);
}
/* ===== BENEFICIOS ===== */
.benefit-card {
background: white;
border-radius: var(--radius);
padding: 2rem;
box-shadow: var(--shadow);
transition: all 0.3s ease;
border: 1px solid var(--border);
text-align: center;
}
.benefit-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--primary);
}
.benefit-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 2rem;
c
/* ...cortado... */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.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, filter .25s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
filter:brightness(.98);
}
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid #e6e8ec;
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,#25D366,#128C7E);
color:#fff;
}
.wa-avatar{
width:40px;height:40px;border-radius:10px;
background:rgba(255,255,255,.18);
display:grid;place-items:center;
font-weight:800;
letter-spacing:.5px;
}
.wa-title{ font-weight:800; }
.wa-status{ font-size:.85rem; opacity:.92; }
.wa-close{
margin-left:auto;
border:none;background:transparent;color:#fff;
font-size:24px;cursor:pointer;line-height:1;
padding:2px 8px;border-radius:10px;
}
.wa-close:hover{ background:rgba(255,255,255,.16); }
.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:#ffffff;
border:1px solid #e6e8ec;
align-self:flex-start;
}
.wa-user{
background:#E9F7EF;
border:1px solid #cfeedd;
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid #e6e8ec;
background:#ffffff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid #e6e8ec;
font-family:inherit;
outline:none;
}
.wa-compose textarea:focus{
border-color:#25D366;
box-shadow:0 0 0 3px rgba(37,211,102,.18);
}
.wa-send{
background:#25D366;
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
transition:.2s;
}
.wa-send:hover{ background:#1fb85a; }
@media(max-width:480px){
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); }
}
pcsdeportes.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css:root{
--sky:#4aa3df; /* celeste */
--sky-2:#e7f4ff; /* celeste suave */
--ink:#0d1b2a; /* texto oscuro */
--muted:#5b6b7b;
--card:#ffffff;
--border: rgba(13,27,42,.10);
--radius: 18px;
--shadow: 0 18px 40px rgba(13,27,42,.10);
}
html{ scroll-behavior:smooth; }
body{
color: var(--ink);
background:
radial-gradient(900px 380px at 20% -10%, rgba(74,163,223,.18), transparent 55%),
radial-gradient(900px 380px at 85% 0%, rgba(74,163,223,.14), transparent 60%),
linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #f7fbff 100%);
}
/* helpers */
.eyebrow{
display:inline-flex;align-items:center;gap:.5rem;
font-weight:700;letter-spacing:.08em;text-transform:uppercase;
color: var(--sky);
background: rgba(74,163,223,.10);
padding:.35rem .6rem;border-radius:999px;
font-size:.78rem;
}
.section{ padding: 80px 0; }
.section-title{ font-weight: 800; letter-spacing:-.02em; }
.section-subtitle{ color: var(--muted); max-width: 860px; margin: 0 auto; }
.soft-card{
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.icon-pill{
width:46px;height:46px;border-radius:14px;
display:inline-flex;align-items:center;justify-content:center;
background: rgba(74,163,223,.12);
color: var(--sky);
font-size: 1.2rem;
flex: 0 0 auto;
}
/* navbar */
.navbar{
background: rgba(255,255,255,.92);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(13,27,42,.08);
}
.brand-mark{
width:38px;height:38px;border-radius:12px;
background: linear-gradient(135deg, rgba(74,163,223,.95), rgba(74,163,223,.35));
box-shadow: 0 10px 22px rgba(74,163,223,.25);
}
.nav-link{ color: var(--ink); font-weight: 600; }
.nav-link:hover{ color: var(--sky); }
.btn-sky{
background: var(--sky);
border-color: var(--sky);
color: #fff;
font-weight: 700;
border-radius: 999px;
padding: .65rem 1rem;
}
.btn-sky:hover{ filter: brightness(.96); color:#fff; }
.btn-ghost{
border: 1px solid rgba(13,27,42,.14);
border-radius: 999px;
font-weight: 700;
padding: .65rem 1rem;
background: #fff;
color: var(--ink);
}
.btn-ghost:hover{ border-color: rgba(74,163,223,.55); color: var(--sky); }
/* hero */
.hero{
padding: 110px 0 70px;
position: relative;
}
.hero h1{ font-weight: 900; letter-spacing:-.03em; }
.hero p{ color: var(--muted); }
.hero-badges{
display:flex;flex-wrap:wrap;gap:.5rem;margin-top: 14px;
}
.hero-badge{
display:inline-flex;align-items:center;gap:.45rem;
padding:.45rem .7rem;border-radius:999px;
border: 1px solid rgba(13,27,42,.10);
background: rgba(255,255,255,.85);
color: var(--ink);
font-weight: 600;
font-size:.92rem;
}
.hero-media{
border-radius: 24px;
overflow:hidden;
border: 1px solid rgba(13,27,42,.10);
box-shadow: var(--shadow);
background: #fff;
min-height: 360px;
display:flex;align-items:center;justify-content:center;
padding: 10px;
}
.hero-media img{
width: 100%;
height: 100%;
max-height: 520px;
object-fit: contain;
object-position: center;
display:block;
}
/* records/results blocks */
.data-shell{
background: #fff;
border: 1px dashed rgba(13,27,42,.18);
border-radius: var(--radius);
padding: 18px;
color: var(--muted);
}
.kpi{
border: 1px solid rgba(13,27,42,.10);
border-radius: 16px;
background: #fff;
padding: 16px;
height: 100%;
}
.kpi .kpi-title{ font-weight: 800; margin: 0; }
.kpi .kpi-sub{ color: var(--muted); margin: 0; }
/* services */
.service-item{
display:flex;gap:14px;
padding: 16px;
border-radius: 18px;
border: 1px solid rgba(13,27,42,.10);
background:#fff;
height: 100%;
}
.service-item h3{ font-size: 1.05rem; margin: 0; font-weight: 800; }
.service-item p{ margin: 6px 0 0; color: var(--muted); }
/* faqs */
.accordion-button{ font-weight: 800; }
.accordion-button:not(.collapsed){
color: var(--ink);
background: rgba(74,163,223,.10);
box-shadow:none;
}
.accordion-item{
border: 1px solid rgba(13,27,42,.10) !important;
border-radius: 16px !important;
overflow:hidden;
background: #fff;
}
.accordion .accordion-item + .accordion-item{ margin-top: 12px; }
/* contact */
.form-control, .form-select{
border-radius: 14px;
border: 1px solid rgba(13,27,42,.14);
padding: .85rem .9rem;
}
.form-control:focus, .form-select:focus{
border-color: rgba(74,163,223,.65);
box-shadow: 0 0 0 .2rem rgba(74,163,223,.18);
}
/* footer */
footer{
padding: 44px 0;
background: #0b2236;
color: rgba(255,255,255,.86);
}
footer a{ color: rgba(255,255,255,.86); text-decoration: none; }
footer a:hover{ color: #ffffff; }
.footer-title{ font-weight: 900; color:#fff; }
.footer-muted{ color: rgba(255,255,255,.68); }
@media (max-width: 991.98px){
.hero{ padding: 92px 0 56px; }
.hero-media{ min-height: 300px; }
}
.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
}
/* Controles circulares con más contraste */
.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%}
/* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
.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} /* espacio para indicadores */
/* Modal */
#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}
/* Pequeños ajustes móviles */
@media (max-width: 575.98px){
.gal-frame{height: clamp(200px, 40vh, 360px)}
}