Preview de mixed.css
/* MIXED CSS PACK */
/* Template: piscinasgio.com.ar/index.html */
/* Template mtime: 2026-03-02 12:36:26 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
.footer-logo {
max-width: 150px; /* tamaño máximo */
height: auto; /* mantiene proporción */
display: block; /* evita espacios raros */
}
.footer-logo {
max-width: 150px;
height: auto;
display: block;
}
/* ---------- VARIABLES DE DISEÑO PREMIUM ---------- */
:root {
--primary: #0b4f6c; /* Azul profundo y elegante */
--primary-light: #1e6f8f;
--primary-soft: rgba(11, 79, 108, 0.08);
--accent: #d9923b; /* Acento cálido (ocre/dorado) */
--accent-soft: rgba(217, 146, 59, 0.1);
--ink: #1a2b3c;
--ink-light: #2e4057;
--gray-600: #4d5f72;
--gray-400: #9aabbb;
--gray-200: #eef2f6;
--white: #ffffff;
--bg-gradient: linear-gradient(145deg, #f9fcff 0%, #edf2f9 100%);
--radius-card: 32px;
--radius-btn: 60px;
--shadow-sm: 0 10px 25px -10px rgba(0,0,0,0.05), 0 5px 10px -5px rgba(0,0,0,0.02);
--shadow-md: 0 20px 35px -12px rgba(11,79,108,0.12), 0 8px 18px -6px rgba(11,79,108,0.05);
--shadow-lg: 0 35px 60px -15px rgba(11,79,108,0.25);
--shadow-hover: 0 40px 50px -15px rgba(11,79,108,0.3);
--transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
}
/* ---------- RESET Y BASE ---------- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Manrope', system-ui, -apple-system, sans-serif;
color: var(--ink);
background: var(--white);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, .h1, .h2, .h3, .display-1, .display-2, .display-3,
.navbar-brand, .btn, .eyebrow {
font-family: 'Manrope', sans-serif;
font-weight: 800;
letter-spacing: -0.02em;
}
/* Tipografía especial para títulos muy grandes (opcional) */
.section-title {
font-weight: 800;
letter-spacing: -1.5px;
line-height: 1.1;
}
a {
color: var(--ink);
transition: var(--transition);
text-decoration: none;
}
a:hover {
color: var(--primary);
}
/* ---------- BOTONES DE ALTA GAMA ---------- */
.btn {
border-radius: var(--radius-btn);
padding: 0.85rem 2rem;
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.3px;
transition: var(--transition);
border: 2px solid transparent;
box-shadow: var(--shadow-sm);
position: relative;
overflow: hidden;
z-index: 1;
}
.btn::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 0;
background: rgba(0,0,0,0.05);
transition: var(--transition);
z-index: -1;
}
.btn:hover::after {
height: 100%;
}
.btn-accent {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.btn-accent:hover {
background: var(--primary-light);
border-color: var(--primary-light);
color: white;
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
}
.btn-outline-accent {
background: transparent;
color: var(--primary);
border-color: var(--primary);
}
.btn-outline-accent:hover {
background: var(--primary-soft);
color: var(--primary-light);
border-color: var(--primary-light);
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}
/* Botón de WhatsApp con estilo propio */
.btn-wa {
background: #25D366;
color: white;
border-color: #25D366;
}
.btn-wa:hover {
background: #20bd5a;
border-color: #20bd5a;
color: white;
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
}
/* ---------- NAVBAR CON EFECTO LUXURY ---------- */
.navbar {
background: rgba(255,255,255,0.75);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border-bottom: 1px solid rgba(255,255,255,0.3);
box-shadow: 0 4px 30px rgba(0,0,0,0.03);
padding: 8px 0;
}
.navbar .navbar-brand {
display: flex;
align-items: center;
gap: 0.8rem;
font-weight: 900;
font-size: 1.4rem;
color: var(--ink);
}
.brand-logo {
height: 48px;
width: auto;
max-width: 160px;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
transition: var(--transition);
}
.navbar-brand:hover .brand-logo {
transform: scale(1.02);
}
.brand-text {
background: linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-link {
font-weight: 600 !important;
color: var(--ink-light) !important;
padding: 0.6rem 1.2rem !important;
border-radius: 40px;
transition: var(--transition);
margin: 0 0.1rem;
font-size: 0.95rem;
}
.nav-link:hover {
color: var(--primary) !important;
background: var(--primary-soft);
}
.navbar-toggler {
border: none;
border-radius: 12px;
padding: 0.6rem;
background: rgba(0,0,0,0.02);
}
.navbar-toggler:focus {
box-shadow: none;
outline: none;
}
/* ---------- SECCIÓN HERO CON FONDO SUTIL ---------- */
.hero {
padding: 40px 0 100px;
background: var(--bg-gradient);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 70%;
height: 200%;
background: radial-gradient(circle at 70% 30%, rgba(11,79,108,0.03) 0%, transparent 60%);
pointer-events: none;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.6rem;
padding: 0.5rem 1.4rem;
border-radius: 60px;
background: var(--primary-soft);
color: var(--primary);
font-weight: 800;
font-size: 0.85rem;
letter-spacing: 0.5px;
text-transform: uppercase;
border: 1px solid rgba(11,79,108,0.15);
backdrop-filter: blur(4px);
}
.hero h1 {
font-weight: 900;
letter-spacing: -2px;
line-height: 1.1;
font-size: clamp(2.5rem, 5vw, 4rem);
margin: 25px 0 15px;
color: var(--ink);
}
.hero p.lead {
color: var(--gray-600);
font-size: 1.25rem;
font-weight: 500;
max-width: 550px;
}
.hero-bullets {
display: grid;
gap: 1rem;
margin: 30px 0 25px;
list-style: none;
padding: 0;
}
.hero-bullets li {
display: flex;
gap: 1rem;
align-items: center;
font-weight: 600;
color: var(--ink-light);
}
.check {
width: 28px;
height: 28px;
border-radius: 12px;
background: var(--primary-soft);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--primary);
font-size: 0.9rem;
}
.hero-note {
color: var(--gray-600);
font-weight: 600;
font-size: 1rem;
background: rgba(0,0,0,0.02);
padding: 0.6rem 1.2rem;
border-radius: 60px;
display: inline-block;
border: 1px solid rgba(0,0,0,0.02);
}
.hero-card {
background: rgba(255,255,255,0.5);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.7);
border-radius: var(--radius-card);
box-shadow: var(--shadow-lg);
padding: 20px;
}
.hero-img-wrap {
aspect-ratio: 1/1;
border-radius: calc(var(--radius-card) - 10px);
overflow: hidden;
background: var(--gray-200);
}
.hero-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
}
.hero-img-wrap:hover .hero-img {
transform: scale(1.05);
}
/* ---------- SECCIONES CON ESPACIADO DE LUJO ---------- */
.section {
padding: 120px 0;
position: relative;
}
.section-title {
font-weight: 900;
letter-spacing: -1.5px;
font-size: clamp(2.2rem, 3.5vw, 3.5rem);
margin: 0.5rem 0 1rem;
color: var(--ink);
}
.section-subtitle {
color: var(--gray-600);
font-size: 1.2rem;
font-weight: 500;
max-width: 750px;
margin-left: auto;
margin-right: auto;
}
/* ---------- TARJETAS CON PERSONALIDAD ---------- */
.card-soft {
background: var(--white);
border: 1px solid rgba(0, 0, 0, 0.03);
border-radius: var(--radius-card);
box-shadow: var(--shadow-sm);
transition: var(--transition);
height: 100%;
}
.card-soft:hover {
box-shadow: var(--shadow-md);
border-color: rgba(11,79,108,0.1);
transform: translateY(-6px);
}
.feature-card {
padding: 2.5rem 2rem;
}
.feature-icon-circle {
width: 70px;
height: 70px;
border-radius: 24px;
background: linear-gradient(145deg, var(--white), var(--primary-soft));
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--primary);
font-size: 2rem;
box-shadow: var(--shadow-sm);
border: 1px solid rgba(11,79,108,0.1);
transition: var(--transition);
}
.card-soft:hover .feature-icon-circle {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.feature-title {
font-weight: 800;
font-size: 1.3rem;
margin-bottom: 0.6rem;
color: var(--ink);
}
.feature-text {
color: var(--gray-600);
font-weight: 500;
line-height: 1.6;
}
/* Variante compacta */
.feature-card-compact {
padding: 1.8rem;
display: flex;
gap: 1.2rem;
align-items: flex-start;
}
.feature-card-compact .feature-icon-circle {
width: 58px;
height: 58px;
font-size: 1.6rem;
}
/* Servicios con línea superior de acento */
.service-card {
padding: 2.2rem 1.8rem;
border-top: 5px solid var(--primary);
border-radius: var(--radius-card) var(--radius-card) 20px 20px;
}
/* ---------- ACORDEÓN DE DISEÑO ---------- */
.accordion-item {
border: none;
margin-bottom: 1.5rem;
border-radius: 28px !important;
background: var(--white);
box-shadow: var(--shadow-sm);
border: 1px solid rgba(0,0,0,0.02);
}
.accordion-button {
font-weight: 700;
padding: 1.8rem 2.2rem;
background: var(--white);
color: var(--ink);
border-radius: 28px !important;
font-size: 1.1rem;
box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
background: var(--primary-soft);
color: var(--primary);
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.accordion-button:focus {
box-shadow: none;
border-color: rgba(11,79,108,0.1);
}
.accordion-body {
padding: 1.5rem 2.2rem 2rem;
color: var(--gray-600);
font-weight: 500;
}
/* ---------- CONTACTO CON ESTILO REFINADO ---------- */
.contact-card {
padding: 3rem;
}
.contact-meta {
display: grid;
gap: 1.2rem;
font-weight: 600;
color: var(--ink-light);
}
.contact-meta i {
color: var(--primary);
width: 24px;
margin-right: 12px;
font-size: 1.2rem;
}
.contact-meta a {
color: inherit;
border-bottom: 1px dotted transparent;
}
.contact-meta a:hover {
color: var(--primary);
border-bottom-color: var(--primary);
}
.form-control, .form-select {
border-radius: 20px;
border: 1.5px solid var(--gray-200);
padding: 1rem 1.4rem;
font-weight: 500;
background: var(--white);
transition: var(--transition);
}
.form-control:focus, .form-select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 5px rgba(11,79,108,0.1);
outline: none;
}
/* ---------- FOOTER DE ALTA GAMA ---------- */
footer {
background: #0f1a27;
color: rgba(255,255,255,0.9);
padding: 100px 0 40px;
border-top: 6px solid var(--primary);
}
.footer-brand {
display: flex;
align-items: center;
gap: 1.2rem;
}
.footer-logo {
height: 60px;
width: auto;
filter: brightness(0) invert(1);
}
.footer a {
color: rgba(255,255,255,0.8);
font-weight: 600;
transition: var(--transition);
}
.footer a:hover {
color: var(--accent);
text-decoration: underline;
text-underline-offset: 4px;
}
.footer .fw-bold {
color: white;
font-size: 1.2rem;
letter-spacing: 0.5px;
}
.footer-divider {
border-top: 1px solid rgba(255,255,255,0.1);
margin: 60px 0 30px;
}
/* Utilidad para anclas */
.anchor-offset {
scroll-margin-top: 100px;
}
/* Responsive */
@media (max-width: 768px) {
.section {
padding: 80px 0;
}
.feature-icon-circle {
width: 60px;
height: 60px;
font-size: 1.8rem;
}
.gal-frame {
height: 250px;
}
}
/* ========== BANNER PREMIUM ========== */
.top-banner {
position: relative;
overflow: hidden;
background: var(--primary);
padding: 0;
}
.banner-wrap {
position: relative;
width: 100%;
max-height: 420px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.banner-wrap::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(11,79,108,0.15) 0%,
rgba(11,79,108,0.05) 40%,
rgba(11,79,108,0.25) 100%
);
pointer-events: none;
}
.banner-img {
width: 100%;
height: auto;
max-height: 420px;
object-fit: cover;
object-position: center 40%;
display: block;
transition: transform 8s ease;
transform-origin: center;
}
.top-banner:hover .banner-img {
transform: scale(1.03);
}
.banner-badge {
position: absolute;
bottom: 28px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
display: flex;
gap: 12px;
flex-wrap: wrap;
justify-content: center;
padding: 0 16px;
}
.banner-pill {
background: rgba(255,255,255,0.92);
backdrop-filter: blur(12px);
color: var(--primary);
font-weight: 800;
font-size: 0.82rem;
letter-spacing: 0.3px;
padding: 0.5rem 1.2rem;
border-radius: 60px;
border: 1px solid rgba(255,255,255,0.8);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
display: flex;
align-items: center;
gap: 6px;
white-space: nowrap;
}
.banner-pill i {
color: var(--accent);
}
/* ========== STATS STRIP ========== */
.stats-strip {
background: var(--primary);
padding: 50px 0;
position: relative;
overflow: hidden;
}
.stats-strip::before {
content: '';
position: absolute;
top: -60%;
left: -10%;
width: 50%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
pointer-events: none;
}
.stat-item {
text-align: center;
color: white;
padding: 0 1rem;
}
.stat-number {
font-size: clamp(2.8rem, 5vw, 4.5rem);
font-weight: 900;
letter-spacing: -3px;
line-height: 1;
color: white;
display: block;
}
.stat-number span {
color: var(--accent);
}
.stat-label {
font-size: 0.95rem;
font-weight: 600;
color: rgba(255,255,255,0.75);
margin-top: 6px;
letter-spacing: 0.3px;
}
.stat-divider {
width: 1px;
height: 60px;
background: rgba(255,255,255,0.15);
align-self: center;
}
/* ========== MID-PAGE CTA BANNER ========== */
.cta-banner {
background: linear-gradient(135deg, var(--primary) 0%, #0a3d55 50%, #062e42 100%);
padding: 80px 0;
position: relative;
overflow: hidden;
}
.cta-banner::before {
content: '';
position: absolute;
top: -40%;
right: -10%;
width: 60%;
height: 200%;
background: radial-gradient(circle, rgba(217,146,59,0.12) 0%, transparent 65%);
pointer-events: none;
}
.cta-banner::after {
content: '';
position: absolute;
bottom: -40%;
left: -10%;
width: 50%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
pointer-events: none;
}
.cta-banner h2 {
color: white;
font-size: clamp(2rem, 4vw, 3.2rem);
font-weight: 900;
letter-spacing: -1.5px;
line-height: 1.1;
}
.cta-banner p {
color: rgba(255,255,255,0.78);
font-size: 1.15rem;
font-weight: 500;
}
.cta-accent-line {
width: 60px;
height: 4px;
background: var(--accent);
border-radius: 4px;
margin: 16px 0 20px;
}
.btn-accent-gold {
background: var(--accent);
color: white;
border-color: var(--accent);
font-weight: 800;
}
.btn-accent-gold:hover {
background: #c8832e;
border-color: #c8832e;
color: white;
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(217,146,59,0.4);
}
.btn-outline-white {
background: transparent;
color: white;
border-color: rgba(255,255,255,0.5);
font-weight: 700;
}
.btn-outline-white:hover {
background: rgba(255,255,255,0.1);
border-color: white;
color: white;
transform: translateY(-4px);
}
/* ========== TESTIMONIOS ========== */
.testi-card {
background: var(--white);
border-radius: var(--radius-card);
padding: 2.2rem 2rem;
box-shadow: var(--shadow-sm);
border: 1px solid rgba(0,0,0,0.03);
height: 100%;
transition: var(--transition);
position: relative;
}
.testi-card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-6px);
}
.testi-card::before {
content: '"';
position: absolute;
top: 16px;
right: 24px;
font-size: 6rem;
font-family: Georgia, serif;
color: var(--primary-soft);
line-height: 1;
font-weight: 900;
}
.testi-stars {
color: var(--accent);
font-size: 1rem;
letter-spacing: 2px;
margin-bottom: 1rem;
}
.testi-text {
color: var(--ink-light);
font-weight: 500;
line-height: 1.65;
font-size: 1rem;
margin-bottom: 1.5rem;
}
.testi-author {
display: flex;
align-items: center;
gap: 0.8rem;
}
.testi-avatar {
width: 46px;
height: 46px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-soft), var(--primary));
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 900;
font-size: 1.1rem;
flex-shrink: 0;
}
.testi-name {
font-weight: 800;
font-size: 0.95rem;
color: var(--ink);
}
.testi-location {
font-size: 0.82rem;
color: var(--gray-400);
font-weight: 600;
}
/* ========== PROCESS STEPS ENHANCED ========== */
.step-number-badge {
width: 56px;
height: 56px;
border-radius: 18px;
background: var(--primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
font-weight: 900;
margin: 0 auto 1.2rem;
box-shadow: 0 12px 30px rgba(11,79,108,0.3);
transition: var(--transition);
}
.card-soft:hover .step-number-badge {
transform: rotate(-4deg) scale(1.08);
box-shadow: 0 16px 35px rgba(11,79,108,0.4);
}
/* ========== ENHANCED FOOTER ========== */
.footer-logo {
max-width: 150px;
height: auto;
display: block;
filter: none;
}
/* ========== SCROLL ANIMATIONS (AOS) ==========
Nota: antes se deshabilitaban los pointer-events para elementos con data-aos.
Si AOS no está cargado/ejecutando, eso deja inputs y links "muertos" (no se puede clickear/escribir).
Lo dejamos siempre interactivo. */
[data-aos] { pointer-events: auto; }
[data-aos].aos-animate { pointer-events: auto; }
/* ========== RESPONSIVE BANNER ========== */
@media (max-width: 768px) {
.banner-wrap { max-height: 260px; }
.banner-img { max-height: 260px; }
.banner-badge { bottom: 14px; gap: 8px; }
.banner-pill { font-size: 0.76rem; padding: 0.4rem 0.9rem; }
.stat-divider { display: none; }
.stats-strip .d-flex { flex-wrap: wrap; gap: 2.5rem; }
.stat-item { min-width: 40%; }
}
/* ========== FIX MOBILE OVERFLOW + NAVBAR COLLAPSE ========== */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; height: auto; }
/* Evita que el logo/texto empujen el hamburguesa fuera de pantalla */
.navbar .container { flex-wrap: nowrap; }
.navbar-brand { min-width: 0; max-width: calc(100% - 72px); }
.brand-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: inline-block; }
/* Toggler siempre visible y alineado a la derecha */
.navbar-toggler { margin-left: auto; }
/* Menú mobile prolijo + sin overflow */
@media (max-width: 991.98px) {
.navbar-collapse {
margin-top: 10px;
padding: 10px;
border-radius: 18px;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(14px) saturate(180%);
-webkit-backdrop-filter: blur(14px) saturate(180%);
box-shadow: 0 20px 45px rgba(0,0,0,0.08);
border: 1px solid rgba(0,0,0,0.05);
}
.navbar-nav { gap: 6px !important; }
.nav-link { width: 100%; }
}
/* ===== INLINE <style> BLOCK #2 ===== */
.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)}
}
/* ===== INLINE <style> BLOCK #3 ===== */
:root{
--wa:#25D366;
--wa-dark:#1fb85a;
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#1c1f1d;
--muted-text:#6c756f;
}
/* IG button (arriba) */
.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){
.ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}
/* ========== MOBILE TUNING (BANNER + STATS STRIP) ========== */
@media (max-width: 576px) {
/* Banner más grande en phone (sin estirar: mantiene proporción) */
.banner-wrap { max-height: 320px; }
.banner-img { width: 100%; height: auto; max-height: 320px; object-fit: cover; object-position: center 35%; }
/* Pills un poco más compactas */
.banner-badge { bottom: 12px; gap: 8px; }
.banner-pill { font-size: 0.74rem; padding: 0.38rem 0.85rem; }
/* Stats strip más ajustado */
.stats-strip { padding: 22px 0; }
.stats-strip .d-flex { gap: 14px !important; }
.stat-item { padding: 0 0.35rem; min-width: 46%; }
.stat-number { font-size: clamp(1.7rem, 7vw, 2.4rem); letter-spacing: -1.5px; }
.stat-label { font-size: 0.78rem; margin-top: 4px; }
}
/* Ajuste general mobile (hasta 768px): menos aire en stats */
@media (max-width: 768px) {
.stats-strip { padding: 30px 0; }
.stats-strip .d-flex { gap: 18px; }
.stat-number { letter-spacing: -2px; }
}