Preview de mixed.css
/* MIXED CSS PACK */
/* Template: sistecsolucionessl.com.ar/index.html */
/* Template mtime: 2025-09-09 17:17:51 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
@font-face {
font-family: 'AvertaStdPE';
src: url('fonts/AvertaStdPE-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
:root {
/* PALETA MEJORADA */
--brand-primary: #008cbf; /* naranja principal */
--brand-secondary: #011b65; /* azul moderno */
--brand-accent: #011b65; /* verde azulado */
--brand-dark: #e45a2a;
--text-dark: #1A1D21; /* textos fuertes */
--text-body: #2A2E34; /* cuerpo */
--text-muted: #6B7280; /* gris */
--bg-primary: #FFFFFF; /* fondo principal */
--bg-secondary: #F7F9FC; /* fondo secundario */
--bg-dark: #0F172A; /* fondo oscuro */
--card-bg: #FFFFFF; /* tarjetas */
--border-light: #E5E7EB; /* bordes claros */
--border-medium: #D1D5DB; /* bordes medios */
/* Efectos y sombras */
--shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
--shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
--shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.05);
/* Gradientes */
--gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
--gradient-secondary: linear-gradient(135deg, var(--brand-secondary) 0%, #5271FF 100%);
--gradient-accent: linear-gradient(135deg, var(--brand-accent) 0%, #00B389 100%);
--gradient-hero: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(45,91,255,0.08) 100%);
/* Ticker */
--tile-size: 320px;
--tile-radius: 16px;
--gap: 20px;
--font-heading: 'AvertaStdPE', sans-serif;
--font-body: 'AvertaStdPE', sans-serif;
}
/* Base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
font-family: var(--font-body);
background: var(--bg-primary);
color: var(--text-body);
scroll-behavior: smooth;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
color: var(--text-dark);
}
a {
color: var(--brand-primary);
text-decoration: none;
transition: all 0.3s ease;
}
a:hover {
color: var(--brand-dark);
}
.section {
padding: 100px 0;
position: relative;
}
.section-title {
position: relative;
margin-bottom: 3rem;
}
.section-title:after {
content: '';
position: absolute;
left: 0;
bottom: -12px;
width: 60px;
height: 4px;
background: var(--gradient-primary);
border-radius: 2px;
}
.section-title.center:after {
left: 50%;
transform: translateX(-50%);
}
/* Navbar mejorada */
.navbar {
background: rgba(255, 255, 255, 0.95) !important;
backdrop-filter: blur(10px);
box-shadow: var(--shadow-md);
padding: 12px 0;
transition: all 0.3s ease;
}
.navbar.scrolled {
padding: 8px 0;
}
.navbar .nav-link {
color: var(--text-dark) !important;
font-weight: 500;
position: relative;
padding: 0.5rem 1rem !important;
transition: all 0.3s ease;
}
.navbar .nav-link:before {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 50%;
background: var(--gradient-primary);
transition: all 0.3s ease;
transform: translateX(-50%);
}
.navbar .nav-link:hover:before,
.navbar .nav-link.active:before {
width: 70%;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
color: var(--brand-primary) !important;
}
.navbar-brand {
font-weight: 800;
font-size: 1.8rem;
color: var(--text-dark) !important;
}
.navbar-brand span {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Hero section mejorada */
.hero {
padding-top: 130px;
padding-bottom: 80px;
background: var(--gradient-hero);
position: relative;
overflow: hidden;
}
.hero:before {
content: '';
position: absolute;
width: 600px;
height: 600px;
border-radius: 50%;
background: rgba(255, 107, 53, 0.1);
filter: blur(80px);
top: -300px;
right: -300px;
z-index: 0;
}
.hero:after {
content: '';
position: absolute;
width: 500px;
height: 500px;
border-radius: 50%;
background: rgba(45, 91, 255, 0.1);
filter: blur(80px);
bottom: -250px;
left: -250px;
z-index: 0;
}
.hero-content {
position: relative;
z-index: 2;
}
.badge-soft {
background: rgba(255, 107, 53, 0.12);
border: 1px solid rgba(255, 107, 53, 0.35);
color: #7a3c28;
border-radius: 999px;
padding: 8px 16px;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 8px;
backdrop-filter: blur(4px);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}
.hero h1 {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--text-dark) 0%, var(--brand-primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p.lead {
font-size: 1.25rem;
margin-bottom: 2rem;
color: var(--text-body);
}
/* Cards / bloques mejorados */
.card-soft {
background: var(--card-bg);
border: 1px solid var(--border-light);
border-radius: 20px;
box-shadow: var(--shadow-lg);
transition: all 0.3s ease;
overflow: hidden;
height: 100%;
}
.card-soft:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
border-color: rgba(255, 107, 53, 0.2);
}
.icon-pill {
width: 60px;
height: 60px;
border-radius: 16px;
background: rgba(255, 107, 53, 0.1);
color: var(--brand-primary);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.card-soft:hover .icon-pill {
background: var(--gradient-primary);
color: white;
transform: scale(1.05);
}
/* Destacado Kit mejorado */
.highlight {
border: 1px solid var(--border-light);
border-radius: 20px;
box-shadow: var(--shadow-lg);
overflow: hidden;
background: var(--card-bg);
transition: all 0.3s ease;
}
.highlight:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.highlight .img-wrap {
border-radius: 12px;
overflow: hidden;
background: #fafafa;
position: relative;
}
.highlight .img-wrap:before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
z-index: 1;
}
/* Ticker/Galería mejorado */
.ticker {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
.ticker-track {
display: flex;
gap: var(--gap);
transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ticker-item {
flex: 0 0 auto;
width: min(var(--tile-size), 92vw);
height: min(var(--tile-size), 92vw);
border-radius: var(--tile-radius);
overflow: hidden;
background: #fff;
border: 1px solid var(--border-light);
box-shadow: var(--shadow-md);
display: grid;
place-items: center;
transition: all 0.3s ease;
}
.ticker-item:hover {
transform: scale(1.03);
box-shadow: var(--shadow-lg);
}
.ticker-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.ticker-controls {
position: absolute;
inset: 0;
pointer-events: none;
}
.btn-ctrl {
pointer-events: auto;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid var(--border-light);
background: var(--card-bg);
color: var(--text-dark);
box-shadow: var(--shadow-lg);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
z-index: 10;
}
.btn-ctrl:hover {
background: var(--gradient-primary);
color: white;
border-color: transparent;
transform: translateY(-50%) scale(1.1);
}
.btn-prev {
left: -25px;
}
.btn-next {
right: -25px;
}
.ticker-dots {
display: flex;
gap: 8px;
justify-content: center;
margin-top: 30px;
}
.ticker-dots button {
width: 12px;
height: 12px;
border-radius: 999px;
border: 0;
background: var(--border-medium);
transition: all 0.3s ease;
}
.ticker-dots button.active {
background: var(--gradient-primary);
transform: scale(1.2);
}
/* Formularios mejorados */
.form-control, .form-select {
background: #fff;
border: 1px solid var(--border-medium);
border-radius: 10px;
padding: 12px 16px;
font-size: 1rem;
transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
border-color: var(--brand-primary);
box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}
.btn {
border-radius: 10px;
padding: 12px 24px;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn-brand {
background: var(--gradient-primary);
border: none;
color: #fff;
position: relative;
overflow: hidden;
}
.btn-brand: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: all 0.6s ease;
}
.btn-brand:hover:before {
left: 100%;
}
.btn-brand:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}
.btn-outline {
border: 2px solid var(--brand-primary);
color: var(--brand-primary);
background: transparent;
}
.btn-outline:hover {
background: var(--brand-primary);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}
.btn-lg {
padding: 14px 28px;
font-size: 1.1rem;
}
/* Footer mejorado */
footer {
background: var(--bg-dark);
color: #CBD5E1;
padding: 80px 0 40px;
}
footer h5 {
color: white;
margin-bottom: 1.5rem;
font-weight: 600;
}
footer a {
color: #CBD5E1;
transition: all 0.3s ease;
}
footer a:hover {
color: white;
padding-left: 5px;
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 30px;
margin-top: 60px;
}
/* Toasts mejorados */
.toast-container {
position: fixed;
top: 100px;
right: 20px;
z-index: 1080;
}
.toast {
border-radius: 12px;
box-shadow: var(--shadow-xl);
border: none;
}
/* Imágenes de marcador de posición mejoradas */
.placeholder-img {
background: linear-gradient(45deg, #f0f0f0 25%, #e0e0e0 25%, #e0e0e0 50%, #f0f0f0 50%, #f0f0f0 75%, #e0e0e0 75%, #e0e0e0 100%);
background-size: 20px 20px;
display: flex;
align-items: center;
justify-content: center;
color: #999;
font-size: 16px;
text-align: center;
padding: 20px;
width: 100%;
height: 100%;
font-weight: 500;
}
/* Animaciones y efectos */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
/* Mejoras responsivas */
@media (max-width: 992px) {
.hero h1 {
font-size: 2.8rem;
}
.section {
padding: 80px 0;
}
}
@media (max-width: 768px) {
.hero {
padding-top: 110px;
padding-bottom: 60px;
}
.hero h1 {
font-size: 2.3rem;
}
.display-5 {
font-size: 2.2rem;
}
.section {
padding: 60px 0;
}
.ticker {
padding: 0 20px;
}
.btn-ctrl {
width: 40px;
height: 40px;
}
.btn-prev {
left: -15px;
}
.btn-next {
right: -15px;
}
}
@media (max-width: 576px) {
.hero h1 {
font-size: 2rem;
}
.hero p.lead {
font-size: 1.1rem;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* Overrides mínimos: logo redondo, sin romper estilos existentes */
.navbar-brand img,
img.logo-round,
img[alt*="logo" i],
img[src*="logo"] {
border-radius: 50% !important;
object-fit: cover;
}
/* ===== INLINE <style> BLOCK #3 ===== */
/* === Ticker sin recorte: la imagen manda, centrada y responsiva === */
:root { --tile-h: 360px; } /* alto base del tile en desktop */
.ticker-track { gap: 18px; }
.ticker-item {
flex: 0 0 auto;
width: clamp(240px, 30vw, 520px); /* ancho fluido */
height: var(--tile-h); /* alto fijo para que no “salte” el carrusel */
border: 1px solid var(--border-light);
border-radius: 16px;
background: #fff;
box-shadow: var(--shadow-md);
display: flex; /* centrado perfecto */
align-items: center;
justify-content: center;
padding: 10px;
overflow: visible; /* ¡nada de cortar! */
}
.ticker-item img {
max-width: 100%;
max-height: 100%;
width: auto; /* mantiene proporción original */
height: auto; /* mantiene proporción original */
object-fit: contain; /* sin recorte */
display: block;
}
/* Responsivo: ajustá la altura del tile por breakpoint */
@media (max-width: 992px) {
:root { --tile-h: 300px; }
.ticker-item { width: clamp(220px, 44vw, 460px); }
}
@media (max-width: 576px) {
:root { --tile-h: 56vh; } /* más alto en phone para formatos verticales */
.ticker { padding: 0 12px; }
.ticker-item { width: 88vw; }
}
/* Botones cómodos en phone */
.btn-ctrl { width: 46px; height: 46px; }
@media (max-width: 576px) {
.btn-ctrl { width: 40px; height: 40px; }
.btn-prev { left: -6px; }
.btn-next { right: -6px; }
}
/* ===== INLINE <style> BLOCK #4 ===== */
/* FAQs rediseño */
.fancy-accordion .accordion-item {
border: 1px solid var(--border-light);
border-radius: 14px;
background: #fff;
box-shadow: var(--shadow-md);
overflow: hidden;
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
margin-bottom: 14px;
}
.fancy-accordion .accordion-item:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
border-color: rgba(255,107,53,.25);
}
.fancy-accordion .accordion-button {
gap: 10px;
padding: 16px 18px;
font-weight: 600;
background: #fff;
}
.fancy-accordion .accordion-button:not(.collapsed) {
color: var(--text-dark);
background: linear-gradient(180deg, #fff, #fff);
box-shadow: inset 0 -1px 0 rgba(0,0,0,.03);
}
.fancy-accordion .accordion-button:focus { box-shadow: none; }
.fancy-accordion .accordion-body { padding: 0 18px 16px 56px; color: var(--text-body); }
.fancy-accordion .qa-icon {
width: 28px; height: 28px;
border-radius: 8px;
display: inline-grid; place-items: center;
background: rgba(255,107,53,.12);
color: var(--brand-primary);
flex: 0 0 auto;
}
.fancy-accordion .chev {
margin-left: auto;
transition: transform .25s ease;
color: var(--text-muted);
font-size: 1rem;
}
.fancy-accordion .accordion-button:not(.collapsed) .chev {
transform: rotate(45deg); /* plus -> x */
color: var(--brand-primary);
}
/* ===== INLINE <style> BLOCK #5 ===== */
.social-float {
position: fixed;
right: 20px;
bottom: 20px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 1050;
}
.btn-float {
width: 52px;
height: 52px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.4rem;
text-decoration: none;
box-shadow: 0 6px 16px rgba(0,0,0,0.25);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-float:hover {
transform: translateY(-4px) scale(1.05);
box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.btn-float.whatsapp { background: #25d366; }
.btn-float.instagram {
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.btn-float.facebook { background: #1877f2; }