Preview de mixed.css
/* MIXED CSS PACK */
/* Template: carteleriavisual.com.ar/index.html */
/* Template mtime: 2025-08-27 14:29:07 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap */
/* 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://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--brand: #ff6b00;
--brand-2: #ff8a33;
--brand-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8a33 100%);
--brand-dark: #e55d00;
--ink: #111;
--muted: #6c757d;
--bg: #ffffff;
--bg-alt: #f8f9fb;
--card: #ffffff;
--ticker-size: 500px;
--shadow: 0 10px 30px rgba(0,0,0,.08);
--shadow-hover: 0 15px 40px rgba(0,0,0,.12);
--radius: 20px;
--transition: all 0.3s ease;
}
* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
color: var(--ink);
background: var(--bg);
line-height: 1.6;
}
a {
color: var(--brand);
text-decoration: none;
transition: var(--transition);
}
a:hover {
color: var(--brand-dark);
}
.btn-brand {
background: var(--brand-gradient);
border: none;
color: #fff;
font-weight: 500;
padding: 0.75rem 1.5rem;
border-radius: 12px;
transition: var(--transition);
box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.btn-brand:hover {
background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-2) 100%);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}
.btn-outline-brand {
border: 2px solid var(--brand);
color: var(--brand);
background: transparent;
font-weight: 500;
padding: 0.75rem 1.5rem;
border-radius: 12px;
transition: var(--transition);
}
.btn-outline-brand:hover {
background: var(--brand);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}
.text-brand { color: var(--brand)!important }
.badge-soft {
background: rgba(255,107,0,.12);
color: var(--brand);
border: 1px solid rgba(255,107,0,.28);
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 500;
letter-spacing: 0.5px;
}
.section {
padding: 100px 0;
}
.section-title {
font-weight: 800;
letter-spacing: -0.5px;
line-height: 1.2;
position: relative;
margin-bottom: 1.5rem;
}
.section-title:after {
content: '';
display: block;
width: 60px;
height: 4px;
background: var(--brand-gradient);
border-radius: 10px;
margin-top: 1rem;
}
.section-title.center:after {
margin-left: auto;
margin-right: auto;
}
.lead {
color: #495057;
font-size: 1.15rem;
font-weight: 400;
}
.shadow-soft {
box-shadow: var(--shadow);
transition: var(--transition);
}
.shadow-soft:hover {
box-shadow: var(--shadow-hover);
}
.rounded-xl {
border-radius: var(--radius);
}
.icon-bullet {
width: 60px;
height: 60px;
border-radius: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(255,107,0,.12);
color: var(--brand);
font-size: 1.5rem;
margin-bottom: 1.5rem;
transition: var(--transition);
}
.card-lite:hover .icon-bullet {
background: var(--brand);
color: white;
transform: translateY(-5px);
}
.checkline i {
color: var(--brand);
margin-right: .5rem;
font-size: 1.1rem;
}
/* Navbar */
.navbar {
box-shadow: 0 5px 20px rgba(0,0,0,.05);
padding: 1rem 0;
transition: var(--transition);
}
.navbar.scrolled {
padding: 0.5rem 0;
background: rgba(255, 255, 255, 0.95) !important;
backdrop-filter: blur(10px);
}
.navbar .nav-link {
font-weight: 500;
position: relative;
margin: 0 0.5rem;
}
.navbar .nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background: var(--brand-gradient);
transition: var(--transition);
}
.navbar .nav-link:hover:after,
.navbar .nav-link.active:after {
width: 100%;
}
.navbar .btn-brand {
padding: 0.5rem 1.2rem;
margin-left: 0.5rem;
}
/* Hero */
.hero {
padding: 150px 0 100px;
background: linear-gradient(135deg, #fff 0%, #fff7f1 100%);
position: relative;
overflow: hidden;
}
.hero:before {
content: '';
position: absolute;
width: 500px;
height: 500px;
border-radius: 50%;
background: rgba(255, 107, 0, 0.05);
top: -250px;
right: -250px;
z-index: 0;
}
.hero:after {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(255, 107, 0, 0.03);
bottom: -150px;
left: -150px;
z-index: 0;
}
.hero h1 {
font-weight: 800;
line-height: 1.1;
font-size: 3.5rem;
margin-bottom: 1.5rem;
}
.hero .bullets .bi {
color: var(--brand);
margin-right: .4rem;
font-size: 1.2rem;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero-image {
position: relative;
z-index: 2;
transform: perspective(800px) rotateY(-10deg);
transition: var(--transition);
border-radius: var(--radius);
overflow: hidden;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.hero-image:hover {
transform: perspective(800px) rotateY(0);
}
/* Cards */
.card-lite {
border: none;
background: var(--card);
border-radius: var(--radius);
padding: 2rem;
height: 100%;
transition: var(--transition);
}
.card-lite:hover {
transform: translateY(-10px);
}
/* Ticker / Carrusel de trabajos */
.ticker-section {
position: relative;
overflow: hidden;
}
.ticker {
position: relative;
overflow: hidden;
border-radius: var(--radius);
}
.ticker-track {
display: flex;
gap: 25px;
will-change: transform;
transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ticker-item {
flex: 0 0 auto;
width: var(--ticker-size);
max-width: 100%;
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow);
background: #000;
transition: var(--transition);
cursor: pointer;
}
.ticker-item:hover {
transform: scale(1.03);
box-shadow: var(--shadow-hover);
}
.ticker-item figure {
width: 100%;
height: var(--ticker-size);
max-height: 70vh;
margin: 0;
position: relative;
}
.ticker-item img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: var(--transition);
}
.ticker-item:hover img {
transform: scale(1.05);
}
.ticker-caption {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
color: #fff;
padding: 20px;
font-size: 1rem;
transform: translateY(5px);
opacity: 0;
transition: var(--transition);
}
.ticker-item:hover .ticker-caption {
transform: translateY(0);
opacity: 1;
}
.ticker-controls {
display: flex;
gap: 15px;
justify-content: center;
align-items: center;
margin-top: 2rem;
}
.ticker-controls .btn {
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: white;
box-shadow: var(--shadow);
border: none;
transition: var(--transition);
}
.ticker-controls .btn:hover {
background: var(--brand);
color: white;
transform: translateY(-3px);
}
.ticker .dotwrap {
display: flex;
gap: 10px;
align-items: center;
}
.ticker .dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: #e9ecef;
transition: var(--transition);
cursor: pointer;
}
.ticker .dot.active {
background: var(--brand);
width: 30px;
border-radius: 10px;
}
/* FAQs */
.accordion-button {
font-weight: 600;
padding: 1.25rem;
border: none;
background: transparent;
box-shadow: none;
}
.accordion-button:not(.collapsed) {
color: var(--brand);
background: #fff5ee;
border-bottom: 1px solid #ffe3cf;
box-shadow: none;
}
.accordion-button:after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b00'%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-item {
border: 1px solid #eee;
border-radius: 12px !important;
overflow: hidden;
margin-bottom: 1rem;
box-shadow: var(--shadow);
}
.accordion-body {
padding: 1.25rem;
}
/* Contacto */
.contact-card {
border: none;
background: var(--card);
border-radius: var(--radius);
padding: 2rem;
height: 100%;
box-shadow: var(--shadow);
}
.form-control {
padding: 0.75rem 1rem;
border: 1px solid #e9ecef;
border-radius: 12px;
transition: var(--transition);
}
.form-control:focus {
border-color: var(--brand);
box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.15);
}
.form-label {
font-weight: 500;
margin-bottom: 0.5rem;
}
/* WhatsApp flotante */
.wapp {
position: fixed;
right: 25px;
bottom: 25px;
z-index: 1000;
width: 60px;
height: 60px;
border-radius: 50%;
background: #25D366;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 30px rgba(0,0,0,.2);
transition: var(--transition);
animation: pulse 2s infinite;
}
.wapp:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}
.wapp-text {
position: absolute;
right: 70px;
background: #25D366;
color: white;
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 500;
white-space: nowrap;
opacity: 0;
transform: translateX(10px);
transition: var(--transition);
pointer-events: none;
}
.wapp:hover .wapp-text {
opacity: 1;
transform: translateX(0);
}
/* Utilidades */
.small-muted {
color: var(--muted);
font-size: .95rem;
}
.bg-gradient-light {
background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0px);
}
}
/* Footer */
footer {
background: #111;
color: rgba(255, 255, 255, 0.7);
padding: 4rem 0 2rem;
}
footer a {
color: rgba(255, 255, 255, 0.7);
transition: var(--transition);
}
footer a:hover {
color: white;
}
footer .text-brand {
color: var(--brand) !important;
}
/* Responsive */
@media (max-width: 1199.98px) {
.hero h1 {
font-size: 3rem;
}
}
@media (max-width: 991.98px) {
.hero h1 {
font-size: 2.5rem;
}
.section {
padding: 80px 0;
}
.hero-image {
transform: none;
margin-top: 3rem;
}
}
@media (max-width: 767.98px) {
.hero {
padding: 130px 0 80px;
}
.hero h1 {
font-size: 2.2rem;
}
.section-title {
font-size: 1.8rem;
}
.wapp-text {
display: none;
}
}
@media (max-width: 575.98px) {
.hero {
padding: 120px 0 60px;
}
.hero h1 {
font-size: 2rem;
}
.section {
padding: 60px 0;
}
.btn-lg {
padding: 0.75rem 1.25rem;
font-size: 1rem;
}
}
/* 1. Evita que el body haga scroll horizontal */
html, body {
overflow-x: hidden;
}
/* 2. Ajustá el tamaño del ticker a pantallas chicas */
@media (max-width: 575.98px) {
:root {
--ticker-size: 100%; /* que ocupe ancho completo de pantalla */
}
.ticker-item {
width: 100% !important;
}
.ticker-item figure {
height: auto !important; /* que no fije alto */
}
.ticker-item img {
max-height: 250px; /* opcional: limitá altura en mobile */
object-fit: contain;
}
}
/* 3. Asegurá el botón de WhatsApp siempre visible */
.wapp {
right: 15px;
bottom: 15px;
}
/* ===== INLINE <style> BLOCK #2 ===== */
@keyframes floatZoomRotate {
0% { transform: scale(1) rotate(0deg) translateY(0); }
25% { transform: scale(1.05) rotate(2deg) translateY(-8px); }
50% { transform: scale(1.1) rotate(-2deg) translateY(0); }
75% { transform: scale(1.05) rotate(2deg) translateY(8px); }
100% { transform: scale(1) rotate(0deg) translateY(0); }
}
.animate-wow {
animation: floatZoomRotate 6s ease-in-out infinite;
transition: transform 0.3s ease;
will-change: transform;
}
/* efecto al pasar el mouse */
.animate-wow:hover {
transform: scale(1.15) rotate(3deg);
}
/* ===== INLINE <style> BLOCK #3 ===== */
.ticker-item figure {
margin: 0;
padding: 0;
overflow: hidden;
border-radius: 15px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.ticker-item img {
width: 100%;
height: auto; /* mantiene proporción */
max-height: 400px;
object-fit: contain; /* evita estiramiento */
display: block;
transition: transform 0.4s ease;
}
.ticker-item img:hover {
transform: scale(1.05);
}
Manifest preview
{
"template": "carteleriavisual.com.ar/index.html",
"template_mtime": 1756304947,
"template_mtime_human": "2025-08-27T14:29:07+00:00",
"css_links_found": [
"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap",
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
],
"css_links_external": [
"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap",
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
],
"css_links_embedded": [],
"inline_style_blocks": 3,
"inline_imports_external": [],
"inline_imports_embedded": [],
"missing_css_files": []
}