Preview de mixed.css
/* MIXED CSS PACK */
/* Template: servicecordobafrio.com.ar/index.html */
/* Template mtime: 2025-09-03 17:47:04 */
/* 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&family=Montserrat:wght@700;800;900&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
/* Colores personalizados */
--primary: #2563eb;
--primary-dark: #1d4ed8;
--secondary: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--success: #10b981;
/* Efectos */
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
/* Tamaños */
--ticker-img-size: 600px;
--ticker-gap: 1.5rem;
}
body {
font-family: "Poppins", sans-serif;
scroll-behavior: smooth;
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
font-family: "Montserrat", sans-serif;
font-weight: 800;
}
/* Navbar */
.navbar {
background-color: rgba(255, 255, 255, 0.98) !important;
backdrop-filter: blur(10px);
box-shadow: var(--shadow);
padding: 1rem 0;
transition: all 0.3s ease;
}
.navbar.scrolled {
padding: 0.5rem 0;
box-shadow: var(--shadow-lg);
}
.navbar-brand {
font-weight: 900;
font-size: 1.75rem;
color: var(--primary) !important;
letter-spacing: -0.5px;
}
.navbar-brand span {
color: var(--secondary);
}
.nav-link {
font-weight: 500;
color: var(--dark) !important;
padding: 0.5rem 1rem !important;
position: relative;
transition: all 0.3s ease;
}
.nav-link:hover, .nav-link:focus {
color: var(--primary) !important;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
background-color: var(--primary);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 60%;
}
.nav-link.active::after {
width: 60%;
}
.btn-primary {
background-color: var(--primary);
border-color: var(--primary);
font-weight: 600;
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: var(--primary-dark);
border-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-outline-primary {
color: var(--primary);
border-color: var(--primary);
font-weight: 600;
}
.btn-outline-primary:hover {
background-color: var(--primary);
border-color: var(--primary);
}
/* Hero Section */
header.hero {
min-height: 100vh;
background: linear-gradient(135deg, rgba(13, 110, 253, 0.95) 0%, rgba(102, 16, 242, 0.95) 100%),
url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
color: var(--light);
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to top, var(--light), transparent);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-weight: 900;
line-height: 1.2;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero h1 span {
color: var(--secondary);
}
.hero .lead {
font-size: 1.25rem;
opacity: 0.9;
}
.hero-img {
position: relative;
animation: float 6s ease-in-out infinite;
}
.hero-img img {
border-radius: 1rem;
box-shadow: var(--shadow-xl);
transform: perspective(1000px) rotateY(-10deg);
border: 5px solid rgba(255, 255, 255, 0.2);
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
/* Secciones generales */
section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-weight: 900;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
width: 50%;
height: 4px;
bottom: -10px;
left: 0;
background: linear-gradient(to right, var(--primary), var(--secondary));
border-radius: 2px;
}
.section-subtitle {
color: var(--gray);
margin-bottom: 3rem;
font-size: 1.25rem;
}
.bg-light {
background-color: var(--light) !important;
}
/* Tarjetas */
.card {
border: none;
border-radius: 1rem;
overflow: hidden;
transition: all 0.3s ease;
height: 100%;
box-shadow: var(--shadow);
}
.card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.card-icon {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--primary);
}
.card-title {
font-weight: 700;
margin-bottom: 1rem;
}
/* Ticker de trabajos */
#trabajos {
padding: 6rem 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--light);
}
#trabajos .section-title::after {
background: linear-gradient(to right, var(--secondary), var(--light));
}
#trabajos .section-subtitle {
color: rgba(255, 255, 255, 0.8);
}
.ticker-wrapper {
position: relative;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding: 2rem 0;
margin: 0 -1.5rem;
}
.ticker-track {
display: inline-flex;
gap: var(--ticker-gap);
padding: 0 1.5rem;
}
.ticker-track img {
width: var(--ticker-img-size);
height: var(--ticker-img-size);
object-fit: cover;
object-position: center;
border-radius: 1rem;
flex: 0 0 auto;
scroll-snap-align: start;
box-shadow: var(--shadow-xl);
border: 3px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.ticker-track img:hover {
transform: scale(1.03);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.btn-ticker {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 2;
border: none;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
color: var(--light);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.btn-ticker:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-50%) scale(1.1);
}
.btn-ticker.left { left: 1.5rem; }
.btn-ticker.right { right: 1.5rem; }
@media (max-width: 991px) {
:root {
--ticker-img-size: clamp(250px, 80vw, 400px);
}
.btn-ticker { display: none; }
section {
padding: 4rem 0;
}
}
.price-tag {
position: absolute;
top: 1rem;
right: 1rem;
background-color: var(--secondary);
color: var(--dark);
padding: 0.5rem 1rem;
border-radius: 0.5rem;
font-weight: 700;
box-shadow: var(--shadow);
}
/* FAQ */
.accordion-button {
font-weight: 600;
padding: 1.25rem;
}
.accordion-button:not(.collapsed) {
background-color: rgba(37, 99, 235, 0.05);
color: var(--primary);
}
.accordion-button:focus {
box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}
/* Contacto */
#contacto .form-control, #contacto .form-select {
padding: 1rem;
border-radius: 0.5rem;
border: 1px solid #e2e8f0;
}
#contacto .form-control:focus, #contacto .form-select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}
.contact-info {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--light);
border-radius: 1rem;
padding: 2rem;
height: 100%;
}
.contact-info i {
font-size: 1.5rem;
margin-right: 1rem;
color: var(--secondary);
}
/* Footer */
footer {
background: var(--dark);
color: var(--light);
padding: 6rem 0 2rem 0;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to bottom, var(--light), transparent);
transform: translateY(-100%);
}
footer h5, footer h6 {
color: var(--light);
font-weight: 700;
margin-bottom: 1.5rem;
}
footer a {
color: #cbd5e1;
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
margin-bottom: 0.5rem;
}
footer a:hover {
color: var(--secondary);
transform: translateX(5px);
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
margin-right: 0.5rem;
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: var(--secondary);
color: var(--dark);
transform: translateY(-3px);
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* --- ESTO SOLO AFECTA A #ventas --- */
#ventas .ventas-wrapper {
overflow-x: auto;
scroll-behavior: smooth;
white-space: nowrap;
padding: 10px 0;
}
/* Ocultar la barra de scroll SOLO en desktop */
@media (min-width: 992px) {
#ventas .ventas-wrapper {
-ms-overflow-style: none; /* IE/Edge */
scrollbar-width: none; /* Firefox */
}
#ventas .ventas-wrapper::-webkit-scrollbar { /* Chrome/Safari */
display: none;
}
}
#ventas .ventas-track {
display: flex;
gap: 20px;
}
/* Imágenes grandes, respetando su contenido */
#ventas .img-ventas {
flex: 0 0 auto;
height: clamp(260px, 70vw, 520px);
width: auto;
object-fit: contain;
border-radius: 10px;
transition: transform 0.3s;
background: #111;
}
#ventas .img-ventas:hover {
transform: scale(1.03);
}
#ventas .btn-ventas {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.2);
color: white;
border: none;
font-size: 2rem;
width: 56px;
height: 56px;
border-radius: 50%;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(6px);
transition: all 0.2s ease;
}
#ventas .btn-ventas:hover {
background-color: rgba(255, 255, 255, 0.3);
transform: translateY(-50%) scale(1.08);
}
#ventas .btn-ventas.left { left: 10px; }
#ventas .btn-ventas.right { right: 10px; }
/* En mobile escondo los botones y hago aún más grande la imagen */
@media (max-width: 991px) {
#ventas .btn-ventas { display: none; }
#ventas .img-ventas {
height: clamp(280px, 85vw, 480px);
}
}
/* ===== INLINE <style> BLOCK #3 ===== */
/* Contenedor de botones flotantes */
.social-float-container {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
display: flex;
flex-direction: column-reverse;
gap: 15px;
align-items: flex-end;
}
/* Estilos base para todos los botones sociales */
.social-float {
position: relative;
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.social-float:hover {
transform: translateY(-5px) rotate(5deg) scale(1.1);
}
.social-button {
display: block;
width: 70px;
height: 70px;
border-radius: 50%;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
position: relative;
transition: all 0.3s ease;
animation: float 3s ease-in-out infinite;
color: white;
text-decoration: none;
}
.social-button:hover {
transform: scale(1.1);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.social-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 30px;
}
.social-pulse {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
animation: pulse 2s infinite;
}
.social-pulse-delayed {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
animation: pulse 2s infinite 0.5s;
}
.social-tooltip {
position: absolute;
right: 90px;
top: 50%;
transform: translateY(-50%);
background: white;
color: #333;
padding: 12px 15px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
width: 200px;
text-align: center;
}
.social-tooltip small {
display: block;
font-size: 12px;
color: #666;
font-weight: normal;
margin-top: 3px;
}
.tooltip-arrow {
position: absolute;
right: -10px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid white;
}
.social-float:hover .social-tooltip {
opacity: 1;
visibility: visible;
right: 80px;
}
/* Estilos específicos para cada botón */
.whatsapp-button {
background: #25D366;
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.whatsapp-button:hover {
background: #128C7E;
box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}
.whatsapp-pulse {
background: rgba(37, 211, 102, 0.6);
}
.whatsapp-pulse-delayed {
background: rgba(37, 211, 102, 0.4);
}
.instagram-button {
background: #E1306C;
box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}
.instagram-button:hover {
background: #C13584;
box-shadow: 0 15px 30px rgba(193, 53, 132, 0.4);
}
.instagram-pulse {
background: rgba(225, 48, 108, 0.6);
}
.instagram-pulse-delayed {
background: rgba(193, 53, 132, 0.4);
}
.facebook-button {
background: #1877F2;
box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}
.facebook-button:hover {
background: #166FE5;
box-shadow: 0 15px 30px rgba(22, 111, 229, 0.4);
}
.facebook-pulse {
background: rgba(24, 119, 242, 0.6);
}
.facebook-pulse-delayed {
background: rgba(22, 111, 229, 0.4);
}
/* Animaciones */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
@keyframes pulse {
0% { transform: scale(0.8); opacity: 0; }
70% { transform: scale(1.3); opacity: 0.4; }
100% { transform: scale(1.4); opacity: 0; }
}
/* Efecto de latido al cargar */
@keyframes heartbeat {
0% { transform: scale(1); }
25% { transform: scale(1.1); }
50% { transform: scale(1); }
75% { transform: scale(1.1); }
100% { transform: scale(1); }
}
/* Animación inicial para los botones */
.social-button {
animation: heartbeat 1.5s ease 2s 2, float 3s ease-in-out infinite 3s;
}
/* Mostrar botones con un pequeño retraso entre ellos */
.instagram-float { animation: fadeInUp 0.5s ease 0.2s both; }
.facebook-float { animation: fadeInUp 0.5s ease 0.4s both; }
.whatsapp-float { animation: fadeInUp 0.5s ease 0.6s both; }
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 768px) {
.social-float-container {
bottom: 20px;
right: 20px;
}
.social-button {
width: 60px;
height: 60px;
}
.social-icon {
font-size: 25px;
}
.social-tooltip {
display: none;
}
}
/* ===== INLINE <style> BLOCK #4 ===== */
:root {
/* Colores personalizados */
--primary: #2563eb;
--primary-dark: #1d4ed8;
--secondary: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--success: #10b981;
/* Efectos */
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
/* Tamaños */
--ticker-img-size: 600px;
--ticker-gap: 1.5rem;
}
body {
font-family: "Poppins", sans-serif;
scroll-behavior: smooth;
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
font-family: "Montserrat", sans-serif;
font-weight: 800;
}
/* Navbar */
.navbar {
background-color: rgba(255, 255, 255, 0.98) !important;
backdrop-filter: blur(10px);
box-shadow: var(--shadow);
padding: 1rem 0;
transition: all 0.3s ease;
}
.navbar.scrolled {
padding: 0.5rem 0;
box-shadow: var(--shadow-lg);
}
.navbar-brand {
font-weight: 900;
font-size: 1.75rem;
color: var(--primary) !important;
letter-spacing: -0.5px;
}
.navbar-brand span {
color: var(--secondary);
}
.nav-link {
font-weight: 500;
color: var(--dark) !important;
padding: 0.5rem 1rem !important;
position: relative;
transition: all 0.3s ease;
}
.nav-link:hover, .nav-link:focus {
color: var(--primary) !important;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
background-color: var(--primary);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 60%;
}
.nav-link.active::after {
width: 60%;
}
.btn-primary {
background-color: var(--primary);
border-color: var(--primary);
font-weight: 600;
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: var(--primary-dark);
border-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-outline-primary {
color: var(--primary);
border-color: var(--primary);
font-weight: 600;
}
.btn-outline-primary:hover {
background-color: var(--primary);
border-color: var(--primary);
}
/* Hero Section */
header.hero {
min-height: 100vh;
background: linear-gradient(135deg, rgba(13, 110, 253, 0.95) 0%, rgba(102, 16, 242, 0.95) 100%),
url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
color: var(--light);
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to top, var(--light), transparent);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-weight: 900;
line-height: 1.2;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero h1 span {
color: var(--secondary);
}
.hero .lead {
font-size: 1.25rem;
opacity: 0.9;
}
.hero-img {
position: relative;
animation: float 6s ease-in-out infinite;
}
.hero-img img {
border-radius: 1rem;
box-shadow: var(--shadow-xl);
transform: perspective(1000px) rotateY(-10deg);
border: 5px solid rgba(255, 255, 255, 0.2);
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
/* Secciones generales */
section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-weight: 900;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
width: 50%;
height: 4px;
bottom: -10px;
left: 0;
background: linear-gradient(to right, var(--primary), var(--secondary));
border-radius: 2px;
}
.section-subtitle {
color: var(--gray);
margin-bottom: 3rem;
font-size: 1.25rem;
}
.bg-light {
background-color: var(--light) !important;
}
/* Tarjetas */
.card {
border: none;
border-radius: 1rem;
overflow: hidden;
transition: all 0.3s ease;
height: 100%;
box-shadow: var(--shadow);
}
.card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.card-icon {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--primary);
}
.card-title {
font-weight: 700;
margin-bottom: 1rem;
}
/* Ticker de trabajos */
#trabajos {
padding: 6rem 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--light);
}
#trabajos .section-title::after {
background: linear-gradient(to right, var(--secondary), var(--light));
}
#trabajos .section-subtitle {
color: rgba(255, 255, 255, 0.8);
}
.ticker-wrapper {
position: relative;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding: 2rem 0;
margin: 0 -1.5rem;
}
.ticker-track {
display: inline-flex;
gap: var(--ticker-gap);
padding: 0 1.5rem;
}
.ticker-track img {
width: var(--ticker-img-size);
height: var(--ticker-img-size);
object-fit: cover;
object-position: center;
border-radius: 1rem;
flex: 0 0 auto;
scroll-snap-align: start;
box-shadow: var(--shadow-xl);
border: 3px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.ticker-track img:hover {
transform: scale(1.03);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.btn-ticker {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 2;
border: none;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
color: var(--light);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.btn-ticker:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-50%) scale(1.1);
}
.btn-ticker.left { left: 1.5rem; }
.btn-ticker.right { right: 1.5rem; }
@media (max-width: 991px) {
:root {
--ticker-img-size: clamp(250px, 80vw, 400px);
}
.btn-ticker { display: none; }
section {
padding: 4rem 0;
}
}
.price-tag {
position: absolute;
top: 1rem;
right: 1rem;
background-color: var(--secondary);
color: var(--dark);
padding: 0.5rem 1rem;
border-radius: 0.5rem;
font-weight: 700;
box-shadow: var(--shadow);
}
/* FAQ */
.accordion-button {
font-weight: 600;
padding: 1.25rem;
}
.accordion-button:not(.collapsed) {
background-color: rgba(37, 99, 235, 0.05);
color: var(--primary);
}
.accordion-button:focus {
box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}
/* Contacto */
#contacto .form-control, #contacto .form-select {
padding: 1rem;
border-radius: 0.5rem;
border: 1px solid #e2e8f0;
}
#contacto .form-control:focus, #contacto .form-select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}
.contact-info {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--light);
border-radius: 1rem;
padding: 2rem;
height: 100%;
}
.contact-info i {
font-size: 1.5rem;
margin-right: 1rem;
color: var(--secondary);
}
/* Footer */
footer {
background: var(--dark);
color: var(--light);
padding: 6rem 0 2rem 0;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to bottom, var(--light), transparent);
transform: translateY(-100%);
}
footer h5, footer h6 {
color: var(--light);
font-weight: 700;
margin-bottom: 1.5rem;
}
footer a {
color: #cbd5e1;
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
margin-bottom: 0.5rem;
}
footer a:hover {
color: var(--secondary);
transform: translateX(5px);
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
margin-right: 0.5rem;
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: var(--secondary);
color: var(--dark);
transform: translateY(-3px);
}
/* ===== INLINE <style> BLOCK #5 ===== */
/* --- ESTO SOLO AFECTA A #ventas --- */
#ventas .ventas-wrapper {
overflow-x: auto;
scroll-behavior: smooth;
white-space: nowrap;
padding: 10px 0;
}
/* Ocultar la barra de scroll SOLO en desktop */
@media (min-width: 992px) {
#ventas .ventas-wrapper {
-ms-overflow-style: none; /* IE/Edge */
scrollbar-width: none; /* Firefox */
}
#ventas .ventas-wrapper::-webkit-scrollbar { /* Chrome/Safari */
display: none;
}
}
#ventas .ventas-track {
display: flex;
gap: 20px;
}
/* Imágenes grandes, respetando su contenido */
#ventas .img-ventas {
flex: 0 0 auto;
height: clamp(260px, 70vw, 520px);
width: auto;
object-fit: contain;
border-radius: 10px;
transition: transform 0.3s;
background: #111;
}
#ventas .img-ventas:hover {
transform: scale(1.03);
}
#ventas .btn-ventas {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.2);
color: white;
border: none;
font-size: 2rem;
width: 56px;
height: 56px;
border-radius: 50%;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(6px);
transition: all 0.2s ease;
}
#ventas .btn-ventas:hover {
background-color: rgba(255, 255, 255, 0.3);
transform: translateY(-50%) scale(1.08);
}
#ventas .btn-ventas.left { left: 10px; }
#ventas .btn-ventas.right { right: 10px; }
/* En mobile escondo los botones y hago aún más grande la imagen */
@media (max-width: 991px) {
#ventas .btn-ventas { display: none; }
#ventas .img-ventas {
height: clamp(280px, 85vw, 480px);
}
}
/* ===== INLINE <style> BLOCK #6 ===== */
/* Contenedor de botones flotantes */
.social-float-container {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
display: flex;
flex-direction: column-reverse;
gap: 15px;
align-items: flex-end;
}
/* Estilos base para todos los botones sociales */
.social-float {
position: relative;
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.social-float:hover {
transform: translateY(-5px) rotate(5deg) scale(1.1);
}
.social-button {
display: block;
width: 70px;
height: 70px;
border-radius: 50%;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
position: relative;
transition: all 0.3s ease;
animation: float 3s ease-in-out infinite;
color: white;
text-decoration: none;
}
.social-button:hover {
transform: scale(1.1);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.social-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 30px;
}
.social-pulse {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
animation: pulse 2s infinite;
}
.social-pulse-delayed {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
animation: pulse 2s infinite 0.5s;
}
.social-tooltip {
position: absolute;
right: 90px;
top: 50%;
transform: translateY(-50%);
background: white;
color: #333;
padding: 12px 15px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
width: 200px;
text-align: center;
}
.social-tooltip small {
display: block;
font-size: 12px;
color: #666;
font-weight: normal;
margin-top: 3px;
}
.tooltip-arrow {
position: absolute;
right: -10px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid white;
}
.social-float:hover .social-tooltip {
opacity: 1;
visibility: visible;
right: 80px;
}
/* Estilos específicos para cada botón */
.whatsapp-button {
background: #25D366;
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.whatsapp-button:hover {
background: #128C7E;
box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}
.whatsapp-pulse {
background: rgba(37, 211, 102, 0.6);
}
.whatsapp-pulse-delayed {
background: rgba(37, 211, 102, 0.4);
}
.instagram-button {
background: #E1306C;
box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}
.instagram-button:hover {
background: #C13584;
box-shadow: 0 15px 30px rgba(193, 53, 132, 0.4);
}
.instagram-pulse {
background: rgba(225, 48, 108, 0.6);
}
.instagram-pulse-delayed {
background: rgba(193, 53, 132, 0.4);
}
.facebook-button {
background: #1877F2;
box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}
.facebook-button:hover {
background: #166FE5;
box-shadow: 0 15px 30px rgba(22, 111, 229, 0.4);
}
.facebook-pulse {
background: rgba(24, 119, 242, 0.6);
}
.facebook-pulse-delayed {
background: rgba(22, 111, 229, 0.4);
}
/* Animaciones */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
@keyframes pulse {
0% { transform: scale(0.8); opacity: 0; }
70% { transform: scale(1.3); opacity: 0.4; }
100% { transform: scale(1.4); opacity: 0; }
}
/* Efecto de latido al cargar */
@keyframes heartbeat {
0% { transform: scale(1); }
25% { transform: scale(1.1); }
50% { transform: scale(1); }
75% { transform: scale(1.1); }
100% { transform: scale(1); }
}
/* Animación inicial para los botones */
.social-button {
animation: heartbeat 1.5s ease 2s 2, float 3s ease-in-out infinite 3s;
}
/* Mostrar botones con un pequeño retraso entre ellos */
.instagram-float { animation: fadeInUp 0.5s ease 0.2s both; }
.facebook-float { animation: fadeInUp 0.5s ease 0.4s both; }
.whatsapp-float { animation: fadeInUp 0.5s ease 0.6s both; }
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 768px) {
.social-float-container {
bottom: 20px;
right: 20px;
}
.social-button {
width: 60px;
height: 60px;
}
.social-icon {
font-size: 25px;
}
.social-tooltip {
display: none;
}
}