serviciosjonathanquiroga.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=Poppins:wght@400;500;600;700;800&display=swap:root {
--primary: #0066ff;
--primary-dark: #0052d4;
--secondary: #0d6efd;
--accent: #00d4ff;
--dark: #0f172a;
--gray-900: #1e293b;
--gray-800: #334155;
--gray-700: #475569;
--gray-600: #64748b;
--gray-500: #94a3b8;
--gray-300: #cbd5e1;
--gray-100: #f1f5f9;
--gray-50: #f8fafc;
--success: #10b981;
--warning: #f59e0b;
--radius-xl: 24px;
--radius-lg: 20px;
--radius-md: 16px;
--radius-sm: 12px;
--shadow-lg: 0 20px 40px rgba(0, 102, 255, 0.08);
--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
color: var(--dark);
background: var(--gray-50);
overflow-x: hidden;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
line-height: 1.2;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
background: var(--gray-500);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--gray-600);
}
/* Helpers */
.section {
padding: clamp(80px, 8vw, 120px) 0;
position: relative;
}
.section-title {
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 900;
letter-spacing: -0.02em;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-subtitle {
font-size: 1.125rem;
color: var(--gray-600);
max-width: 700px;
margin: 0 auto 3rem;
line-height: 1.7;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(0, 102, 255, 0.1);
color: var(--primary);
font-weight: 600;
font-size: 0.875rem;
border-radius: 100px;
letter-spacing: 0.02em;
text-transform: uppercase;
margin-bottom: 1.5rem;
border: 1px solid rgba(0, 102, 255, 0.15);
}
/* Navbar - Premium Glass Effect */
.navbar {
backdrop-filter: blur(16px) saturate(180%);
background: rgba(255, 255, 255, 0.92) !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding: 1rem 0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
transition: var(--transition);
}
.navbar.scrolled {
padding: 0.75rem 0;
background: rgba(255, 255, 255, 0.98) !important;
box-shadow: var(--shadow-md);
}
.navbar-brand {
font-family: 'Poppins', sans-serif;
font-weight: 800;
font-size: 1.5rem;
color: var(--primary) !important;
display: flex;
align-items: center;
gap: 0.75rem;
}
.navbar-brand i {
font-size: 1.8rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-link {
font-weight: 600;
color: var(--gray-700) !important;
padding: 0.5rem 1rem !important;
margin: 0 0.25rem;
border-radius: var(--radius-sm);
transition: var(--transition);
position: relative;
}
.nav-link:hover, .nav-link.active {
color: var(--primary) !important;
background: rgba(0, 102, 255, 0.05);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--accent));
border-radius: 3px 3px 0 0;
transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
width: 80%;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
font-size: 1.25rem;
color: var(--primary);
}
.navbar-toggler:focus {
box-shadow: none;
}
/* Hero Section - Super Modern */
.hero {
padding-top: 140px;
padding-bottom: 100px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
z-index: 0;
}
.hero::after {
content: '';
position: absolute;
bottom: -30%;
left: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
z-index: 0;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
color: var(--dark);
}
.hero h1 span {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-lead {
font-size: 1.25rem;
color: var(--gray-600);
margin-bottom: 2rem;
max-width: 600px;
line-height: 1.7;
}
.hero-bullets {
list-style: none;
padding: 0;
margin-bottom: 2.5rem;
}
.hero-bullets li {
padding: 0.5rem 0;
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--gray-700);
}
.hero-bullets li i {
color: var(--success);
font-size: 1.2rem;
background: rgba(16, 185, 129, 0.1);
padding: 0.5rem;
border-radius: 50%;
}
.hero-image-container {
position: relative;
z-index: 2;
}
.hero-card {
background: white;
border-radius: var(--radius-xl);
padding: 2rem;
box-shadow: var(--shadow-lg);
border: 1px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
transform-style: preserve-3d;
perspective: 1000px;
position: relative;
overflow: hidden;
}
.hero-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--accent));
border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.hero-img {
width: 100%;
height: auto;
border-radius: var(--radius-lg);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transform: translateZ(20px);
transition: var(--transition);
}
.hero-img:hover {
transform: translateZ(30px) scale(1.02);
}
.floating-badge {
position: absolute;
padding: 0.75rem 1.25rem;
background: white;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: flex;
align-items: center;
gap: 0.75rem;
z-index: 3;
animation: float 6s ease-in-out infinite;
}
.floating-badge:nth-child(1) {
top: -20px;
left:
/* ...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)}
}
:root{
/* WhatsApp verde OFICIAL */
--wa:#25D366;
--wa-dark:#1ebe57; /* hover */
--wa-darker:#128C7E; /* acento / detalles */
--light-bg:#ffffff;
--light-bg-soft:#f6f8fb;
--light-border:#dde4ef;
--dark-text:#0f172a;
--muted-text:#64748b;
}
/* IG button (arriba del WA) */
.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 28px rgba(0,0,0,.22);
cursor:pointer;
transition:transform .25s, box-shadow .25s, background .25s;
position:relative; overflow:hidden;
}
.wa-btn:hover{
background:var(--wa-dark);
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.28);
}
.wa-btn 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 .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, #e9fff1);
border-bottom:1px solid var(--light-border);
}
.wa-avatar{
width:40px; height:40px; border-radius:10px;
background:#e6fff0;
display:grid; place-items:center;
border:1px solid #c9f5dc;
overflow:hidden;
}
.wa-title{ font-weight:800; 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:.8;
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,.05); }
.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:0.9rem;
}
.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:#f7fffa;
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:#ffffff;
}
.wa-send{
background:var(--wa);
color:#ffffff;
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{
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; }
}
jardineriaintegralalfonso.com.ar
https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.csshttps://unpkg.com/[email protected]/dist/aos.css:root {
--brand-primary: #1f7a3a;
--brand-primary-dark: #145329;
--brand-primary-light: #2ecc71;
--brand-secondary: #ff9900;
--brand-gradient: linear-gradient(135deg, #1f7a3a 0%, #2ecc71 100%);
--brand-gradient-subtle: linear-gradient(135deg, rgba(31,122,58,0.12) 0%, rgba(46,204,113,0.08) 100%);
--text-primary: #0f172a;
--text-secondary: #475569;
--text-muted: #64748b;
--text-light: #94a3b8;
--bg-primary: #ffffff;
--bg-secondary: #f8fafc;
--bg-tertiary: #f1f5f9;
--border-light: rgba(15, 23, 42, 0.06);
--border-medium: rgba(15, 23, 42, 0.12);
--border-bold: rgba(15, 23, 42, 0.18);
--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
--shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
--shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
--shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.16);
--shadow-brand: 0 12px 32px rgba(31, 122, 58, 0.2);
--radius-sm: 10px;
--radius-md: 16px;
--radius-lg: 24px;
--radius-xl: 32px;
--radius-full: 999px;
--transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
--section-py: clamp(80px, 8vw, 120px);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 90px;
overflow-x: hidden;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
color: var(--text-primary);
background-color: var(--bg-primary);
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(31, 122, 58, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.02) 0%, transparent 50%);
pointer-events: none;
z-index: -1;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.02em;
}
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
font-family: 'Poppins', sans-serif;
font-weight: 900;
letter-spacing: -0.03em;
}
/* ===== HELPERS ===== */
.section {
padding-top: var(--section-py);
padding-bottom: var(--section-py);
position: relative;
}
.section-bg {
background-color: var(--bg-secondary);
}
.section-title {
font-weight: 800;
letter-spacing: -0.025em;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 60px;
height: 4px;
background: var(--brand-gradient);
border-radius: var(--radius-full);
}
.section-title-center {
text-align: center;
}
.section-title-center::after {
left: 50%;
transform: translateX(-50%);
}
.section-subtitle {
color: var(--text-secondary);
font-size: 1.125rem;
max-width: 680px;
margin-inline: auto;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: var(--radius-full);
font-weight: 700;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--brand-primary-dark);
background: rgba(31, 122, 58, 0.1);
border: 1px solid rgba(31, 122, 58, 0.2);
position: relative;
overflow: hidden;
}
.eyebrow::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--brand-gradient);
opacity: 0.08;
z-index: -1;
}
.brand-gradient {
background: var(--brand-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.brand-badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: var(--radius-md);
background: var(--brand-gradient-subtle);
border: 1px solid rgba(31, 122, 58, 0.2);
color: var(--brand-primary);
font-size: 1.25rem;
flex-shrink: 0;
transition: all var(--transition-base);
}
.brand-badge-lg {
width: 64px;
height: 64px;
font-size: 1.75rem;
border-radius: var(--radius-lg);
}
.card-hover {
transition: all var(--transition-base);
border: 1px solid var(--border-light);
background: var(--bg-primary);
border-radius: var(--radius-lg);
overflow: hidden;
}
.card-hover:hover {
transform: translateY(-8px);
border-color: var(--border-medium);
box-shadow: var(--shadow-xl);
}
.card-hover .card-icon {
transform: scale(1);
transition: transform var(--transition-base);
}
.card-hover:hover .card-icon {
transform: scale(1.1);
}
.btn {
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: var(--radius-md);
border: none;
transition: all var(--transition-base);
position: relative;
overflow: hidden;
font-size: 0.9375rem;
letter-spacing: 0.01em;
}
.btn::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
opacity: 0;
transition: opacity var(--transition-base);
}
.btn:hover::after {
opacity: 1;
}
.btn-brand {
background: var(--brand-gradient);
color: white;
box-shadow: var(--shadow-brand);
}
.btn-brand:hover {
transform: translateY(-2px);
box-shadow: 0 16px 40px rgba(31, 122, 58, 0.25);
color: white;
}
.btn-outline-brand {
background: transparent;
color: var(--brand-primary);
border: 2px solid var(--brand-primary);
}
.btn-outline-brand:hover {
background: rgba(31, 122, 58, 0.08);
color: var(--brand-primary-dark);
transform: translateY(-2px);
}
/* ===== NAVBAR ===== */
.navbar {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border-light);
transition: all var(--transition-base);
z-index: 1030;
}
.navbar-scrolled {
box-shadow: var(--shadow-md);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
}
.navbar-brand {
font-weight: 800;
font-size: 1.25rem;
color: var(--brand-primary);
display: flex;
align-items: center;
gap: 0.75rem;
}
.navbar-brand-icon {
width: 36px;
height: 36px;
border-radius: var(--radius-md);
background: var(--brand-gradient);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.125rem;
}
.nav-link {
font-weight: 600;
/* ...cortado... */
:root{
--wa:#25D366; --wa-dark:#128C7E; --wa-darker:#075E54;
--dark-bg:#0b0f18; --darker-bg:#0a1324;
--light-text:#ffffff; --muted-text:rgba(255,255,255,.7);
}
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family:inherit;
}
.wa-stack{
display:flex;
flex-direction:column;
align-items:flex-end;
gap:10px;
}
/* Botón Facebook */
.fb-btn{
background:linear-gradient(135deg,#1877F2,#0f5dc7);
color:#fff;
width:52px;
height:52px;
border-radius:50%;
display:grid;
place-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.25);
text-decoration:none;
border:0;
cursor:pointer;
transition:transform .3s, box-shadow .3s, background .3s;
}
.fb-btn:hover{
transform:translateY(-2px) scale(1.03);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
/* Botón WhatsApp */
.wa-btn{
background:linear-gradient(135deg,var(--wa),var(--wa-dark));
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,.25);
cursor:pointer; transition:transform .3s, box-shadow .3s, background .3s; position:relative; overflow:hidden;
}
.wa-btn::after{
content:""; position:absolute; inset:0;
background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
opacity:0; transition:opacity .3s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
.wa-btn:hover::after{ opacity:1; }
/* Card WhatsApp */
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:var(--dark-bg);
color:var(--light-text);
border-radius:18px;
overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.5);
border:1px solid rgba(255,255,255,.08);
transform:translateY(10px);
opacity:0;
transition:transform .3s, opacity .3s;
z-index:1;
}
.wa-card[aria-modal="true"]{
transform:translateY(0);
opacity:1;
}
.wa-head{
display:flex; align-items:center; gap:12px; padding:14px;
background:linear-gradient(180deg,#0d162c,var(--darker-bg));
border-bottom:1px solid rgba(255,255,255,.06);
}
.wa-avatar{
width:40px; height:40px; border-radius:8px; background:#0e1a33;
display:grid; place-items:center; border:1px solid rgba(255,255,255,.08); overflow:hidden;
}
.wa-title{ font-weight:700; font-size:1.05rem; }
.wa-status{
font-size:.85rem; color: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:#fff; 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(255,255,255,.1); }
.wa-body{
padding:12px 14px;
max-height:40vh;
overflow:auto;
background:var(--dark-bg);
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
line-height:1.35;
box-shadow:0 4px 14px rgba(0,0,0,.25);
animation:fadeIn .25s ease;
}
@keyframes fadeIn{
from{opacity:0; transform:translateY(5px)}
to{opacity:1; transform:none}
}
.wa-bot{
background:#0c1428;
border:1px solid rgba(255,255,255,.06);
align-self:flex-start;
border-bottom-left-radius:4px;
}
.wa-user{
background:var(--wa-darker);
align-self:flex-end;
border-bottom-right-radius:4px;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
background:var(--dark-bg);
border-top:1px solid rgba(255,255,255,.08);
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px 12px;
border:1px solid rgba(255,255,255,.12);
background:#0a1324;
color:var(--light-text);
outline:none;
min-height:44px;
font-family:inherit;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:var(--wa);
box-shadow:0 0 0 2px rgba(37,211,102,.15);
}
.wa-send{
background:var(--wa);
color:#0b1220;
border:0;
border-radius:12px;
padding:0 16px;
font-weight:700;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.2s;
}
.wa-send:hover{
background:var(--wa-dark);
transform:scale(1.05);
}
.wa-body::-webkit-scrollbar{ width:6px; }
.wa-body::-webkit-scrollbar-track{ background:rgba(255,255,255,.05); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.2); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(255,255,255,.3); }
@media (max-width:480px){
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}
burbujasjabonesartesanales.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/animate.css/4.1.1/animate.min.css:root {
--primary: #F8D7FF;
--primary-dark: #E5B8F4;
--secondary: #FFC9DE;
--accent: #D0A8FF;
--dark: #1A1A2E;
--light: #FFF9FD;
--gray: #6C757D;
--gray-light: #F8F9FA;
--border: rgba(0,0,0,0.08);
--shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
--shadow-md: 0 10px 30px rgba(0,0,0,0.08);
--shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
--radius-sm: 12px;
--radius-md: 20px;
--radius-lg: 30px;
--radius-xl: 40px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #FFF9FD 0%, #FFF5FB 100%);
color: var(--dark);
overflow-x: hidden;
line-height: 1.6;
}
/* Tipografía premium */
h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
letter-spacing: -0.02em;
}
.section-title {
background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -12px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--accent));
border-radius: 2px;
}
/* Navbar premium */
.navbar {
background: rgba(255, 249, 253, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
padding: 1rem 0;
transition: var(--transition);
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.8rem;
color: var(--dark) !important;
display: flex;
align-items: center;
gap: 12px;
}
.logo-badge {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.navbar-brand:hover .logo-badge {
transform: rotate(15deg) scale(1.1);
}
.nav-link {
color: var(--dark) !important;
font-weight: 500;
padding: 0.5rem 1.2rem !important;
border-radius: 50px;
transition: var(--transition);
position: relative;
}
.nav-link:hover, .nav-link.active {
background: rgba(248, 215, 255, 0.2);
transform: translateY(-2px);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--accent));
border-radius: 1px;
transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
width: 60%;
}
/* Botones premium */
.btn-primary-custom {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
border: none;
color: var(--dark);
font-weight: 600;
padding: 0.8rem 2rem;
border-radius: 50px;
box-shadow: var(--shadow-md);
transition: var(--transition);
position: relative;
overflow: hidden;
z-index: 1;
}
.btn-primary-custom::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
transition: var(--transition);
z-index: -1;
}
.btn-primary-custom:hover::before {
left: 0;
}
.btn-primary-custom:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: var(--shadow-lg);
}
.btn-secondary-custom {
background: transparent;
border: 2px solid var(--primary);
color: var(--dark);
font-weight: 600;
padding: 0.8rem 2rem;
border-radius: 50px;
transition: var(--transition);
}
.btn-secondary-custom:hover {
background: var(--primary);
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}
/* Hero section */
.hero-section {
padding: 120px 0 80px;
position: relative;
overflow: hidden;
}
.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 50%, rgba(248, 215, 255, 0.2) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 201, 222, 0.15) 0%, transparent 50%);
z-index: -1;
}
.hero-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: var(--radius-xl);
padding: 4rem;
box-shadow: var(--shadow-lg);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
}
.hero-card::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 200%;
background: linear-gradient(135deg, transparent 30%, rgba(248, 215, 255, 0.1) 50%, transparent 70%);
animation: shine 8s infinite linear;
}
@keyframes shine {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--dark);
font-weight: 600;
padding: 0.6rem 1.2rem;
border-radius: 50px;
box-shadow: var(--shadow-sm);
margin-bottom: 2rem;
}
.hero-image {
width: 100%;
height: 100%;
min-height: 400px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
box-shadow: var(--shadow-lg);
position: relative;
}
.hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.hero-image:hover img {
transform: scale(1.05);
}
.feature-list {
list-style: none;
padding: 0;
}
.feature-list li {
padding: 0.5rem 0;
display: flex;
align-items: center;
gap: 12px;
}
.feature-list i {
color: var(--accent);
font-size: 1.2rem;
}
/* Cards premium */
.card-premium {
background: white;
border-radius: var(--radius-lg);
padding: 2.5rem;
height: 100%;
transition: var(--transition);
border: 1px solid var(--border);
box-shadow: var(--shadow-sm);
position: relative;
overflow:
/* ...cortado... */
:root{
/* WhatsApp VERDE original */
--wa:#25D366;
--wa-dark:#1EBE5D;
}
/* IG button (arriba del WA) */
.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);
}
/* WhatsApp flotante */
.wa-float{ position:fixed; right:18px; bottom:18px; z-index:9999; font-family:inherit; }
/* ✅ Importante: el botón debe "capturar" clicks en TODO su círculo */
.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 28px rgba(37,211,102,.35), 0 8px 24px rgba(0,0,0,.18);
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(37,211,102,.42), 0 14px 36px rgba(0,0,0,.24);
filter:saturate(1.02) brightness(1.02);
}
/* ✅ Clave: el SVG NO "bloquea" el click (así el click siempre cuenta como del botón) */
.wa-btn svg{ color:#fff; pointer-events:none; }
.wa-card{
position:absolute; right:0; bottom:74px;
width:min(360px,92vw);
background:#fff; color:#0b0b0b;
border-radius:18px; overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.25);
border:1px solid rgba(0,0,0,.14);
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, rgba(37,211,102,.18), #ffffff);
border-bottom:1px solid rgba(0,0,0,.12);
}
.wa-avatar{
width:40px; height:40px; border-radius:10px;
background:rgba(37,211,102,.15);
display:grid; place-items:center;
border:1px solid rgba(0,0,0,.10);
overflow:hidden;
}
.wa-title{ font-weight:800; font-size:1.02rem; }
.wa-status{
font-size:.85rem; color:rgba(0,0,0,.62);
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; 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;
color:rgba(0,0,0,.62);
}
.wa-close:hover{ opacity:1; background:rgba(0,0,0,.04); }
.wa-body{
padding:12px 14px;
max-height:40vh;
overflow:auto;
background:#f6f8f7;
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:0.9rem;
}
.wa-bot{
background:#fff;
border:1px solid rgba(0,0,0,.12);
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 rgba(0,0,0,.12);
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px 12px;
border:1px solid rgba(0,0,0,.12);
background:#f9fbfa;
color:#0b0b0b;
outline:none;
min-height:44px;
font-family:inherit;
font-size:0.9rem;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:rgba(37,211,102,.6);
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:800;
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; }
}
cabañassantiago.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.csshttps://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap:root {
--primary: #ffae40;
--primary-dark: #ff9d1f;
--primary-light: #ffc466;
--accent-gradient: linear-gradient(135deg, #ffae40 0%, #ff9d1f 100%);
--bg-dark: #0a0a0a;
--bg-light: #fafafa;
--text-dark: #1a1a1a;
--text-muted: #666;
--border-light: #e8e8e8;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background: #fff;
color: var(--text-dark);
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.7;
overflow-x: hidden;
}
/* ===== NAVBAR ===== */
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
transition: var(--transition);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar.scrolled {
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
display: flex;
align-items: center;
gap: 12px;
transition: var(--transition);
}
.navbar-brand:hover {
transform: translateY(-2px);
}
.navbar-brand img {
height: 48px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.navbar-brand span {
font-weight: 800;
color: var(--text-dark);
font-size: 1.35rem;
letter-spacing: -0.5px;
}
.nav-link {
font-weight: 500;
color: var(--text-dark);
padding: 8px 16px !important;
margin: 0 4px;
border-radius: 8px;
transition: var(--transition);
position: relative;
}
.nav-link::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%) scaleX(0);
width: 80%;
height: 3px;
background: var(--accent-gradient);
border-radius: 3px 3px 0 0;
transition: var(--transition);
}
.nav-link:hover {
color: var(--primary);
background: rgba(255, 174, 64, 0.08);
}
.nav-link:hover::before {
transform: translateX(-50%) scaleX(1);
}
/* ===== HERO ===== */
.hero {
padding: 100px 0 80px;
background: linear-gradient(135deg, #fff 0%, #fef8f0 100%);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(255, 174, 64, 0.12) 0%, transparent 70%);
border-radius: 50%;
animation: float 25s ease-in-out infinite;
}
@keyframes float {
0%,
100% {
transform: translate(0, 0) rotate(0deg);
}
33% {
transform: translate(30px, -30px) rotate(120deg);
}
66% {
transform: translate(-20px, 20px) rotate(240deg);
}
}
.hero h1 {
font-size: 3.5rem;
font-weight: 900;
line-height: 1.15;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--text-dark) 0%, #444 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -1.5px;
animation: fadeInUp 0.8s ease;
}
.hero p {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 20px;
line-height: 1.8;
animation: fadeInUp 0.8s ease 0.2s both;
}
.hero .btn {
background: var(--accent-gradient);
border: none;
padding: 16px 36px;
font-weight: 700;
font-size: 1.05rem;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(255, 174, 64, 0.35);
transition: var(--transition);
animation: fadeInUp 0.8s ease 0.4s both;
position: relative;
overflow: hidden;
color: #fff;
}
.hero .btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: var(--transition);
}
.hero .btn:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(255, 174, 64, 0.45);
}
.hero .btn:hover::before {
left: 100%;
}
.hero .img-fluid {
border-radius: 24px;
box-shadow: var(--shadow-xl);
animation: fadeInRight 0.8s ease 0.3s both;
transition: var(--transition);
}
.hero .img-fluid:hover {
transform: scale(1.02) rotate(1deg);
box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* ===== SECTION TITLES ===== */
.section-title {
font-size: 2.75rem;
font-weight: 900;
margin-bottom: 16px;
letter-spacing: -1px;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 60px;
height: 5px;
background: var(--accent-gradient);
border-radius: 3px;
}
.section-subtitle {
max-width: 780px;
margin: 0 auto 3rem auto;
color: var(--text-muted);
font-size: 1.15rem;
line-height: 1.8;
}
/* ===== SECTIONS ===== */
section {
position: relative;
}
.bg-light {
background: linear-gradient(180deg, #fafafa 0%, #fff 100%) !important;
}
/* ===== ICON BOXES ===== */
.icon-box {
background: #fff;
border-radius: 20px;
padding: 40px 30px;
text-align: center;
border: 1px solid
/* ...cortado... */
cabanassantiago.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.csshttps://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap:root {
--primary: #ffae40;
--primary-dark: #ff9d1f;
--primary-light: #ffc466;
--accent-gradient: linear-gradient(135deg, #ffae40 0%, #ff9d1f 100%);
--bg-dark: #0a0a0a;
--bg-light: #fafafa;
--text-dark: #1a1a1a;
--text-muted: #666;
--border-light: #e8e8e8;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background: #fff;
color: var(--text-dark);
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.7;
overflow-x: hidden;
}
/* ===== NAVBAR ===== */
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
transition: var(--transition);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar.scrolled {
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
display: flex;
align-items: center;
gap: 12px;
transition: var(--transition);
}
.navbar-brand:hover {
transform: translateY(-2px);
}
.navbar-brand img {
height: 48px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.navbar-brand span {
font-weight: 800;
color: var(--text-dark);
font-size: 1.35rem;
letter-spacing: -0.5px;
}
.nav-link {
font-weight: 500;
color: var(--text-dark);
padding: 8px 16px !important;
margin: 0 4px;
border-radius: 8px;
transition: var(--transition);
position: relative;
}
.nav-link::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%) scaleX(0);
width: 80%;
height: 3px;
background: var(--accent-gradient);
border-radius: 3px 3px 0 0;
transition: var(--transition);
}
.nav-link:hover {
color: var(--primary);
background: rgba(255, 174, 64, 0.08);
}
.nav-link:hover::before {
transform: translateX(-50%) scaleX(1);
}
/* ===== HERO ===== */
.hero {
padding: 100px 0 80px;
background: linear-gradient(135deg, #fff 0%, #fef8f0 100%);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(255, 174, 64, 0.12) 0%, transparent 70%);
border-radius: 50%;
animation: float 25s ease-in-out infinite;
}
@keyframes float {
0%,
100% {
transform: translate(0, 0) rotate(0deg);
}
33% {
transform: translate(30px, -30px) rotate(120deg);
}
66% {
transform: translate(-20px, 20px) rotate(240deg);
}
}
.hero h1 {
font-size: 3.5rem;
font-weight: 900;
line-height: 1.15;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--text-dark) 0%, #444 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -1.5px;
animation: fadeInUp 0.8s ease;
}
.hero p {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 20px;
line-height: 1.8;
animation: fadeInUp 0.8s ease 0.2s both;
}
.hero .btn {
background: var(--accent-gradient);
border: none;
padding: 16px 36px;
font-weight: 700;
font-size: 1.05rem;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(255, 174, 64, 0.35);
transition: var(--transition);
animation: fadeInUp 0.8s ease 0.4s both;
position: relative;
overflow: hidden;
color: #fff;
}
.hero .btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: var(--transition);
}
.hero .btn:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(255, 174, 64, 0.45);
}
.hero .btn:hover::before {
left: 100%;
}
.hero .img-fluid {
border-radius: 24px;
box-shadow: var(--shadow-xl);
animation: fadeInRight 0.8s ease 0.3s both;
transition: var(--transition);
}
.hero .img-fluid:hover {
transform: scale(1.02) rotate(1deg);
box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* ===== SECTION TITLES ===== */
.section-title {
font-size: 2.75rem;
font-weight: 900;
margin-bottom: 16px;
letter-spacing: -1px;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 60px;
height: 5px;
background: var(--accent-gradient);
border-radius: 3px;
}
.section-subtitle {
max-width: 780px;
margin: 0 auto 3rem auto;
color: var(--text-muted);
font-size: 1.15rem;
line-height: 1.8;
}
/* ===== SECTIONS ===== */
section {
position: relative;
}
.bg-light {
background: linear-gradient(180deg, #fafafa 0%, #fff 100%) !important;
}
/* ===== ICON BOXES ===== */
.icon-box {
background: #fff;
border-radius: 20px;
padding: 40px 30px;
text-align: center;
border: 1px solid
/* ...cortado... */
kilmestravel.com.ar
https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swaphttps://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css/* ====== SECCIONES PRO: INFO / TRANSPORTE / CONTACTO ====== */
.section-slab{
background: #fff;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
position: relative;
overflow: hidden;
}
.section-slab::before{
content:"";
position:absolute; inset:-200px -200px auto -200px;
height: 360px;
background: radial-gradient(closest-side at 20% 40%, rgba(242,82,30,.12), transparent 70%);
pointer-events:none;
}
.section-slab::after{
content:"";
position:absolute; inset:auto -200px -220px -200px;
height: 420px;
background: radial-gradient(closest-side at 80% 60%, rgba(15,23,42,.06), transparent 70%);
pointer-events:none;
}
.section-inner{ position: relative; z-index: 1; }
.section-head{
display:flex; flex-direction:column; gap:10px;
margin-bottom: 22px;
}
.section-head.center{ text-align:center; align-items:center; }
.section-eyebrow{
display:inline-flex; align-items:center; gap:10px;
}
.section-title{
font-size: 2.05rem;
line-height: 1.12;
letter-spacing: -0.04em;
}
.section-subtitle{
color: var(--text-muted);
max-width: 62ch;
font-size: 1.03rem;
}
/* INFO */
.info-pro{
display:grid;
grid-template-columns: 1.05fr .95fr;
gap: 28px;
align-items: stretch;
}
.info-panel{
padding: 26px;
border-radius: 18px;
border: 1px solid var(--border);
background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
box-shadow: 0 18px 40px rgba(15,23,42,.06);
}
.kpi-row{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-top: 18px;
}
.kpi{
border:1px solid var(--border);
background:#fff;
border-radius: 14px;
padding: 12px;
box-shadow: 0 10px 18px rgba(15,23,42,.04);
}
.kpi .k{
font-weight: 900;
letter-spacing:-.02em;
}
.kpi .v{
margin-top: 2px;
font-size: .88rem;
color: var(--text-muted);
}
.feature-grid{
display:grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.feature-pro{
border: 1px solid var(--border);
background: #fff;
border-radius: 16px;
padding: 14px;
box-shadow: 0 14px 28px rgba(15,23,42,.05);
display:flex;
gap: 12px;
align-items:flex-start;
}
.icon-badge{
width: 40px; height: 40px;
border-radius: 14px;
display:flex; align-items:center; justify-content:center;
background: var(--primary-light);
border: 1px solid rgba(242,82,30,.18);
flex: 0 0 auto;
}
.icon-badge svg{ width: 20px; height: 20px; fill: var(--primary); }
.feature-pro b{ display:block; font-weight: 900; margin: 1px 0 4px; }
.feature-pro span{ display:block; font-size: .90rem; color: var(--text-muted); line-height:1.45; }
/* TRANSPORTE */
.transport-pro{
display:grid;
grid-template-columns: .95fr 1.05fr;
gap: 24px;
align-items: start;
}
.transport-side{
padding: 22px;
border-radius: 18px;
border: 1px solid var(--border);
background: linear-gradient(180deg, rgba(242,82,30,.08), rgba(255,255,255,.92));
box-shadow: 0 18px 40px rgba(15,23,42,.06);
}
.transport-side .chip-row{
display:flex; flex-wrap:wrap; gap: 8px; margin-top: 12px;
}
.chip{
display:inline-flex; align-items:center; gap:8px;
padding: 8px 12px;
border-radius: 999px;
border: 1px solid rgba(226,232,240,.9);
background: rgba(255,255,255,.82);
font-weight: 900;
font-size: .9rem;
color: var(--text-main);
}
.chip svg{ width:16px; height:16px; fill: var(--primary); }
.transport-card{
padding: 22px;
border-radius: 18px;
border: 1px solid var(--border);
background: #fff;
box-shadow: 0 18px 40px rgba(15,23,42,.06);
}
.tab-pro{
display:flex;
gap: 8px;
padding: 6px;
border-radius: 999px;
background: rgba(15,23,42,.03);
border: 1px solid rgba(226,232,240,.9);
margin-bottom: 16px;
}
.tab-pro .tab-btn{
flex:1;
text-align:center;
border-radius: 999px;
border: 1px solid transparent;
padding: 10px 14px;
font-weight: 900;
color: var(--text-muted);
}
.tab-pro .tab-btn.active{
color: var(--primary);
background: #fff;
border-color: rgba(242,82,30,.22);
box-shadow: 0 10px 18px rgba(15,23,42,.05);
}
.form-row-2{
display:grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.helper-note{
margin-top: 10px;
padding: 12px 14px;
border-radius: 14px;
border: 1px dashed rgba(226,232,240,1);
background: rgba(248,250,252,.9);
color: var(--text-muted);
font-size: .90rem;
text-align:center;
}
/* CONTACTO */
.contact-pro{
display:grid;
grid-template-columns: .9fr 1.1fr;
gap: 24px;
align-items: start;
}
.contact-card{
padding: 22px;
border-radius: 18px;
border: 1px solid var(--border);
background: #fff;
box-shadow: 0 18px 40px rgba(15,23,42,.06);
}
.contact-list{
display:flex; flex-direction:column; gap: 10px;
margin-top: 14px;
}
.c-row{
display:flex; gap: 12px; align-items:flex-start;
padding: 12px;
border-radius: 16px;
border:1px solid var(--border);
background: rgba(248,250,252,.9);
}
.c-ico{
width: 40px; height: 40px;
border-radius: 14px;
display:flex; align-items:center; justify-content:center;
background: rgba(15,23,42,.06);
border: 1px solid rgba(15,23,42,.08);
flex: 0 0 auto;
}
.c-ico svg{ width:18px; height:18px; fill: var(--text-main); }
.c-row b{ display:block; font-weight: 900; margin: 1px 0 3px; }
.c-row span{ display:block; color: var(--text-muted); font-size: .92rem; line-height: 1.45; }
@media (max-width: 980px){
.info-pro, .transport-pro, .contact-pro{ grid-template-columns: 1fr; }
.kpi-row{ grid-template-columns: 1fr; }
.feature-grid{ grid-template-columns: 1fr; }
}
:root {
--primary: #f2521e;
--primary-dark: #d63d0e;
--primary-light: #fff2ed;
--bg-body: #f8fafc;
--bg-surface: #ffffff;
--text-main: #0f172a;
--text-muted: #64748b;
--text-light: #94a3b8;
--border: #e2e8f0;
--border-hover: #cbd5e1;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--max-w: 1200px;
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--header-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; scroll-behavior:smooth; }
body { margin: 0; padding: 0; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color 0.2s, background 0.2s, border-color 0.2s; }
img { max-width: 100%; display: block; height: auto; }
button, input, textarea, select { font-family: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.03em; color: var(--text-main); }
p { margin: 0 0 1em; }
.text-accent { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
/* Buttons */
.btn{
display:inline-flex; align-items:center; justify-content:center; gap:10px;
padding:10px 18px; font-weight:700; font-size:0.95rem;
border-radius: 999px; border: 1px solid transparent;
transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
cursor:pointer; white-space:nowrap;
}
.btn.primary{
background: var(--primary);
color:#fff;
box-shadow: 0 10px 18px rgba(242,82,30,.18);
}
.btn.primary:hover{ background: var(--primary-dark); transform: translateY(-1p
/* ...cortado... */
.brand-logo-block {
display: flex;
justify-content: center;
padding: 3rem 1rem;
margin: 3rem 0;
}
.brand-logo-card {
position: relative;
width: 100%;
max-width: 420px; /* MOBILE */
padding: 2.2rem 2rem;
border-radius: 22px;
background: linear-gradient(
135deg,
rgba(255,255,255,0.92),
rgba(255,255,255,0.78)
);
backdrop-filter: blur(10px);
box-shadow:
0 18px 36px rgba(0,0,0,0.08),
inset 0 0 0 1px rgba(255,255,255,0.6);
text-align: center;
transition: all .4s ease;
}
.brand-logo-card::before {
content: "";
position: absolute;
inset: -2px;
border-radius: inherit;
background: linear-gradient(
120deg,
var(--primary),
var(--secondary, var(--primary)),
var(--primary)
);
opacity: 0.25;
filter: blur(18px);
z-index: -1;
}
.brand-logo-img {
max-width: 180px;
width: 100%;
height: auto;
display: block;
margin: 0 auto;
transition: transform .4s ease;
}
.brand-logo-caption {
margin-top: 1rem;
font-size: 0.85rem;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--muted, #777);
}
/* =========================
DESKTOP UPGRADE
========================= */
@media (min-width: 992px) {
.brand-logo-block {
padding: 4rem 0;
}
.brand-logo-card {
max-width: 860px;
padding: 3rem 4rem;
border-radius: 18px;
background: linear-gradient(
90deg,
rgba(255,255,255,0.95),
rgba(255,255,255,0.85),
rgba(255,255,255,0.95)
);
}
.brand-logo-card::after {
content: "";
position: absolute;
left: 50%;
bottom: -24px;
transform: translateX(-50%);
width: 140px;
height: 3px;
border-radius: 10px;
background: linear-gradient(
90deg,
transparent,
var(--primary),
transparent
);
opacity: 0.6;
}
.brand-logo-img {
max-width: 260px;
}
.brand-logo-caption {
font-size: 0.9rem;
margin-top: 1.2rem;
}
}
/* ===== INFO MODERN STYLES ===== */
.info-modern {
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
position: relative;
overflow: hidden;
}
.info-modern::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 40%;
height: 100%;
background: linear-gradient(135deg, rgba(242, 82, 30, 0.03) 0%, transparent 100%);
z-index: 0;
}
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
position: relative;
z-index: 1;
}
.info-content {
padding-right: 20px;
}
.info-badge {
margin-bottom: 24px;
}
.badge.gradient {
background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
color: white;
border: none;
padding: 10px 20px;
font-weight: 700;
font-size: 0.9rem;
}
.info-title {
font-size: 2.8rem;
line-height: 1.1;
margin-bottom: 24px;
letter-spacing: -0.03em;
}
.info-title .highlight {
background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.info-description {
font-size: 1.15rem;
line-height: 1.6;
color: var(--text-muted);
margin-bottom: 32px;
}
.info-stats {
display: flex;
gap: 32px;
margin-bottom: 40px;
padding: 20px 0;
border-top: 2px solid rgba(242, 82, 30, 0.1);
border-bottom: 2px solid rgba(242, 82, 30, 0.1);
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2.2rem;
font-weight: 800;
background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 6px;
}
.stat-label {
font-size: 0.9rem;
color: var(--text-muted);
font-weight: 600;
}
.info-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.btn.with-icon {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
font-weight: 700;
}
.btn.full-width {
width: 100%;
}
/* Features Grid */
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.feature-card {
background: white;
border: 1px solid rgba(226, 232, 240, 0.8);
border-radius: 16px;
padding: 24px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(180deg, var(--primary) 0%, #ff8c5a 100%);
opacity: 0;
transition: opacity 0.3s ease;
}
.feature-card:hover::before {
opacity: 1;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
border-color: rgba(242, 82, 30, 0.2);
}
.feature-icon {
width: 56px;
height: 56px;
background: rgba(242, 82, 30, 0.08);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}
.feature-content h4 {
font-size: 1.1rem;
margin-bottom: 8px;
color: var(--text-main);
}
.feature-content p {
font-size: 0.95rem;
line-height: 1.5;
color: var(--text-muted);
margin: 0;
}
/* ===== TRANSPORT MODERN STYLES ===== */
.transport-modern {
background: var(--bg-body);
}
.section-header.center {
text-align: center;
max-width: 600px;
margin: 0 auto 48px;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--text-muted);
margin-top: 12px;
}
.transport-card {
background: white;
border-radius: 24px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(226, 232, 240, 0.8);
max-width: 800px;
margin: 0 auto;
}
.transport-tabs {
display: flex;
gap: 12px;
margin-bottom: 32px;
padding-bottom: 20px;
border-bottom: 2px solid rgba(226, 232, 240, 0.8);
}
.transport-tab {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 24px;
background: transparent;
border: 2px solid transparent;
border-radius: 12px;
font-weight: 700;
color: var(--text-muted);
cursor: pointer;
transition: all 0.3s ease;
}
.transport-tab:hover {
background: rgba(242, 82, 30, 0.05);
color: var(--primary);
}
.transport-tab.active {
background: rgba(242, 82, 30, 0.1);
color: var(--primary);
border-color: rgba(242, 82, 30, 0.2);
}
.tab-icon {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}
.transport-form {
display: flex;
flex-direction: column;
gap: 24px;
}
.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.form-group.floating {
position: relative;
}
.form-group.floating input,
.form-group.floating textarea,
.form-group.floating select {
padding-top: 24px;
padding-bottom: 10px;
height: 56px;
border-radius: 12px;
border: 2px solid var(--border);
background: white;
}
/* Date inputs: keep the native picker clickable.
On some browsers the calendar opens mainly via the indicator on the right.
We reserve space and prevent decorative overlays from stealing clicks. */
.transport-form input[type="date"]{
padding-right: 52px;
}
.transport-form input[type="date"]::-webkit-calendar-picker-indicator{
cursor: pointer;
}
.form-group.floating textarea {
height: auto;
min-height: 120px;
padding-top: 32px;
resize: vertical;
}
.form-group.floating label {
position: absolute;
top: 18px;
left: 16px;
color: var(--text-muted);
font-size: 0.95rem;
pointer-events: none;
transition: all 0.2s ease;
}
.form-group.floating input:focus + label,
.form-group.floating input:not(:placeholder-shown) + label,
.form-group.floating textarea:focus + label,
.form-group.floating textarea:not(:placeholder-shown) + label {
top: 8px;
font-size: 0.8rem;
color: var(--primary);
}
.form-group.floating input:focus,
.form-group.floating textarea:focus {
border-color: var(--primary);
box-shadow: 0 0 0 4px rgba(242, 82, 30, 0.1);
outline: none;
}
.form-hint {
font-size: 0.85rem;
color: var(--text-light);
margin-top: 6px;
}
.calendar-icon {
position: absolute;
right: 16px;
top: 50%;
transform: translateY(-50%);
color: var(--text-light);
pointer-events: none;
}
.passenger-controls {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
display: flex;
gap: 4px;
}
.passenger-btn {
width: 28px;
height: 28px;
border-radius: 6px;
border: 1px solid var(--border);
background: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.passenger-btn:hover {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.form-note {
text-align: center;
font-size: 0.9rem;
color: var(--text-muted);
margin-top: 16px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
/* Transport Info */
.transport-info {
display: flex;
justify-content: center;
gap: 32p
/* ...cortado... */
.promo-cta {
padding: 10px 18px; /* ↑ más alto y más ancho */
display: inline-flex; /* alinea icono + texto */
align-items: center;
gap: 8px; /* espacio entre icono y texto */
border-radius: 999px; /* estilo pill */
}
:root{
/* WhatsApp oficial (botón flotante) */
--wa:#25D366;
--wa-dark:#128C7E;
/* Naranja de tu página (ajustalo si tu accent es otro) */
--kt-accent: var(--accent, #ff6a2a);
--kt-accent-dark:#e9551d;
}
.wa-float{ position:fixed; right:18px; bottom:18px; z-index:9999; font-family:inherit; }
.wa-stack{ display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
/* Instagram */
.ig-btn{
background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
color:#fff; width:52px; height:52px; border-radius:50%;
display:grid; place-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.25);
text-decoration:none; border:0; cursor:pointer;
transition:transform .3s, box-shadow .3s;
}
.ig-btn:hover{ transform:translateY(-2px) scale(1.03); box-shadow:0 14px 36px rgba(0,0,0,.35); }
/* Facebook */
.fb-btn{
background:linear-gradient(135deg,#1877F2,#0f5dc7);
color:#fff; width:52px; height:52px; border-radius:50%;
display:grid; place-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.25);
text-decoration:none; border:0; cursor:pointer;
transition:transform .3s, box-shadow .3s;
}
.fb-btn:hover{ transform:translateY(-2px) scale(1.03); box-shadow:0 14px 36px rgba(0,0,0,.35); }
/* WhatsApp button (SE QUEDA VERDE OFICIAL) */
.wa-btn{
background:linear-gradient(135deg,var(--wa),var(--wa-dark));
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,.25);
cursor:pointer;
transition:transform .3s, box-shadow .3s, background .3s;
position:relative; overflow:hidden;
}
.wa-btn::after{
content:""; position:absolute; inset:0;
background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
opacity:0; transition:opacity .3s;
}
.wa-btn:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 14px 36px rgba(0,0,0,.35); }
.wa-btn:hover::after{ opacity:1; }
/* Card (chat) — MODO CLARO + detalles NARANJA */
.wa-card{
position:absolute; right:0; bottom:74px;
width:min(360px,92vw);
background:#fff;
color:#111827;
border-radius:18px; overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.35);
border:1px solid rgba(0,0,0,.10);
transform:translateY(10px); opacity:0;
transition:transform .3s, opacity .3s;
z-index:1;
}
.wa-card[aria-modal="true"]{ transform:translateY(0); opacity:1; }
/* Header claro con un acento naranja */
.wa-head{
display:flex; align-items:center; gap:12px; padding:14px;
background:linear-gradient(180deg,#ffffff,#fbfbfb);
border-bottom:1px solid rgba(0,0,0,.08);
position:relative;
}
/* barrita pro arriba */
.wa-head::before{
content:""; position:absolute; left:0; top:0; width:100%; height:3px;
background:linear-gradient(90deg,var(--kt-accent), rgba(255,106,42,.35));
}
.wa-avatar{
width:40px; height:40px; border-radius:10px;
background:#fff;
display:grid; place-items:center;
border:1px solid rgba(255,106,42,.35);
overflow:hidden;
}
.wa-title{ font-weight:800; font-size:1.05rem; }
.wa-status{
font-size:.85rem;
color:rgba(17,24,39,.65);
display:flex; align-items:center; gap:6px;
}
.wa-status::before{
content:""; width:8px; height:8px; border-radius:50%;
background:var(--kt-accent);
}
.wa-close{
margin-left:auto;
background:transparent;
color:#111827;
border:0;
font-size:24px;
cursor:pointer;
opacity:.65;
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,.06); }
.wa-body{
padding:12px 14px;
max-height:40vh;
overflow:auto;
display:flex; flex-direction:column; gap:8px;
background:#fff;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
line-height:1.35;
box-shadow:0 4px 14px rgba(0,0,0,.12);
}
.wa-bot{
background:#f3f4f6;
border:1px solid rgba(0,0,0,.06);
align-self:flex-start;
border-bottom-left-radius:4px;
color:#111827;
}
.wa-user{
background:var(--kt-accent);
color:#fff;
align-self:flex-end;
border-bottom-right-radius:4px;
}
.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 12px;
border:1px solid rgba(0,0,0,.12);
background:#f9fafb;
color:#111827;
outline:none;
min-height:44px;
font-family:inherit;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:var(--kt-accent);
box-shadow:0 0 0 2px rgba(255,106,42,.18);
}
/* Botón enviar (naranja) */
.wa-send{
background:var(--kt-accent);
color:#111827;
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{ background:var(--kt-accent-dark); transform:scale(1.05); color:#0b1220; }
/* Scrollbar interno */
.wa-body::-webkit-scrollbar{ width:6px; }
.wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.05); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.18); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.28); }
@media (max-width:480px){
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}