Preview de mixed.css
/* MIXED CSS PACK */
/* Template: transportesarmiento.com.ar/index.html */
/* Template mtime: 2026-01-19 18:48:07 */
/* 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.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--brand: #e30709;
--brand-light: rgba(227, 7, 9, 0.1);
--brand-dark: #c20608;
--ink: #0b1220;
--ink-light: rgba(11, 18, 32, 0.7);
--light-bg: #f8fafc;
--card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
--card-hover-shadow: 0 30px 60px rgba(227, 7, 9, 0.15);
--transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
/* ✅ FIX: evitar scroll horizontal en mobile (hamburguesa fuera de pantalla) */
html, body { width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img, svg { max-width: 100%; height: auto; }
body {
color: var(--ink);
background: #fff;
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
overflow-x: hidden;
}
/* Smooth Scrolling */
html {
scroll-behavior: smooth;
scroll-padding-top: 90px;
}
/* Navbar Premium */
.navbar {
backdrop-filter: blur(20px) saturate(180%);
background: rgba(255, 255, 255, 0.92) !important;
border-bottom: 1px solid rgba(227, 7, 9, 0.08);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
transition: var(--transition);
padding-top: 0.8rem;
padding-bottom: 0.8rem;
}
/* ✅ FIX: que el brand NO empuje la hamburguesa fuera */
.navbar > .container { flex-wrap: nowrap; }
.navbar-brand {
min-width: 0;
flex: 1 1 auto;
font-weight: 800;
font-size: 1.6rem;
background: linear-gradient(135deg, var(--brand) 0%, #ff2e2e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -0.5px;
}
.navbar-brand .brand-text{
display:block;
min-width:0;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
font-size: 0.95rem;
font-weight: 700;
}
.navbar-brand .brand-logo {
height: 32px;
width: auto;
flex: 0 0 auto;
}
@media (max-width: 576px){
.navbar-brand .brand-text{ max-width: 190px; }
}
@media (max-width: 380px){
.navbar-brand .brand-text{ max-width: 150px; }
}
.nav-link {
font-weight: 500;
position: relative;
padding: 0.5rem 1rem !important;
color: var(--ink) !important;
transition: var(--transition);
}
.nav-link:after {
content: '';
position: absolute;
bottom: 0;
left: 1rem;
right: 1rem;
height: 2px;
background: var(--brand);
transform: scaleX(0);
transition: transform 0.3s ease;
border-radius: 2px;
}
.nav-link:hover:after,
.nav-link.active:after {
transform: scaleX(1);
}
.navbar-toggler {
flex: 0 0 auto;
border: 1px solid rgba(227, 7, 9, 0.2);
padding: 0.4rem 0.7rem;
}
.navbar-toggler:focus {
box-shadow: 0 0 0 3px rgba(227, 7, 9, 0.1);
}
/* Hero Section Premium */
.hero {
padding: 100px 0 80px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #fef7f7 0%, #ffffff 50%, #f8fafc 100%);
}
.hero:before {
content: '';
position: absolute;
width: 600px;
height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(227, 7, 9, 0.08) 0%, rgba(227, 7, 9, 0) 70%);
top: -300px;
right: -200px;
z-index: 0;
pointer-events:none;
}
.hero:after {
content: '';
position: absolute;
width: 400px;
height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(227, 7, 9, 0.05) 0%, rgba(227, 7, 9, 0) 70%);
bottom: -200px;
left: -100px;
z-index: 0;
pointer-events:none;
}
.hero-content {
position: relative;
z-index: 2;
}
.eyebrow {
display: inline-block;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
font-size: 0.8rem;
color: var(--brand);
background: var(--brand-light);
padding: 0.5rem 1.2rem;
border-radius: 50px;
margin-bottom: 1.5rem;
border: 1px solid rgba(227, 7, 9, 0.15);
}
.hero-title {
font-size: clamp(2.5rem, 5vw, 3.8rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #0b1220 0%, #1a1f36 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-subtitle {
font-size: 1.2rem;
color: var(--ink-light);
line-height: 1.6;
margin-bottom: 2.5rem;
max-width: 600px;
}
.hero-img-container {
position: relative;
border-radius: 24px;
overflow: visible;
transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.15),
0 0 0 1px rgba(255, 255, 255, 0.1);
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.hero-img-container:hover {
transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
box-shadow:
0 35px 70px rgba(227, 7, 9, 0.2),
0 0 0 1px rgba(255, 255, 255, 0.1);
}
.hero-img {
width: 100%;
height: auto;
max-height: 480px;
object-fit: contain;
display: block;
}
.floating-badge{
position: absolute;
bottom: 16px;
left: 16px;
padding: 10px 12px;
border-radius: 14px;
transform: scale(.9);
transform-origin: bottom left;
}
.floating-badge .icon-pill{
width: 30px;
height: 30px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
}
.floating-badge .icon-pill i{ font-size: 16px; }
.floating-badge .fw-bold{
font-size: 13px;
line-height: 1.1;
margin: 0;
}
.floating-badge .small{
font-size: 11px;
line-height: 1.1;
}
@media (max-width: 991.98px){
/* ✅ FIX: el transform del hero puede generar overflow lateral en algunos phones */
.hero-img-container{ transform:none; }
.hero-img-container{ padding-bottom: 64px; }
.floating-badge{
left: 50%;
right: auto;
bottom: -18px;
transform: translateX(-50%);
padding: 12px 14px;
border-radius: 16px;
}
.floating-badge .icon-pill{ width: 34px; height: 34px; }
.floating-badge .icon-pill i{ font-size: 18px; }
.floating-badge .fw-bold{ font-size: 14px; line-height: 1.15; }
.floating-badge .small{ font-size: 12px; line-height: 1.15; }
}
@media (min-width: 992px){
.floating-badge{
left: 16px;
bottom: 16px;
transform: none;
}
}
/* Botones Premium */
.btn {
border-radius: 12px;
font-weight: 600;
padding: 0.875rem 2rem;
transition: var(--transition);
position: relative;
overflow: hidden;
border: none;
}
.btn:before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.7s;
}
.btn:hover:before { left: 100%; }
.btn-primary {
background: linear-gradient(135deg, var(--brand) 0%, #ff2e2e 100%);
border: none;
color: white;
box-shadow: 0 10px 25px rgba(227, 7, 9, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(227, 7, 9, 0.4);
}
.btn-outline-primary {
background: transparent;
border: 2px solid var(--brand);
color: var(--brand);
}
.btn-outline-primary:hover {
background: var(--brand);
color: white;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(227, 7, 9, 0.2);
}
.btn-whatsapp {
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
border: none;
color: white;
font-weight: 600;
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
color: white;
}
/* Secciones */
.section {
padding: 100px 0;
position: relative;
}
.section-title {
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
line-height: 1.2;
margin-bottom: 1rem;
background: linear-gradient(135deg, #0b1220 0%, #1a1f36 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--ink-light);
line-height: 1.6;
max-width: 700px;
margin: 0 auto 3rem;
}
.bg-light {
background: var(--light-bg);
position: relative;
}
.bg-light:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(227, 7, 9, 0.2), transparent);
}
/* Cards Premium */
.card-soft {
border: none;
border-radius: 20px;
background: white;
box-shadow: var(--card-shadow);
transition: var(--transition);
overflow: hidden;
height: 100%;
position: relative;
}
.card-soft:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--brand), #ff2e2e);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.5s ease;
}
.card-soft:hover {
transform: translateY(-10px);
box-shadow: var(--card-hover-shadow);
}
.card-soft:hover:before { transform: scaleX(1); }
.card-soft .card-body { padding: 2rem; }
/* Iconos Premium */
.icon-pill {
width: 60px;
height: 60px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 16px;
background: linear-gradient(135deg, var(--brand-light) 0%, rgba(255, 46, 46, 0.1) 100%);
color: var(--brand);
flex: 0 0 auto;
font-size: 1.5rem;
transition: var(--transition);
border: 1px solid rgba(227, 7, 9, 0.1);
}
.card-soft:hover .icon-pill {
transform: scale(1.1) rotate(5deg);
background: linear-gradient(135deg, var(--brand) 0%, #ff2e2e 100%);
color: white;
box-shadow: 0 10px 20px rgba(227, 7, 9, 0.2);
}
/* Features Grid */
.feature-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.2rem;
background: white;
border-radius: 16px;
border: 1px solid rgba(227, 7, 9, 0.08);
transition: var(--transition);
}
.feature-item:hover {
border-color: rgba(227, 7, 9, 0.3);
box-shadow: 0 10px 25px rgba(227, 7, 9, 0.1);
transform: translateX(5px);
}
/* Accordion Premium */
.accordion-item {
border: none;
border-radius: 16px !important;
margin-bottom: 1rem;
overflow: hidden;
background: white;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.accordion-button {
background: white;
border: none;
padding: 1.5rem;
font-weight: 600;
font-size: 1.1rem;
border-radius: 16px !important;
color: var(--ink);
}
.accordion-button:not(.collapsed) {
background: var(--brand-light);
color: var(--brand);
box-shadow: none;
}
.accordion-button:focus {
box-shadow: none;
border-color: rgba(227, 7, 9, 0.3);
}
.accordion-button:after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e30709'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
padding: 1.5rem;
color: var(--ink-light);
line-height: 1.7;
border-top: 1px solid rgba(227, 7, 9, 0.1);
}
/* Formulario Premium */
.form-control, .form-select {
border: 2px solid rgba(227, 7, 9, 0.1);
border-radius: 12px;
padding: 0.875rem 1.25rem;
transition: var(--transition);
background: rgba(255, 255, 255, 0.9);
}
.form-control:focus, .form-select:focus {
border-color: var(--brand);
box-shadow: 0 0 0 4px rgba(227, 7, 9, 0.1);
background: white;
}
.form-label {
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--ink);
}
/* Footer Premium */
footer {
background: linear-gradient(135deg, #0b1220 0%, #1a1f36 100%);
color: white;
padding: 80px 0 30px;
position: relative;
}
footer:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(227, 7, 9, 0.5), transparent);
}
footer .navbar-brand {
background: linear-gradient(135deg, #fff 0%, #ff9e9e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.8rem;
}
footer a {
color: rgba(255, 255, 255, 0.8) !important;
text-decoration: none;
transition: var(--transition);
}
footer a:hover {
color: white !important;
padding-left: 5px;
}
footer ul { padding-left: 0; }
footer ul li { margin-bottom: 0.75rem; }
.footer-divider {
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin: 3rem 0;
}
/* Animaciones */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
/* Galería (se mantiene igual) */
.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
}
.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%}
.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}
/* Responsive */
@media (max-width: 768px) {
.hero { padding: 80px 0 60px; }
.section { padding: 70px 0; }
.floating-badge { bottom: 20px; right: 20px; padding: 0.75rem 1rem; }
}
@media (max-width: 576px) {
.hero-title { font-size: 2.2rem; }
.section-title { font-size: 1.8rem; }
.btn { padding: 0.75rem 1.5rem; }
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* Scope wa-*: no rompe tu CSS */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family:inherit;
max-width: 100vw; /* ✅ evita overflow por rounding */
}
/* Botón WhatsApp verde oficial */
.wa-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
display:grid;
place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.45);
transition:transform .3s, box-shadow .3s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid rgba(0,0,0,.12);
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.25s ease;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
/* Header con accent rojo del sitio */
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px;
background:linear-gradient(135deg,#e30709,#b70608);
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:10px;
display:grid;
place-items:center;
overflow:hidden;
}
.wa-title{ font-weight:800; letter-spacing:-.01em; }
.wa-status{ font-size:.85rem; opacity:.92; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
cursor:pointer;
line-height:1;
}
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f8f9fa;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#fff;
border:1px solid rgba(0,0,0,.10);
align-self:flex-start;
}
.wa-user{
background:rgba(227,7,9,.08);
border:1px solid rgba(227,7,9,.18);
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid rgba(0,0,0,.10);
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid rgba(0,0,0,.12);
font-family:inherit;
}
.wa-send{
background:#e30709;
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ background:#b70608; }
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}