gasistamatriculadomarcelo.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.csshttps://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swaphttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css:root {
--primary: #FFC107; /* Amarillo principal */
--primary-dark: #41464f;
--primary-light: #41464f;
--dark: #121212;
--darker: #0A0A0A;
--dark-light: #1E1E1E;
--light: #F5F5F5;
--gray: #ffff;
--gray-dark: #9E9E9E;
--success: #9E9E9E;
--danger: #41464f;
--info: #9E9E9E;
--font-main: 'Poppins', sans-serif;
--font-heading: 'Montserrat', sans-serif;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
--shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.05);
--shadow-primary: 0 10px 20px rgba(255,193,7,0.2);
--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
--border-radius: 12px;
--border-radius-lg: 16px;
--border-radius-xl: 24px;
}
.text-muted { color: rgba(255,255,255,.80) !important; }
.form-label { color: rgba(255,255,255,.80) !important; }
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
font-family: var(--font-main);
background-color: var(--darker);
color: var(--light);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 800;
line-height: 1.2;
margin-bottom: 1rem;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
img {
max-width: 100%;
height: auto;
}
/* Navbar */
.navbar {
background: rgba(10, 10, 10, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 1rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
transition: var(--transition);
}
.navbar.scrolled {
background: rgba(10, 10, 10, 0.98);
box-shadow: var(--shadow-lg);
padding: 0.5rem 0;
}
.navbar-brand {
font-weight: 800;
font-size: 1.5rem;
color: var(--light);
display: flex;
align-items: center;
}
.navbar-brand span {
color: var(--primary);
margin-right: 0.5rem;
font-size: 1.8rem;
}
.navbar-toggler {
border: none;
color: var(--light);
font-size: 1.5rem;
padding: 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
.nav-link {
font-weight: 500;
padding: 0.5rem 1rem;
color: var(--light);
opacity: 0.9;
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 1rem;
right: 1rem;
height: 2px;
background: var(--primary);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
color: var(--primary);
opacity: 1;
}
.nav-link:hover::after,
.nav-link.active::after {
transform: scaleX(1);
transform-origin: left;
}
.btn {
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
transition: var(--transition);
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.btn-brand {
background-color: var(--primary);
color: var(--dark);
border: none;
box-shadow: var(--shadow-primary);
}
.btn-brand:hover {
background-color: var(--primary-dark);
color: var(--dark);
transform: translateY(-2px);
box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}
.btn-outline-light {
border: 2px solid rgba(255, 255, 255, 0.2);
color: var(--light);
background: transparent;
}
.btn-outline-light:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.3);
color: var(--light);
transform: translateY(-2px);
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
}
.hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
z-index: 0;
animation: pulse 15s infinite alternate;
}
.hero::after {
content: '';
position: absolute;
bottom: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
z-index: 0;
animation: pulse 20s infinite alternate-reverse;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 0.8;
}
100% {
transform: scale(1.2);
opacity: 0.4;
}
}
.hero-content {
position: relative;
z-index: 1;
}
.hero h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(to right, var(--light) 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p.lead {
font-size: 1.25rem;
color: var(--gray);
max-width: 600px;
margin-bottom: 2rem;
}
.badge-pay {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
background: rgba(255, 193, 7, 0.15);
color: var(--primary);
border: 1px solid rgba(255, 193, 7, 0.3);
border-radius: 50px;
font-weight: 600;
margin-bottom: 1.5rem;
backdrop-filter: blur(5px);
}
.feature-list {
background: rgba(30, 30, 30, 0.5);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--border-radius-lg);
padding: 1.5rem;
backdrop-filter: blur(10px);
}
.feature-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 0.75rem 0;
}
.icon-pill {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
background: rgba(255, 193, 7, 0.15);
color: var(--primary);
border: 1px solid rgba(255, 193, 7, 0.3);
flex-shrink: 0;
transition: var(--transition);
}
.feature-item:hover .icon-pill {
background: rgba(255, 193, 7, 0.3);
transform: rotate(5deg) scale(1.05);
}
.feature-text strong {
color: var(--light);
}
.small-note {
font-size: 0.9rem;
color: var(--gray);
display: flex;
align-items: center;
gap: 0.5rem;
margin-top: 1.5rem;
}
/* Sections */
.section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-size: clamp(2rem, 5vw, 2.5rem);
margin-bottom: 2rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--primary);
border-radius: 2px;
/* ...cortado... */
/* Variables CSS para fácil mantenimiento */
:root {
--whatsapp-color: #25D366;
--whatsapp-hover: #128C7E;
--instagram-color: #E1306C;
--instagram-hover: #C13584;
--facebook-color: #1877F2;
--facebook-hover: #166FE5;
--shadow-intensity: 0.3;
--transition-speed: 0.25s;
}
/* Contenedor mejorado con mejor z-index management */
.social-float-container {
position: fixed;
bottom: 25px;
right: 25px;
z-index: 1000;
display: flex;
flex-direction: column;
gap: 15px;
align-items: flex-end;
pointer-events: none; /* Mejor manejo de eventos */
}
/* Optimización de animaciones con will-change */
.social-float {
position: relative;
transition: all var(--transition-speed) ease;
will-change: transform;
pointer-events: auto;
}
.social-float:hover {
transform: translateY(-5px);
filter: brightness(1.1);
}
/* Botón rediseñado para mejor rendimiento */
.social-button {
display: flex;
justify-content: center;
align-items: center;
width: 60px;
height: 60px;
border-radius: 50%;
box-shadow: 0 4px 15px rgba(0, 0, 0, calc(var(--shadow-intensity) * 0.7));
position: relative;
transition: all var(--transition-speed) ease;
color: white;
text-decoration: none;
overflow: hidden;
will-change: transform, box-shadow;
}
.social-button:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px rgba(0, 0, 0, calc(var(--shadow-intensity) * 0.9));
}
/* Optimización de iconos */
.social-icon {
font-size: 28px;
z-index: 2;
position: relative;
}
/* Efectos de pulso optimizados */
.social-pulse,
.social-pulse-delayed {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
z-index: 1;
}
.social-pulse {
animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
.social-pulse-delayed {
animation: pulse 2s infinite 0.5s cubic-bezier(0.4, 0, 0.6, 1);
}
/* Tooltip mejorado con mejor legibilidad */
.social-tooltip {
position: absolute;
right: 75px;
top: 50%;
transform: translateY(-50%);
background: white;
color: #333;
padding: 10px 12px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
opacity: 0;
visibility: hidden;
transition: all var(--transition-speed) ease;
width: 180px;
text-align: center;
z-index: 10;
backdrop-filter: blur(2px);
will-change: opacity, visibility, right;
}
.social-tooltip small {
display: block;
font-size: 11px;
color: #666;
font-weight: normal;
margin-top: 4px;
line-height: 1.3;
}
.tooltip-arrow {
position: absolute;
right: -8px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 8px solid white;
}
.social-float:hover .social-tooltip {
opacity: 1;
visibility: visible;
right: 70px;
}
/* Estilos específicos para cada botón con variables */
.whatsapp-button {
background: var(--whatsapp-color);
box-shadow: 0 4px 15px rgba(37, 211, 102, calc(var(--shadow-intensity) * 0.7));
}
.whatsapp-button:hover {
background: var(--whatsapp-hover);
}
.whatsapp-pulse {
background: rgba(37, 211, 102, 0.5);
}
.instagram-button {
background: var(--instagram-color);
box-shadow: 0 4px 15px rgba(225, 48, 108, calc(var(--shadow-intensity) * 0.7));
}
.instagram-button:hover {
background: var(--instagram-hover);
}
.instagram-pulse {
background: rgba(225, 48, 108, 0.5);
}
.facebook-button {
background: var(--facebook-color);
box-shadow: 0 4px 15px rgba(24, 119, 242, calc(var(--shadow-intensity) * 0.7));
}
.facebook-button:hover {
background: var(--facebook-hover);
}
.facebook-pulse {
background: rgba(24, 119, 242, 0.5);
}
/* Animaciones optimizadas para rendimiento */
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
@keyframes pulse {
0% { transform: scale(0.85); opacity: 0.5; }
70% { transform: scale(1.15); opacity: 0.2; }
100% { transform: scale(1.25); opacity: 0; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Efecto de aparición escalonada */
.social-float {
opacity: 0;
transform: translateY(20px);
animation: fadeIn 0.5s forwards;
}
.whatsapp-float { animation-delay: 0.1s; }
.instagram-float { animation-delay: 0.3s; }
.facebook-float { animation-delay: 0.5s; }
/* Responsive mejorado */
@media (max-width: 768px) {
.social-float-container {
bottom: 15px;
right: 15px;
gap: 10px;
}
.social-button {
width: 50px;
height: 50px;
}
.social-icon {
font-size: 22px;
}
.social-tooltip {
display: none;
}
/* Mostrar tooltip al tocar en móviles */
.social-float.active .social-tooltip {
display: block;
opacity: 1;
visibility: visible;
right: 60px;
animation: fadeIn 0.3s forwards;
}
}
/* Modo de preferencia de reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
.social-button,
.social-float,
.social-tooltip {
transition: none !important;
animation: none !important;
}
.social-float {
opacity: 1;
transform: none;
}
}
sysconstrucciones.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.csshttps://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap:root {
--primary-color: #1a5f7a;
--secondary-color: #57c5b6;
--accent-color: #282c34;
--dark-color: #b54925;
--light-color: #f9f9f9;
--text-color: #333333;
--text-light: #777777;
--gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--text-color);
scroll-behavior: smooth;
overflow-x: hidden;
background-color: #f8f9fa;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
}
/* Navbar */
.navbar {
padding: 20px 0;
transition: all 0.3s ease;
background-color: #b54925;
backdrop-filter: blur(10px);
}
.navbar.scrolled {
padding: 10px 0;
background-color: #b54925;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.8rem;
color: white !important;
}
.navbar-brand span {
color: var(--secondary-color);
}
.navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
padding: 8px 15px;
margin: 0 5px;
position: relative;
transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
color: white;
}
.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 15px;
width: 0;
height: 2px;
background-color: var(--secondary-color);
transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
width: calc(100% - 30px);
}
/* Hero Section */
.hero {
position: relative;
height: 100vh;
min-height: 700px;
display: flex;
align-items: flex-end;
padding-bottom: 120px;
background: linear-gradient(rgba(0, 43, 91, 0.4), rgba(0, 43, 91, 0.4)), url('img/hero3.png') center/cover no-repeat;
color: white;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 80px;
background: linear-gradient(transparent, var(--light-color));
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.9;
animation: fadeInUp 1s ease 0.2s forwards;
opacity: 0;
}
.hero-btn {
display: inline-block;
padding: 15px 30px;
background-color: var(--secondary-color);
color: white;
border-radius: 50px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
border: none;
position: relative;
overflow: hidden;
animation: fadeInUp 1s ease 0.4s forwards;
opacity: 0;
}
.hero-btn:hover {
background-color: var(--accent-color);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.hero-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: 0.5s;
}
.hero-btn:hover::before {
left: 100%;
}
.scroll-down {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: white;
font-size: 2rem;
animation: bounce 2s infinite;
cursor: pointer;
z-index: 2;
}
/* Secciones generales */
section {
padding: 100px 0;
position: relative;
}
.section-title {
text-align: center;
margin-bottom: 60px;
position: relative;
}
.section-title h2 {
font-size: 2.5rem;
color: var(--dark-color);
margin-bottom: 20px;
position: relative;
display: inline-block;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: var(--gradient-primary);
}
.section-title p {
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
}
/* Quiénes Somos */
#quienessomos {
background-color: white;
}
.about-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.about-content p {
font-size: 1.1rem;
margin-bottom: 30px;
}
.signature {
font-family: 'Playfair Display', serif;
font-style: italic;
font-size: 1.5rem;
color: var(--primary-color);
margin-top: 30px;
}
/* Servicios */
#servicios {
background-color: var(--light-color);
}
.service-card {
background: white;
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
text-align: center;
height: 100%;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient-primary);
color: white;
border-radius: 50%;
font-size: 2rem;
}
.service-card h3 {
margin-bottom: 15px;
color: var(--dark-color);
}
.service-card p {
color: var(--text-light);
}
/* Por Qué Elegirnos */
#elegirnos {
background: var(--gradient-primary);
color: white;
}
#elegirnos .section-title h2 {
color: white;
}
#elegirnos .section-title p {
color: rgba(255, 255, 255, 0.8);
}
.feature-box {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-box:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--secondary-color);
}
.feature-box h3 {
margin-bottom: 15px;
}
.feature-box p {
opacity: 0.9;
}
/* Galería de trabajos */
#trabajos {
padding: 0;
background-color: var(--dark-color);
}
.portfolio-title {
padding: 80px 0 0;
text-align: center;
color: white;
}
.portfolio-title h2 {
color: white;
}
.portfolio-title p {
color: rgba(255, 255, 255, 0.8);
}
.portfolio-container {
padding: 50px 0 100px;
}
.portfolio-item {
position: relative;
overflow: hidden;
border
/* ...cortado... */
/* Estilos base */
.floating-social-buttons {
position: fixed;
bottom: 30px;
left: 30px;
display: flex;
flex-direction: column;
gap: 15px;
z-index: 9999;
filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}
/* Contenedor de botones WhatsApp */
.whatsapp-btn-container {
position: relative;
}
/* Estilo base para botones */
.whatsapp-btn, .social-btn {
position: relative;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: white;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
overflow: visible;
}
/* Efectos hover */
.whatsapp-btn:hover, .social-btn:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
/* WhatsApp 1 - Verde más claro */
.whatsapp-1 {
background: linear-gradient(135deg, #25d366, #5efb8d);
}
/* WhatsApp 2 - Verde más oscuro */
.whatsapp-2 {
background: linear-gradient(135deg, #128c7e, #25d366);
}
/* Facebook */
.facebook {
background: linear-gradient(135deg, #3b5998, #6494ed);
}
/* Instagram */
.instagram {
background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
/* Burbuja de notificación */
.notification-bubble {
position: absolute;
top: -5px;
right: -5px;
width: 25px;
height: 25px;
background: #ff3b30;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: bold;
animation: pulse 1.5s infinite;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
/* Tooltip WhatsApp */
.whatsapp-tooltip {
position: absolute;
left: 75px;
top: 50%;
transform: translateY(-50%);
background: white;
color: #333;
padding: 8px 12px;
border-radius: 8px;
font-size: 14px;
font-family: 'Segoe UI', sans-serif;
opacity: 0;
pointer-events: none;
white-space: nowrap;
box-shadow: 0 3px 10px rgba(0,0,0,0.15);
transition: all 0.3s ease;
border-left: 4px solid #25d366;
line-height: 1.4;
}
.whatsapp-btn-container:hover .whatsapp-tooltip {
opacity: 1;
left: 80px;
}
/* Animaciones */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-8px); }
100% { transform: translateY(0px); }
}
/* Efecto de mensaje entrante */
.whatsapp-btn::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: inherit;
z-index: -1;
opacity: 0;
animation: messageIn 3s infinite;
}
.whatsapp-1::after {
animation-delay: 0.5s;
}
.whatsapp-2::after {
animation-delay: 1s;
}
@keyframes messageIn {
0% { transform: scale(1); opacity: 0.7; }
100% { transform: scale(1.8); opacity: 0; }
}
/* Responsive */
@media (max-width: 768px) {
.floating-social-buttons {
bottom: 20px;
left: 15px;
gap: 12px;
}
.whatsapp-btn, .social-btn {
width: 50px;
height: 50px;
font-size: 24px;
}
.notification-bubble {
width: 20px;
height: 20px;
font-size: 10px;
}
.whatsapp-tooltip {
font-size: 12px;
padding: 6px 10px;
}
}
aldeadelahierba.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.csshttps://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swaphttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css:root {
--primary: #2f7d59; /* verde principal */
--primary-700: #1e5c42;
--primary-900: #0f3d2a;
--accent: #7cc29e;
--accent-light: #d4f0e1;
--ink: #1d2730;
--ink-light: #4a5765;
--muted: #6b7a89;
--light: #f8faf9;
--bg: #f7faf8;
--glass: rgba(255,255,255,.85);
--shadow-sm: 0 4px 12px rgba(0,0,0,.08);
--shadow-md: 0 8px 24px rgba(0,0,0,.12);
--shadow-lg: 0 16px 48px rgba(0,0,0,.16);
--ticker-img-size: 400px; /* Tamaño del TICKER (desktop) */
--border-radius: 16px;
--transition: all 0.3s ease;
}
* {
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background: var(--bg);
color: var(--ink);
line-height: 1.6;
scroll-behavior: smooth;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.3;
}
a {
text-decoration: none;
transition: var(--transition);
}
/* NAVBAR */
.navbar {
backdrop-filter: saturate(180%) blur(12px);
background: rgba(255,255,255,.85);
border-bottom: 1px solid rgba(0,0,0,.05);
padding: 1rem 0;
transition: var(--transition);
}
.navbar.scrolled {
box-shadow: var(--shadow-sm);
background: rgba(255,255,255,.95);
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.5rem;
color: var(--primary-900);
}
.navbar-brand span {
color: var(--primary);
}
.navbar .nav-link {
font-weight: 500;
color: var(--ink-light);
padding: 0.5rem 1rem;
position: relative;
}
.navbar .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 1rem;
right: 1rem;
height: 2px;
background: var(--primary);
transform: scaleX(0);
transition: var(--transition);
transform-origin: center;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
color: var(--primary);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
transform: scaleX(1);
}
.navbar-toggler {
border: none;
padding: 0.5rem;
font-size: 1.25rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
/* HERO */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
background:
linear-gradient(135deg, rgba(47,125,89,.03) 0%, rgba(255,255,255,1) 100%),
url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255,255,255,.6);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero .card {
background: var(--glass);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,.3);
border-radius: var(--border-radius);
box-shadow: var(--shadow-lg);
overflow: hidden;
transition: var(--transition);
}
.hero .card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.hero-title {
font-size: 3rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
background: linear-gradient(to right, var(--primary-700), var(--primary-900));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--ink-light);
margin-bottom: 2rem;
}
.hero-image {
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
transition: var(--transition);
border: 8px solid white;
}
.hero-image:hover {
transform: perspective(1000px) rotateY(0) rotateX(0);
}
/* BUTTONS */
.btn {
font-weight: 500;
padding: 0.75rem 1.5rem;
border-radius: 12px;
transition: var(--transition);
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-primary {
background: var(--primary);
border-color: var(--primary);
box-shadow: 0 4px 14px rgba(47,125,89,.3);
}
.btn-primary:hover {
background: var(--primary-700);
border-color: var(--primary-700);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(47,125,89,.4);
}
.btn-outline-primary {
border-color: var(--primary);
color: var(--primary);
background: transparent;
}
.btn-outline-primary:hover {
background: var(--primary);
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 14px rgba(47,125,89,.3);
}
.btn-lg {
padding: 1rem 2rem;
font-size: 1.1rem;
}
/* SECTIONS */
.section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--primary);
border-radius: 2px;
}
.section-sub {
font-size: 1.1rem;
color: var(--muted);
max-width: 700px;
margin-bottom: 3rem;
}
.icon-badge {
width: 70px;
height: 70px;
border-radius: 18px;
display: grid;
place-items: center;
background: linear-gradient(135deg, var(--accent-light), white);
color: var(--primary);
font-size: 28px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.icon-badge:hover {
transform: translateY(-5px) rotate(5deg);
box-shadow: var(--shadow-md);
}
/* PRODUCT GRID */
.product-card {
border: 1px solid rgba(0,0,0,.06);
border-radius: var(--border-radius);
background: white;
height: 100%;
transition: var(--transition);
overflow: hidden;
box-shadow: var(--shadow-sm);
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-md);
}
.product-card .card-body {
padding: 2rem;
}
.product-card h5 {
color: var(--primary-700);
margin-bottom: 1rem;
position: relative;
padding-bottom: 0.5rem;
}
.product-card h5::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: var(--accent);
}
/* FEATURES / REASONS */
.feature-card {
background: white;
border: 1px solid rgba(0,0,0,.05);
border-radius: var(--border-radius);
padding: 2rem;
height: 100%;
transition: var(--transition);
box-shadow: var(--shadow-sm);
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--primary);
transition: var(--transition);
}
.feature-card:hover {
transform: t
/* ...cortado... */
/* 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);
}
/* Estilos para el botón de TikTok */
.tiktok-button {
background: #000000;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.tiktok-button:hover {
background: #FE2C55;
box-shadow: 0 15px 30px rgba(254, 44, 85, 0.4);
}
.tiktok-pulse {
background: rgba(0, 0, 0, 0.6);
}
.tiktok-pulse-delayed {
background: rgba(254, 44, 85, 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 */
.tiktok-float { animation: fadeInUp 0.5s ease 0.1s both; }
.instagram-float { animation: fadeInUp 0.5s ease 0.3s both; }
.facebook-float { animation: fadeInUp 0.5s ease 0.5s both; }
.whatsapp-float { animation: fadeInUp 0.5s ease 0.7s 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;
}
}
confiteriaexpress
https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Orbitron:wght@500&family=Press+Start+2P&display=swap:root {
--primary-color: #ff00c1;
--secondary-color: #00f0ff;
--accent-color: #ff3e9d;
--text-color: #ffffff;
--dark-bg: #0f0f1a;
--neon-glow: 0 0 10px var(--primary-color),
0 0 20px var(--secondary-color),
0 0 30px rgba(255, 62, 157, 0.5);
}
html, body {
margin: 0;
padding: 0;
height: 100%;
background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 50%, #24243e 100%);
font-family: 'Montserrat', sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: var(--text-color);
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(255, 0, 193, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 0, 193, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
z-index: -1;
opacity: 0.5;
}
body.fade-in {
animation: fadeIn 1s ease-out forwards;
}
body.fade-out {
animation: fadeOut 1s ease-out forwards;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
.title {
font-family: 'Press Start 2P', 'Orbitron', sans-serif;
font-size: 2.5rem;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 3px;
color: var(--text-color);
text-shadow: var(--neon-glow);
position: relative;
padding: 15px;
border: 2px solid var(--secondary-color);
box-shadow: inset 0 0 15px var(--primary-color), 0 0 15px var(--secondary-color);
background: rgba(15, 15, 26, 0.7);
}
.title::after {
content: 'â–¼';
position: absolute;
bottom: -25px;
left: 50%;
transform: translateX(-50%);
color: var(--secondary-color);
font-size: 1rem;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
40% {transform: translateY(-10px) translateX(-50%);}
60% {transform: translateY(-5px) translateX(-50%);}
}
.video-container {
position: relative;
max-width: 90%;
max-height: 70vh;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 0 30px rgba(106, 17, 203, 0.5);
margin-bottom: 2rem;
border: 1px solid var(--primary-color);
transition: all 0.5s ease;
}
.video-container:hover {
box-shadow: 0 0 50px rgba(255, 0, 193, 0.7);
transform: scale(1.01);
}
.video-container.fade-out {
opacity: 0;
transform: scale(0.9);
}
video {
max-width: 100%;
max-height: 100%;
display: block;
filter: hue-rotate(0deg) saturate(1.2);
transition: filter 0.5s ease;
}
.video-container:hover video {
filter: hue-rotate(10deg) saturate(1.5);
}
.buttons-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
perspective: 1000px;
}
.boton {
padding: 14px 30px;
font-size: 1rem;
font-weight: 600;
color: white;
background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border: none;
border-radius: 0;
cursor: pointer;
text-decoration: none;
transition: all 0.4s ease;
box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
min-width: 200px;
text-align: center;
position: relative;
overflow: hidden;
font-family: 'Orbitron', sans-serif;
letter-spacing: 1px;
text-transform: uppercase;
clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}
.boton:hover {
transform: translateY(-3px) rotateX(15deg);
box-shadow: 0 10px 25px rgba(255, 0, 193, 0.6);
text-shadow: 0 0 5px white;
}
.boton:active {
transform: translateY(1px);
}
.boton::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
transparent 45%,
rgba(255, 255, 255, 0.3) 50%,
transparent 55%
);
transform: rotate(30deg);
transition: all 0.5s ease;
}
.boton:hover::before {
left: 100%;
}
/* Overlay vaporwave/post-punk mejorado */
#redirect-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(15, 15, 26, 0.85); /* Más transparente */
backdrop-filter: blur(5px); /* Efecto de desenfoque */
color: white;
display: none;
justify-content: center;
align-items: center;
font-size: 1.5rem;
z-index: 9999;
text-align: center;
padding: 20px;
opacity: 0;
transition: opacity 0.8s ease;
flex-direction: column;
font-family: 'Press Start 2P', cursive;
}
#redirect-overlay.active {
display: flex;
opacity: 1;
}
#redirect-overlay::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(255, 0, 193, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 0, 193, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
opacity: 0.5;
}
.redirect-content {
position: relative;
z-index: 2;
text-align: center;
width: 80%;
max-width: 500px;
}
.redirect-text {
margin-bottom: 30px;
text-shadow: 0 0 10px var(--secondary-color);
font-size: 1.2rem;
position: relative;
}
.redirect-text span {
color: var(--secondary-color);
animation: glitch 1s linear infinite;
}
@keyframes glitch {
0% {
text-shadow: 0.05em 0 0 var(--primary-color), -0.05em -0.025em 0 var(--secondary-color);
}
14% {
text-shadow: 0.05em 0 0 var(--primary-color), -0.05em -0.025em 0 var(--secondary-color);
}
15% {
text-shadow: -0.05em -0.025em 0 var(--primary-color), 0.025em 0.025em 0 var(--secondary-color);
}
49% {
text-shadow: -0.05em -0.025em 0 var(--primary-color), 0.025em 0.025em 0 var(--secondary-color);
}
50% {
text-shadow: 0.025em 0.05em 0 var(--primary-color), 0.05em 0 0 var(--secondary-color);
}
99% {
text-shadow: 0.025em 0.05em 0 var(--primary-color), 0.05em 0 0 var(--secondary-color);
}
100% {
text-shadow: -0.025em 0 0 var(--primary-color), -0.025em -0.025em 0 var(--secondary-color);
}
}
/* Barra de progreso mejorada */
.loading-container {
width: 100%;
max-width: 400px;
margin: 20px 0;
}
.loading-bar {
width: 100%;
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
overflow: hidden;
position: relative;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.loading-progress {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
box-shadow: 0 0 10px var(--primary-color);
transition: width 0.3s ease-out;
}
.progress-percentage {
font-famil
/* ...cortado... */
#btnCerrarSesion {
background: linear-gradient(45deg, #ff00ff, #00ffff);
border: none;
color: white;
padding: 10px 20px;
text-transform: uppercase;
font-family: 'Courier New', monospace;
font-weight: bold;
letter-spacing: 2px;
border-radius: 0;
box-shadow: 0 0 10px rgba(255, 0, 255, 0.7),
0 0 20px rgba(0, 255, 255, 0.5);
text-shadow: 0 0 5px #fff;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
#btnCerrarSesion:hover {
background: linear-gradient(45deg, #00ffff, #ff00ff);
box-shadow: 0 0 15px rgba(255, 0, 255, 0.9),
0 0 25px rgba(0, 255, 255, 0.7);
transform: translateY(-2px);
}
#btnCerrarSesion::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(255, 255, 255, 0.3) 0%,
rgba(255, 255, 255, 0) 60%
);
transform: rotate(30deg);
}
#btnCerrarSesion:hover::before {
animation: shine 1.5s infinite;
}
@keyframes shine {
0% {
left: -50%;
}
100% {
left: 150%;
}
}
<style>
/* Modal más pequeño y compacto */
#loginModal .modal-dialog {
max-width: 320px;
margin: 2rem auto; /* un poco más abajo */
}
/* Fondo oscuro translúcido */
#loginModal .modal-content {
background: transparent;
backdrop-filter: blur(8px);
border: none;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
overflow: hidden;
position: relative;
}
/* Borde fino blanco */
#loginModal .modal-content::after {
content: '';
position: absolute;
inset: 0;
border-radius: 10px;
padding: 0.5px;
background: rgba(255, 255, 255, 0.15);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
/* Header más bajo y sin botón de cerrar */
#loginModal .modal-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 0.75rem 1rem;
}
#loginModal .modal-title {
color: white;
font-size: 1rem;
font-weight: 500;
margin: 0 auto;
}
/* Ocultamos el botón cerrar (X) */
#loginModal .btn-close {
display: none;
}
/* Cuerpo del modal compacto */
#loginModal .modal-body {
padding: 1rem;
}
#loginModal .form-control {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1);
color: white;
border-radius: 6px;
padding: 8px 12px;
margin-bottom: 0.8rem;
font-size: 0.9rem;
}
#loginModal .btn-login {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
border-radius: 6px;
padding: 8px 0;
font-size: 0.9rem;
width: 100%;
transition: all 0.2s ease;
}
#loginModal .btn-login:hover {
background: rgba(255, 255, 255, 0.15);
}
demo-bar-2
https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Orbitron:wght@500&family=Press+Start+2P&display=swap:root {
--primary-color: #ff00c1;
--secondary-color: #00f0ff;
--accent-color: #ff3e9d;
--text-color: #ffffff;
--dark-bg: #0f0f1a;
--neon-glow: 0 0 10px var(--primary-color),
0 0 20px var(--secondary-color),
0 0 30px rgba(255, 62, 157, 0.5);
}
html, body {
margin: 0;
padding: 0;
height: 100%;
background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 50%, #24243e 100%);
font-family: 'Montserrat', sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: var(--text-color);
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(255, 0, 193, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 0, 193, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
z-index: -1;
opacity: 0.5;
}
body.fade-in {
animation: fadeIn 1s ease-out forwards;
}
body.fade-out {
animation: fadeOut 1s ease-out forwards;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
.title {
font-family: 'Press Start 2P', 'Orbitron', sans-serif;
font-size: 2.5rem;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 3px;
color: var(--text-color);
text-shadow: var(--neon-glow);
position: relative;
padding: 15px;
border: 2px solid var(--secondary-color);
box-shadow: inset 0 0 15px var(--primary-color), 0 0 15px var(--secondary-color);
background: rgba(15, 15, 26, 0.7);
}
.title::after {
content: 'â–¼';
position: absolute;
bottom: -25px;
left: 50%;
transform: translateX(-50%);
color: var(--secondary-color);
font-size: 1rem;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
40% {transform: translateY(-10px) translateX(-50%);}
60% {transform: translateY(-5px) translateX(-50%);}
}
.video-container {
position: relative;
max-width: 90%;
max-height: 70vh;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 0 30px rgba(106, 17, 203, 0.5);
margin-bottom: 2rem;
border: 1px solid var(--primary-color);
transition: all 0.5s ease;
}
.video-container:hover {
box-shadow: 0 0 50px rgba(255, 0, 193, 0.7);
transform: scale(1.01);
}
.video-container.fade-out {
opacity: 0;
transform: scale(0.9);
}
video {
max-width: 100%;
max-height: 100%;
display: block;
filter: hue-rotate(0deg) saturate(1.2);
transition: filter 0.5s ease;
}
.video-container:hover video {
filter: hue-rotate(10deg) saturate(1.5);
}
.buttons-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
perspective: 1000px;
}
.boton {
padding: 14px 30px;
font-size: 1rem;
font-weight: 600;
color: white;
background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border: none;
border-radius: 0;
cursor: pointer;
text-decoration: none;
transition: all 0.4s ease;
box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
min-width: 200px;
text-align: center;
position: relative;
overflow: hidden;
font-family: 'Orbitron', sans-serif;
letter-spacing: 1px;
text-transform: uppercase;
clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}
.boton:hover {
transform: translateY(-3px) rotateX(15deg);
box-shadow: 0 10px 25px rgba(255, 0, 193, 0.6);
text-shadow: 0 0 5px white;
}
.boton:active {
transform: translateY(1px);
}
.boton::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
transparent 45%,
rgba(255, 255, 255, 0.3) 50%,
transparent 55%
);
transform: rotate(30deg);
transition: all 0.5s ease;
}
.boton:hover::before {
left: 100%;
}
/* Overlay vaporwave/post-punk mejorado */
#redirect-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(15, 15, 26, 0.85); /* Más transparente */
backdrop-filter: blur(5px); /* Efecto de desenfoque */
color: white;
display: none;
justify-content: center;
align-items: center;
font-size: 1.5rem;
z-index: 9999;
text-align: center;
padding: 20px;
opacity: 0;
transition: opacity 0.8s ease;
flex-direction: column;
font-family: 'Press Start 2P', cursive;
}
#redirect-overlay.active {
display: flex;
opacity: 1;
}
#redirect-overlay::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(255, 0, 193, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 0, 193, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
opacity: 0.5;
}
.redirect-content {
position: relative;
z-index: 2;
text-align: center;
width: 80%;
max-width: 500px;
}
.redirect-text {
margin-bottom: 30px;
text-shadow: 0 0 10px var(--secondary-color);
font-size: 1.2rem;
position: relative;
}
.redirect-text span {
color: var(--secondary-color);
animation: glitch 1s linear infinite;
}
@keyframes glitch {
0% {
text-shadow: 0.05em 0 0 var(--primary-color), -0.05em -0.025em 0 var(--secondary-color);
}
14% {
text-shadow: 0.05em 0 0 var(--primary-color), -0.05em -0.025em 0 var(--secondary-color);
}
15% {
text-shadow: -0.05em -0.025em 0 var(--primary-color), 0.025em 0.025em 0 var(--secondary-color);
}
49% {
text-shadow: -0.05em -0.025em 0 var(--primary-color), 0.025em 0.025em 0 var(--secondary-color);
}
50% {
text-shadow: 0.025em 0.05em 0 var(--primary-color), 0.05em 0 0 var(--secondary-color);
}
99% {
text-shadow: 0.025em 0.05em 0 var(--primary-color), 0.05em 0 0 var(--secondary-color);
}
100% {
text-shadow: -0.025em 0 0 var(--primary-color), -0.025em -0.025em 0 var(--secondary-color);
}
}
/* Barra de progreso mejorada */
.loading-container {
width: 100%;
max-width: 400px;
margin: 20px 0;
}
.loading-bar {
width: 100%;
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
overflow: hidden;
position: relative;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.loading-progress {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
box-shadow: 0 0 10px var(--primary-color);
transition: width 0.3s ease-out;
}
.progress-percentage {
font-famil
/* ...cortado... */
#btnCerrarSesion {
background: linear-gradient(45deg, #ff00ff, #00ffff);
border: none;
color: white;
padding: 10px 20px;
text-transform: uppercase;
font-family: 'Courier New', monospace;
font-weight: bold;
letter-spacing: 2px;
border-radius: 0;
box-shadow: 0 0 10px rgba(255, 0, 255, 0.7),
0 0 20px rgba(0, 255, 255, 0.5);
text-shadow: 0 0 5px #fff;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
#btnCerrarSesion:hover {
background: linear-gradient(45deg, #00ffff, #ff00ff);
box-shadow: 0 0 15px rgba(255, 0, 255, 0.9),
0 0 25px rgba(0, 255, 255, 0.7);
transform: translateY(-2px);
}
#btnCerrarSesion::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(255, 255, 255, 0.3) 0%,
rgba(255, 255, 255, 0) 60%
);
transform: rotate(30deg);
}
#btnCerrarSesion:hover::before {
animation: shine 1.5s infinite;
}
@keyframes shine {
0% {
left: -50%;
}
100% {
left: 150%;
}
}
<style>
/* Modal más pequeño y compacto */
#loginModal .modal-dialog {
max-width: 320px;
margin: 2rem auto; /* un poco más abajo */
}
/* Fondo oscuro translúcido */
#loginModal .modal-content {
background: transparent;
backdrop-filter: blur(8px);
border: none;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
overflow: hidden;
position: relative;
}
/* Borde fino blanco */
#loginModal .modal-content::after {
content: '';
position: absolute;
inset: 0;
border-radius: 10px;
padding: 0.5px;
background: rgba(255, 255, 255, 0.15);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
/* Header más bajo y sin botón de cerrar */
#loginModal .modal-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 0.75rem 1rem;
}
#loginModal .modal-title {
color: white;
font-size: 1rem;
font-weight: 500;
margin: 0 auto;
}
/* Ocultamos el botón cerrar (X) */
#loginModal .btn-close {
display: none;
}
/* Cuerpo del modal compacto */
#loginModal .modal-body {
padding: 1rem;
}
#loginModal .form-control {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1);
color: white;
border-radius: 6px;
padding: 8px 12px;
margin-bottom: 0.8rem;
font-size: 0.9rem;
}
#loginModal .btn-login {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
border-radius: 6px;
padding: 8px 0;
font-size: 0.9rem;
width: 100%;
transition: all 0.2s ease;
}
#loginModal .btn-login:hover {
background: rgba(255, 255, 255, 0.15);
}
hermanosalaobra.com.ar
https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.csshttps://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css:root {
/* 🎛️ Ajuste rápido del tamaño del mosaico del ticker */
--img-size: 500px; /* Cambiá esto y listo */
--brand: #0d6efd;
--brand-2: #6f42c1;
--brand-dark: #0b5ed7;
--brand-light: #e8f0fe;
--text: #1a1a1a;
--text-light: #4a5568;
--muted: #6c757d;
--bg-soft: #f8f9fb;
--bg-dark: #0f1224;
--radius: 18px;
--radius-lg: 24px;
--radius-xl: 32px;
--shadow: 0 10px 30px rgba(0,0,0,.12);
--shadow-lg: 0 15px 40px rgba(0,0,0,.15);
--shadow-brand: 0 10px 30px rgba(13, 110, 253, 0.2);
--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
html, body {
font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
color: var(--text);
scroll-behavior: smooth;
background: #fff;
line-height: 1.6;
}
h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
font-family: 'Montserrat', 'Poppins', sans-serif;
font-weight: 800;
letter-spacing: -0.5px;
}
.btn-brand {
background: linear-gradient(135deg, var(--brand), var(--brand-2));
border: none;
color: #fff;
font-weight: 600;
padding: 0.75rem 1.5rem;
transition: var(--transition);
box-shadow: var(--shadow-brand);
}
.btn-brand:hover {
transform: translateY(-2px);
box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
color: #fff;
}
.btn-outline-brand {
border: 2px solid var(--brand);
color: var(--brand);
font-weight: 600;
transition: var(--transition);
}
.btn-outline-brand:hover {
background: var(--brand);
color: #fff;
box-shadow: var(--shadow-brand);
}
.badge-soft {
background: rgba(13,110,253,.1);
color: var(--brand);
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 50px;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 0.5px;
}
.shadow-soft {
box-shadow: var(--shadow);
transition: var(--transition);
}
.shadow-lg {
box-shadow: var(--shadow-lg);
}
.round-2xl {
border-radius: var(--radius);
}
.round-lg {
border-radius: var(--radius-lg);
}
.round-xl {
border-radius: var(--radius-xl);
}
/* NAVBAR */
.navbar {
backdrop-filter: saturate(180%) blur(12px);
background: rgba(255,255,255,.95);
box-shadow: 0 2px 20px rgba(0,0,0,.05);
padding: 1rem 0;
transition: all 0.4s ease;
}
.navbar.scrolled {
padding: 0.5rem 0;
box-shadow: 0 5px 20px rgba(0,0,0,.08);
}
.navbar-brand {
font-weight: 800;
font-size: 1.25rem;
color: var(--text);
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.navbar-brand i {
color: var(--brand);
font-size: 1.4rem;
}
.nav-link {
font-weight: 500;
color: var(--text-light);
padding: 0.5rem 1rem;
position: relative;
transition: all 0.3s ease;
}
.nav-link:before {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background: linear-gradient(135deg, var(--brand), var(--brand-2));
transition: width 0.3s ease;
}
.nav-link:hover {
color: var(--brand);
}
.nav-link:hover:before {
width: 100%;
}
.nav-link.active {
color: var(--brand) !important;
font-weight: 600;
}
.nav-link.active:before {
width: 100%;
}
/* HERO */
.hero {
position: relative;
overflow: hidden;
min-height: 90vh;
display: grid;
place-items: center;
padding: 6rem 0;
background: radial-gradient(1200px 600px at 10% 10%, rgba(13,110,253,.14), transparent),
radial-gradient(900px 500px at 90% 20%, rgba(111,66,193,.14), transparent),
linear-gradient(180deg,#ffffff 0%, #f7f8ff 100%);
}
.hero-blob {
position: absolute;
inset: auto -20% -20% auto;
width: 55vw;
height: 55vw;
max-width: 820px;
filter: blur(60px);
opacity: .45;
background: conic-gradient(from 120deg at 50% 50%, rgba(13,110,253,.5), rgba(111,66,193,.45), rgba(13,110,253,.5));
border-radius: 50%;
animation: spin 32s linear infinite;
z-index: 0;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-weight: 800;
letter-spacing: -1px;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.hero p.lead {
color: var(--text-light);
font-size: 1.25rem;
max-width: 600px;
margin-bottom: 2rem;
}
.hero-image {
position: relative;
z-index: 1;
transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
animation: float 6s ease-in-out infinite;
box-shadow: var(--shadow-lg);
}
@keyframes float {
0% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0); }
50% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-20px); }
100% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0); }
}
/* SECTIONS */
section {
scroll-margin-top: 100px;
padding: 6rem 0;
position: relative;
}
.section-title {
font-weight: 800;
letter-spacing: -1px;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title:after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 50px;
height: 4px;
background: linear-gradient(135deg, var(--brand), var(--brand-2));
border-radius: 2px;
}
.section-sub {
color: var(--muted);
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto 2rem;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
/* CARDS */
.feature {
transition: var(--transition);
background: #fff;
border: 1px solid rgba(13, 110, 253, 0.1);
overflow: hidden;
position: relative;
z-index: 1;
}
.feature:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(13,110,253,.03), rgba(111,66,193,.03));
z-index: -1;
opacity: 0;
transition: var(--transition);
}
.feature:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
border-color: rgba(13, 110, 253, 0.2);
}
.feature:hover:before {
opacity: 1;
}
.feature i {
font-size: 2.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--brand), var(--brand-2));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.feature h5 {
font-weight: 700;
margin-bottom: 1rem;
}
.feature p {
color: var(--text-light);
}
/* TICKER / WORKS */
.works {
background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0c18 100%);
color: #fff;
position: relative;
padding: 8rem 0;
overflow: hidden;
}
.works:before {
content: '
/* ...cortado... */
.social-fabs{
position:fixed; right:20px; bottom:20px; display:flex; flex-direction:column; gap:12px;
z-index:9999;
}
.social-fabs .fab{
width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
box-shadow:0 8px 24px rgba(0,0,0,.25);
text-decoration:none; transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.social-fabs .fab i{ font-size:28px; color:#fff; line-height:1; }
.social-fabs .fab:hover{ transform:translateY(-2px); box-shadow:0 10px 30px rgba(0,0,0,.3); }
.fab-wa{ background:#25D366; }
.fab-wa:after{ content:''; position:absolute; inset:0; border-radius:50%;
box-shadow:0 0 22px rgba(37,211,102,.65); filter:blur(1px); opacity:.6; }
.fab-ig{
background: radial-gradient(circle at 30% 110%, #f58529, #dd2a7b 40%, #8134af 70%, #515bd4 100%);
}
@media (max-width: 480px){
.social-fabs .fab{ width:50px; height:50px; }
.social-fabs .fab i{ font-size:24px; }
}
@keyframes fadeInOut {
0% { opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { opacity: 0; }
}
.frase-animada {
font-size: 1rem;
color: #222;
font-weight: 500;
animation: fadeInOut 9.14s ease-in-out infinite;
}
/* 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;
}
}