Preview de mixed.css
/* MIXED CSS PACK */
/* Template: bataindustrials.com.ar/index.html */
/* Template mtime: 2025-09-16 15:01:51 */
/* 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=Inter:wght@300;400;500;600;700;800&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== Variables y configuración global ===== */
:root {
--primary: #009cde;
--primary-dark: #0085c7;
--secondary: #ff6b6b;
--dark: #1e293b;
--light: #f8fafc;
--gray: #64748b;
--gray-light: #e2e8f0;
--success: #10b981;
--border-radius: 12px;
--box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
--transition: all 0.3s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', 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;
}
a {
text-decoration: none;
color: var(--primary);
transition: var(--transition);
}
img {
max-width: 100%;
height: auto;
}
.section {
padding: 100px 0;
position: relative;
}
.section-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
left: 0;
bottom: -10px;
width: 60px;
height: 4px;
background: var(--primary);
border-radius: 2px;
}
.section-subtitle {
color: var(--gray);
font-size: 1.2rem;
margin-bottom: 3rem;
max-width: 700px;
}
.btn {
padding: 12px 28px;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn-primary {
background: var(--primary);
color: white;
box-shadow: 0 4px 15px rgba(0, 156, 222, 0.3);
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 156, 222, 0.4);
}
.btn-outline {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}
.btn-outline:hover {
background: var(--primary);
color: white;
transform: translateY(-2px);
}
/* ===== Navbar ===== */
.navbar {
padding: 20px 0;
background: rgba(255, 255, 255, 0.95) !important;
backdrop-filter: blur(10px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: var(--transition);
}
.navbar-brand {
font-weight: 800;
font-size: 1.8rem;
color: var(--primary) !important;
display: flex;
align-items: center;
gap: 10px;
}
.navbar-brand i {
font-size: 1.5rem;
}
.nav-link {
font-weight: 500;
color: var(--dark) !important;
margin: 0 10px;
position: relative;
padding: 8px 0 !important;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--primary);
transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0;
font-size: 1.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
/* ===== Hero Section ===== */
#inicio {
padding: 150px 0 100px;
background: linear-gradient(135deg, rgba(0,156,222,0.1) 0%, rgba(255,255,255,1) 100%);
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
width: 500px;
height: 500px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(0,156,222,0.15) 0%, rgba(0,156,222,0.05) 100%);
top: -250px;
right: -250px;
z-index: 0;
}
#inicio::after {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(0,156,222,0.1) 0%, rgba(0,156,222,0.05) 100%);
bottom: -150px;
left: -150px;
z-index: 0;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero-title {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
color: var(--dark);
}
.hero-subtitle {
font-size: 1.2rem;
color: var(--gray);
margin-bottom: 2.5rem;
max-width: 600px;
}
.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 3rem;
}
.brand-badges {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: center;
}
.brand-badge {
background: white;
padding: 15px 20px;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
display: flex;
align-items: center;
transition: var(--transition);
}
.brand-badge:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.brand-badge img {
height: 35px;
filter: grayscale(100%);
opacity: 0.7;
transition: var(--transition);
}
.brand-badge:hover img {
filter: grayscale(0);
opacity: 1;
}
.hero-image {
position: relative;
z-index: 2;
}
.hero-image img {
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
transform: perspective(1000px) rotateY(-10deg);
transition: var(--transition);
}
.hero-image:hover img {
transform: perspective(1000px) rotateY(0);
}
/* ===== About Section ===== */
#quienes {
background: white;
}
/* ===== Services Section ===== */
#servicios {
background: var(--light);
}
.service-card {
background: white;
padding: 30px;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
transition: var(--transition);
height: 100%;
border-bottom: 4px solid transparent;
}
.service-card:hover {
transform: translateY(-10px);
border-bottom: 4px solid var(--primary);
}
.service-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 20px;
}
.service-title {
font-size: 1.3rem;
margin-bottom: 15px;
}
.service-desc {
color: var(--gray);
}
/* ===== Why Choose Us Section ===== */
#elegirnos {
background: white;
}
.feature-card {
background: var(--light);
padding: 25px;
border-radius: var(--border-radius);
transition: var(--transition);
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.feature-card:hover {
background: var(--primary);
color: white;
transform: translateY(-5px);
}
.feature-card:hover * {
color: white;
}
.feature-icon {
font-size: 2rem;
margin-bottom: 15px;
color: var(--primary);
transition: var(--transition);
}
.feature-card:hover .feature-icon {
color: white;
}
.feature-title {
font-size: 1.2rem;
margin-bottom: 10px;
}
.feature-desc {
font-size: 0.9rem;
}
/* ===== Portfolio Section ===== */
#trabajos {
background: linear-gradient(to bottom, var(--light) 0%, white 100%);
}
.portfolio-filter {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 40px;
}
.filter-btn {
padding: 8px 20px;
background: white;
border: 1px solid var(--gray-light);
border-radius: 50px;
font-weight: 500;
cursor: pointer;
transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
}
.portfolio-item {
border-radius: var(--border-radius);
overflow: hidden;
position: relative;
box-shadow: var(--box-shadow);
height: 250px;
}
.portfolio-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.portfolio-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 20px;
opacity: 0;
transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay {
opacity: 1;
}
.portfolio-item:hover .portfolio-img {
transform: scale(1.1);
}
.portfolio-title {
color: white;
font-size: 1.2rem;
margin-bottom: 5px;
}
.portfolio-category {
color: rgba(255,255,255,0.8);
font-size: 0.9rem;
}
/* ===== Testimonials Section ===== */
.testimonials {
background: var(--primary);
color: white;
padding: 100px 0;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: var(--border-radius);
padding: 30px;
margin: 15px;
}
.testimonial-text {
font-style: italic;
margin-bottom: 20px;
position: relative;
}
.testimonial-text::before,
.testimonial-text::after {
content: '"';
font-size: 3rem;
opacity: 0.3;
position: absolute;
}
.testimonial-text::before {
top: -20px;
left: -10px;
}
.testimonial-text::after {
bottom: -40px;
right: -10px;
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
object-fit: cover;
}
.author-name {
font-weight: 600;
}
.author-position {
font-size: 0.9rem;
opacity: 0.8;
}
/* ===== FAQs Section ===== */
#faqs {
background: var(--light);
}
.accordion-item {
border: none;
border-radius: var(--border-radius) !important;
margin-bottom: 15px;
box-shadow: var(--box-shadow);
overflow: hidden;
}
.accordion-button {
padding: 20px;
font-weight: 600;
border: none;
background: white;
box-shadow: none;
}
.accordion-button:not(.collapsed) {
background: var(--primary);
color: white;
}
.accordion-button:focus {
box-shadow: none;
}
.accordion-body {
padding: 20px;
background: white;
color: var(--gray);
}
/* ===== Contact Section ===== */
#contacto {
background: white;
}
.contact-info {
background: var(--light);
padding: 40px;
border-radius: var(--border-radius);
height: 100%;
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 25px;
}
.contact-icon {
width: 50px;
height: 50px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-size: 1.2rem;
}
.contact-text h4 {
font-size: 1.1rem;
margin-bottom: 5px;
}
.contact-text p {
color: var(--gray);
margin: 0;
}
.form-control {
padding: 15px;
border-radius: var(--border-radius);
border: 1px solid var(--gray-light);
transition: var(--transition);
}
.form-control:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(0, 156, 222, 0.25);
}
/* ===== Footer ===== */
footer {
background: var(--dark);
color: white;
padding: 80px 0 30px;
}
.footer-logo {
font-size: 2rem;
font-weight: 800;
margin-bottom: 20px;
display: inline-block;
}
.footer-desc {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 30px;
}
.footer-title {
font-size: 1.2rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 2px;
background: var(--primary);
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
transition: var(--transition);
}
.footer-links a:hover {
color: white;
padding-left: 5px;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-link {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.social-link:hover {
background: var(--primary);
transform: translateY(-3px);
}
.copyright {
text-align: center;
padding-top: 30px;
margin-top: 50px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.5);
}
/* ===== Back to Top Button ===== */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
box-shadow: var(--box-shadow);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: var(--transition);
}
.back-to-top.active {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: var(--primary-dark);
transform: translateY(-5px);
}
/* ===== Animations ===== */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 1s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
.hero-title {
font-size: 2.8rem;
}
.section {
padding: 80px 0;
}
.section-title {
font-size: 2rem;
}
}
@media (max-width: 768px) {
.hero-title {
font-size: 2.3rem;
}
.hero-buttons {
flex-direction: column;
align-items: flex-start;
}
.section {
padding: 60px 0;
}
.brand-badges {
justify-content: center;
}
}
@media (max-width: 576px) {
.hero-title {
font-size: 2rem;
}
.section-title {
font-size: 1.8rem;
}
}
/* Honeypot del form (no tocar) */
.hp{ position:absolute !important; left:-10000px !important; height:0 !important; width:0 !important; overflow:hidden !important; }
/* ===== INLINE <style> BLOCK #2 ===== */
/* Scale titles subtly on all sizes */
#tienda .tienda-head h2{
font-size: clamp(1.3rem, 1.05rem + 1.4vw, 2rem);
line-height: 1.2;
}
#tienda .tienda-sub{
font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.05rem);
}
/* Tablet adjustments */
@media (min-width: 577px) and (max-width: 991.98px){
#tienda iframe.store-frame{ min-height: 75vh; }
}
/* Phone-only adjustments */
@media (max-width: 576px){
#tienda{ padding-top: 24px; padding-bottom: 24px; }
#tienda .tienda-head h2{ margin-bottom: 4px; }
#tienda .tienda-sub{ color:#6a7680; }
/* Toolbar wraps & centers */
#tienda .tienda-toolbar{
justify-content:center; flex-wrap:wrap; gap:.5rem;
margin: 10px 0 12px;
}
#tienda .btn{ padding:.45rem .85rem; font-size:.95rem; line-height:1.1; }
/* Frame/container: softer radius & not-too-tall default */
#tienda .store-wrap{ border-radius:12px; }
#tienda iframe.store-frame{ min-height: 65vh; }
}
/* ===== INLINE <style> BLOCK #3 ===== */
/* ==== Hero: tamaños rápidos ==== */
:root{
--hero-img-max: 760px; /* tamaño máximo de la imagen grande */
--hero-logo-h: 80px; /* alto de logos de marcas */
}
/* Imagen grande del hero */
.hero-image{ text-align:center; }
.hero-image img{
width: 100%;
max-width: var(--hero-img-max); /* << subí o bajá este valor */
height: auto;
}
/* Logos de marcas */
.brand-badges{
display:flex; flex-wrap:wrap; gap:16px 22px; align-items:center; margin-top:16px;
}
.brand-badge img{
height: var(--hero-logo-h); /* << ajustá acá el tamaño de cada logo */
width: auto; display:block;
filter: grayscale(100%); opacity:.9; transition:opacity .2s, filter .2s;
}
.brand-badge img:hover{ filter:none; opacity:1; }
/* En mobile los bajo un toque si querés */
@media (max-width: 991.98px){
:root{ --hero-img-max: 92vw; --hero-logo-h: 56px; }
}
/* ===== INLINE <style> BLOCK #4 ===== */
/* ===== Estilos scoped a #tienda ===== */
#tienda{
--accent:#009cde;
--brd:#e8eef3;
--radius:16px;
--shadow:0 12px 30px rgba(0,0,0,.06);
}
#tienda .tienda-head h2{ font-weight:800; margin-bottom:6px; }
#tienda .tienda-sub{ color:#5f6b76; }
#tienda .tienda-toolbar{
display:flex; gap:.5rem; align-items:center; justify-content:flex-end;
margin:12px 0 8px;
}
#tienda .btn{
border-radius:999px; padding:.5rem .9rem;
}
#tienda .btn-accent{
background:var(--accent); color:#fff; border:0;
}
#tienda .btn-accent:hover{ filter:brightness(.95); }
#tienda .btn-outline{
background:#fff; color:#111; border:1px solid var(--brd);
}
#tienda .btn-outline:hover{ background:#f8fafc; }
/* Iframe contenedor */
#tienda .store-wrap{
border:1px solid var(--brd); border-radius:var(--radius); box-shadow:var(--shadow);
overflow:hidden; background:#fff;
}
#tienda iframe.store-frame{
width:100%; border:0; min-height:75vh; /* fallback inicial */
display:block;
}
@media (min-width: 992px){
#tienda iframe.store-frame{ min-height:900px; }
}
/* ===== INLINE <style> BLOCK #5 ===== */
/* ====== Ajustes del ticker (scoped a #trabajos) ====== */
#trabajos{
--accent:#009cde;
--ticker-size: 500px; /* tamaño base desktop (tipo 500x500) */
--ticker-gap: 16px;
--brd:#e8eef3;
--tile-bg:#fff;
--ticker-fit: contain; /* ← mostrarlas completas según su contenido (cambiar a 'cover' si querés llenar) */
}
#trabajos .alx-ticker{
position:relative; border:1px solid var(--brd); border-radius:18px; background:#fff;
padding:16px; overflow:hidden;
}
#trabajos .alx-viewport{ overflow:hidden; }
#trabajos .alx-track{
display:flex; align-items:center; gap:var(--ticker-gap); will-change: transform;
}
/* Caja cuadrada que escala: ancho manda, alto se calcula por aspect-ratio */
#trabajos .tile{
width:var(--ticker-size);
aspect-ratio: 1 / 1; /* cuadrado flexible */
flex:0 0 auto;
border:1px solid var(--brd); border-radius:14px; overflow:hidden; background:var(--tile-bg);
user-select:none;
}
/* Mostrar imagen completa según su contenido (no recorta) */
#trabajos .tile img{
width:100%; height:100%; object-fit: var(--ticker-fit); object-position:center;
display:block;
}
#trabajos .alx-controls{
position:absolute; inset:auto 12px 12px 12px; display:flex; gap:8px; justify-content:space-between; pointer-events:none;
}
#trabajos .alx-controls .btn{
pointer-events:all; border-radius:999px; padding:.5rem .9rem; backdrop-filter:blur(6px);
border:1px solid rgba(255,255,255,.5); background:rgba(255,255,255,.9);
}
#trabajos .alx-controls .btn:hover{ background:#fff; }
/* Mobile: que el ancho de pantalla mande */
@media (max-width: 991.98px){
#trabajos .tile{ width: min(88vw, var(--ticker-size)); }
}
/* ===== INLINE <style> BLOCK #6 ===== */
/* ====== Estilos scoped a #testimonios ====== */
#testimonios{
--accent: #009cde;
--bg-dark: #0b1420;
--card-bg: #0f1a28;
--card-brd: rgba(255,255,255,.08);
--text: #e2e8f0;
--text-muted: #9fb0c3;
--avatar-size: 64px; /* ⇐ cambiá tamaño de las fotos acá */
--card-radius: 16px; /* ⇐ radio de las tarjetas */
}
#testimonios{ background: var(--bg-dark); padding: 64px 0; }
#testimonios .section-title{ color:#fff; font-weight:800; margin-bottom:6px; }
#testimonios .section-subtitle{ color:#cbd5e1; }
#testimonios .testimonial-card{
background: var(--card-bg);
border: 1px solid var(--card-brd);
border-radius: var(--card-radius);
padding: 20px;
height: 100%;
color: var(--text);
box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
#testimonios .testimonial-text{ color:#dbe3ec; margin-bottom: 14px; }
#testimonios .testimonial-author{
display:flex; align-items:center; gap:12px; margin-top:16px;
}
#testimonios .author-img{
width: var(--avatar-size);
height: var(--avatar-size);
border-radius: 50%;
object-fit: cover;
display: block;
flex-shrink: 0;
background: var(--accent);
border: 2px solid #fff; /* contraste con fondo oscuro */
}
#testimonios .author-name{ margin:0; color:#fff; font-weight:700; }
#testimonios .author-position{ margin:0; color:var(--text-muted); font-size:.95rem; }
/* Responsive */
@media (max-width: 991.98px){
#testimonios{ padding: 56px 0; }
#testimonios .testimonial-card{ padding:18px; }
}
/* ===== INLINE <style> BLOCK #7 ===== */
:root{
/* —— Ajustes rápidos —— */
--wa-size: 72px; /* tamaño del botón (subí/bajá) */
--wa-x: 22px; /* separación horizontal al borde */
--wa-y: 22px; /* separación inferior */
--wa-z: 9999; /* z-index por encima de todo */
--wa-green: #25D366; /* color oficial */
--wa-green-2: #1ebe57; /* variante hover */
--wa-ring: #009cde; /* aro/acento de tu marca */
--wa-shadow: 0 14px 38px rgba(0,0,0,.28);
}
.wa-float{
position: fixed; right: var(--wa-x); bottom: var(--wa-y); z-index: var(--wa-z);
display: grid; place-items: center;
-webkit-tap-highlight-color: transparent;
}
.wa-btn{
position: relative; display: grid; place-items: center;
width: var(--wa-size); height: var(--wa-size);
border-radius: 50%;
background: radial-gradient(120% 120% at 30% 20%, #36e07a 0%, var(--wa-green) 45%, #18a54a 100%);
color:#fff; text-decoration:none; outline: none; border: 2px solid #fff;
box-shadow: var(--wa-shadow);
transform: translateZ(0); /* nitidez en GPU */
transition: transform .15s ease, filter .15s ease, background .2s ease;
isolation: isolate;
}
.wa-btn:hover{ transform: scale(1.04); filter: saturate(1.05); }
.wa-btn:active{ transform: scale(0.98); }
/* Halo/acento sutil (vector, no pixelado) */
.wa-btn::after{
content:""; position:absolute; inset:-8px; border-radius:50%;
border: 3px solid color-mix(in srgb, var(--wa-ring) 55%, transparent);
opacity:.65;
}
@media (prefers-reduced-motion: no-preference){
.wa-btn::after{
animation: wa-ring 1.8s ease-out infinite;
}
@keyframes wa-ring{
0%{ transform: scale(1); opacity:.55; }
70%{ transform: scale(1.22); opacity:0; }
100%{ transform: scale(1.22); opacity:0; }
}
}
/* SVG ultra nítido */
.wa-icon{
width: 58%; height: 58%;
display:block;
shape-rendering: geometricPrecision;
vector-effect: non-scaling-stroke;
}
/* Tooltip minimal */
.wa-tip{
position:absolute; right: calc(100% + 10px); top:50%;
transform: translateY(-50%); background:#111; color:#fff;
font-size:.86rem; padding:.38rem .6rem; border-radius:10px; white-space:nowrap;
opacity:0; pointer-events:none; transition:opacity .15s ease, transform .15s ease;
box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.wa-btn:hover .wa-tip, .wa-btn:focus-visible .wa-tip{
opacity:1; transform: translate(-2px,-50%);
}
/* Opción: lado izquierdo → descomentá */
/* .wa-float{ right:auto; left: var(--wa-x); } */