Preview de mixed.css
/* MIXED CSS PACK */
/* Template: servitecc.com.ar/index.html */
/* Template mtime: 2025-09-22 15:18:56 */
/* 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=Poppins:wght@300;400;500;600;700;800;900&display=swap */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--primary: #0a56c2;
--primary-dark: #0845a0;
--secondary: #e10600;
--accent: #ff6b35;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--gray-light: #e2e8f0;
--success: #10b981;
--card-bg: #ffffff;
--gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
--gradient-light: linear-gradient(135deg, rgba(10,86,194,0.05) 0%, rgba(225,6,0,0.05) 100%);
--shadow: 0 10px 30px rgba(0,0,0,0.08);
--shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
--radius: 16px;
--radius-lg: 24px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--dark);
background-color: var(--light);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}
.container {
max-width: 1200px;
}
/* ====== Navbar ====== */
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
padding: 1rem 0;
transition: all 0.3s ease;
}
.navbar.scrolled {
padding: 0.5rem 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.navbar-brand {
font-weight: 900;
font-size: 1.8rem;
color: var(--primary);
display: flex;
align-items: center;
}
.navbar-brand b {
color: var(--secondary);
}
.navbar-brand .logo-icon {
background: var(--gradient);
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
color: white;
}
.nav-link {
font-weight: 500;
color: var(--dark);
position: relative;
padding: 0.5rem 1rem !important;
transition: color 0.3s ease;
}
.nav-link:hover {
color: var(--primary);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--gradient);
transition: all 0.3s ease;
transform: translateX(-50%);
}
.nav-link:hover::after {
width: 70%;
}
.btn-wa {
background: #25D366;
color: white;
border-radius: 50px;
padding: 0.6rem 1.2rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
background: #1da851;
color: white;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
/* ====== Hero ====== */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
color: white;
background: linear-gradient(135deg, rgba(10,86,194,0.85) 0%, rgba(225,6,0,0.8) 100%), url('img/hero-electronica.jpg') center/cover no-repeat;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
z-index: 0;
}
.hero-content {
position: relative;
z-index: 2;
padding: 4rem 0;
}
.hero h1 {
font-weight: 900;
line-height: 1.1;
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 1.5rem;
}
.hero .lead {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
max-width: 600px;
}
.hero-badge {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
border-radius: 50px;
padding: 0.5rem 1.2rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 2rem;
}
.hero-badge i {
color: #ffd700;
}
.hero-btns {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 2rem;
}
.btn-primary-custom {
background: white;
color: var(--primary);
border: none;
border-radius: 50px;
padding: 0.8rem 1.8rem;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.btn-primary-custom:hover {
background: var(--light);
color: var(--primary-dark);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}
.btn-secondary-custom {
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
color: white;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50px;
padding: 0.8rem 1.8rem;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
}
.btn-secondary-custom:hover {
background: rgba(255, 255, 255, 0.3);
color: white;
transform: translateY(-3px);
}
.hero-info {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
opacity: 0.9;
}
/* ===== Sections ===== */
.section {
padding: 6rem 0;
}
.section-title {
font-weight: 800;
font-size: 2.5rem;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--gradient);
border-radius: 2px;
}
.section-sub {
color: var(--gray);
font-size: 1.1rem;
max-width: 700px;
margin-bottom: 3rem;
}
/* ===== Cards ===== */
.card-custom {
background: var(--card-bg);
border: none;
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
transition: all 0.3s ease;
height: 100%;
overflow: hidden;
}
.card-custom:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.icon-badge {
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 18px;
background: var(--gradient-light);
color: var(--primary);
font-size: 1.8rem;
margin-bottom: 1.5rem;
}
/* ===== Ticker / Carrusel ===== */
.ticker-section {
background: var(--gradient-light);
position: relative;
overflow: hidden;
}
.ticker-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230a56c2' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
z-index: 0;
}
.ticker-wrap {
position: relative;
border-radius: var(--radius-lg);
background: white;
padding: 2rem;
box-shadow: var(--shadow-lg);
z-index: 1;
}
.ticker-viewport {
overflow: hidden;
position: relative;
border-radius: 12px;
}
.ticker-track {
display: flex;
gap: 1rem;
align-items: center;
transition: transform 0.5s ease;
}
.ticker-item {
flex: 0 0 auto;
width: 300px;
height: 300px;
background: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.ticker-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.ticker-item:hover img {
transform: scale(1.05);
}
.ticker-controls {
position: absolute;
top: 50%;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 1rem;
pointer-events: none;
transform: translateY(-50%);
z-index: 2;
}
.ticker-controls .btn-ctl {
pointer-events: auto;
width: 50px;
height: 50px;
border-radius: 50%;
background: white;
display: flex;
align-items: center;
justify-content: center;
border: none;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
color: var(--primary);
}
.ticker-controls .btn-ctl:hover {
background: var(--primary);
color: white;
transform: scale(1.1);
}
.ticker-dots {
display: flex;
gap: 0.5rem;
justify-content: center;
margin-top: 1.5rem;
}
.ticker-dots button {
width: 12px;
height: 12px;
border-radius: 50%;
border: none;
background: var(--gray-light);
transition: all 0.3s ease;
}
.ticker-dots button.active {
background: var(--primary);
transform: scale(1.2);
}
/* ===== Contacto ===== */
.contact-form {
background: white;
border-radius: var(--radius-lg);
padding: 2.5rem;
box-shadow: var(--shadow);
height: 100%;
}
.form-control, .form-select {
border-radius: 10px;
border: 1px solid var(--gray-light);
padding: 0.75rem 1rem;
transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(10, 86, 194, 0.1);
}
.btn-brand {
background: var(--gradient);
border: none;
color: white;
border-radius: 50px;
padding: 0.8rem 1.8rem;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(10, 86, 194, 0.3);
}
.btn-brand:hover {
background: var(--primary-dark);
color: white;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(10, 86, 194, 0.4);
}
.btn-ghost {
border: 1px solid var(--gray-light);
background: white;
color: var(--dark);
border-radius: 50px;
padding: 0.8rem 1.8rem;
font-weight: 600;
transition: all 0.3s ease;
}
.btn-ghost:hover {
border-color: var(--primary);
color: var(--primary);
transform: translateY(-2px);
}
.floating-wa {
position: fixed;
right: 2rem;
bottom: 2rem;
z-index: 1000;
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: #25D366;
color: white;
padding: 0.8rem 1.5rem;
border-radius: 50px;
box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.floating-wa:hover {
color: white;
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}
.floating-wa::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50px;
background: #25D366;
z-index: -1;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.7;
}
100% {
transform: scale(1);
opacity: 1;
}
}
/* ===== Footer ===== */
.footer {
background: var(--dark);
color: #cbd5e1;
padding: 4rem 0 2rem;
}
.footer a {
color: #cbd5e1;
text-decoration: none;
transition: color 0.3s ease;
}
.footer a:hover {
color: white;
text-decoration: underline;
}
.footer-title {
font-weight: 700;
font-size: 1.5rem;
margin-bottom: 1.5rem;
}
.footer-title span {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-bottom {
border-top: 1px solid #334155;
padding-top: 2rem;
margin-top: 3rem;
text-align: center;
font-size: 0.9rem;
color: #94a3b8;
}
/* ===== Animaciones ===== */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
.section {
padding: 4rem 0;
}
.section-title {
font-size: 2rem;
}
.hero-btns {
flex-direction: column;
align-items: flex-start;
}
.ticker-item {
width: 250px;
height: 250px;
}
.floating-wa {
right: 1rem;
bottom: 1rem;
padding: 0.7rem 1.2rem;
font-size: 0.9rem;
}
}
@media (max-width: 576px) {
.navbar-brand {
font-size: 1.5rem;
}
.hero h1 {
font-size: 2rem;
}
.hero .lead {
font-size: 1rem;
}
.ticker-item {
width: 200px;
height: 200px;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* === Mobile-first hero order & overflow fix === */
.hero .col-text { order: 1; }
.hero .col-img { order: 2; }
.hero .col-img img { max-width: 100%; height: auto; display: block; }
@media (min-width: 992px) {
.hero .col-text { order: 1; } /* keep text first or adjust to 1/2 as needed */
.hero .col-img { order: 2; }
}
html, body { overflow-x: hidden; }
/* ===== INLINE <style> BLOCK #3 ===== */
/* === Mobile navbar overlap fix === */
@media (max-width: 991.98px) {
header.hero { padding-top: 96px; } /* fallback for fixed/top navbars */
}
/* ===== INLINE <style> BLOCK #4 ===== */
.logo-img{
height: 32px; /* probá 28–40px según tu navbar */
width: auto;
display: block;
}
/* ===== INLINE <style> BLOCK #5 ===== */
/* Hero con imagen derecha */
.hero { position: relative; overflow: hidden; }
.hero-figure {
position: relative;
max-width: 520px;
margin: 0 auto;
border-radius: 24px;
background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
box-shadow: 0 24px 60px rgba(0,0,0,.18);
padding: 10px;
}
.hero-img {
display: block;
width: 100%;
height: auto;
border-radius: 18px;
}
/* Detalle decorativo sutil detrás de la imagen */
.hero-figure::after {
content: "";
position: absolute;
inset: -12% -8% auto auto;
height: 60%;
width: 60%;
background: radial-gradient(closest-side, rgba(255,193,7,.25), transparent 65%);
filter: blur(12px);
z-index: -1;
}
/* Ajustes para títulos grandes que ya tengas */
.hero h1 { line-height: 1.15; }
/* Responsivo */
@media (max-width: 991.98px){
.hero-figure { max-width: 420px; }
}
@media (max-width: 575.98px){
.hero-figure { max-width: 100%; padding: 8px; }
}
/* ===== INLINE <style> BLOCK #6 ===== */
.floating-actions{
position:fixed; right:20px; bottom:20px; z-index:9999;
display:flex; flex-direction:column; gap:12px;
}
.fab{
--size:56px;
width:var(--size); height:var(--size);
border-radius:999px; display:flex; align-items:center; justify-content:center;
color:#fff; text-decoration:none; box-shadow:0 12px 28px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.12);
position:relative; transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
font-size:24px; /* Tamaño del icono */
}
.fab:focus{ outline:none; box-shadow:0 0 0 3px rgba(255,255,255,.6), 0 12px 28px rgba(0,0,0,.22)}
.fab:hover{ transform: translateY(-2px); filter: brightness(1.05) }
.fab:active{ transform: translateY(0) scale(.98) }
.fab-wa{ background:#25D366; animation:pulse 2.2s infinite; }
.fab-fb{ background:#1877F2; }
.fab-ig{
background: radial-gradient(30% 30% at 30% 110%, #FED373 0%, transparent 60%),
radial-gradient(40% 40% at 0% 0%, #FCAF45 0%, transparent 60%),
radial-gradient(60% 60% at 100% 0%, #F56040 0%, transparent 70%),
linear-gradient(45deg, #833AB4, #C13584 60%, #E1306C);
}
.fab-label{
position:absolute; right:calc(100% + 10px); top:50%; transform:translateY(-50%);
background:rgba(17,17,17,.92); color:#fff; padding:6px 10px; border-radius:10px;
font-size:.85rem; white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease;
box-shadow:0 6px 16px rgba(0,0,0,.25);
backdrop-filter: blur(4px);
}
.fab:hover .fab-label, .fab:focus .fab-label{
opacity:1; transform:translate(-2px,-50%);
}
@keyframes pulse{
0%{ box-shadow:0 0 0 0 rgba(37,211,102,.45) }
70%{ box-shadow:0 0 0 14px rgba(37,211,102,0) }
100%{ box-shadow:0 0 0 0 rgba(37,211,102,0) }
}
/* Mobile */
@media (max-width: 575.98px){
.floating-actions{ right:14px; bottom:14px; gap:10px; }
.fab{ --size:52px; font-size:22px; }
.fab-label{ display:none; }
}
@media (prefers-reduced-motion: reduce){
.fab, .fab *{ animation:none !important; transition:none !important; }
}