alambradosgonzalez.com.ar
https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700&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.css:root {
--primary-color: #2e7d32;
--primary-dark: #1b5e20;
--primary-light: #81c784;
--secondary-color: #ff9800;
--dark-color: #263238;
--light-color: #f5f5f5;
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
--gradient-secondary: linear-gradient(135deg, var(--secondary-color), #f57c00);
}
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
overflow-x: hidden;
color: var(--dark-color);
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
/* Navbar */
.navbar {
background-color: rgba(0, 0, 0, 0.9) !important;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
padding: 15px 0;
}
.navbar.scrolled {
padding: 10px 0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
font-weight: 700;
font-size: 1.5rem;
color: white !important;
}
.nav-link {
color: rgba(255, 255, 255, 0.9) !important;
font-weight: 500;
margin: 0 10px;
position: relative;
transition: all 0.3s ease;
}
.nav-link:hover {
color: var(--secondary-color) !important;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--secondary-color);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
background: url('img/hero.png') center/cover no-repeat;
color: white;
text-align: center;
padding: 350px 20px;
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 1250px;
padding: 0 20px;
margin-top: 380px;
}
.hero h1 {
font-size: 3.5rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
margin-bottom: 1.5rem;
line-height: 1.2;
animation: fadeInDown 1s ease both;
}
.hero p {
font-size: 1.4rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
animation: fadeInUp 1s ease 0.3s both;
}
.btn-main {
padding: 12px 35px;
font-weight: 600;
border-radius: 50px;
font-size: 1.1rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: none;
z-index: 1;
animation: fadeIn 1s ease 0.6s both;
}
.btn-main::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
z-index: -1;
transition: all 0.3s ease;
}
.btn-main:hover::before {
transform: scale(1.05);
opacity: 0.9;
}
.btn-light {
background-color: white;
color: var(--primary-dark);
}
.btn-light:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-success {
background-color: var(--secondary-color);
border-color: var(--secondary-color);
}
.btn-success:hover {
background-color: #e68a00;
border-color: #e68a00;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Section Styles */
.section {
padding: 80px 0;
position: relative;
}
.section-title {
text-align: center;
margin-bottom: 60px;
position: relative;
font-size: 2.5rem;
color: var(--dark-color);
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: var(--gradient-primary);
margin: 15px auto;
border-radius: 2px;
}
.section-subtitle {
text-align: center;
max-width: 800px;
margin: 0 auto 40px;
font-size: 1.2rem;
color: #555;
}
/* About Section */
.about-section {
background-color: white;
}
.about-content {
display: flex;
align-items: center;
gap: 50px;
}
.about-text {
flex: 1;
}
.about-image {
flex: 1;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.5s ease;
}
.about-image:hover {
transform: scale(1.02);
}
.about-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}
.about-image:hover img {
transform: scale(1.05);
}
/* Features Section */
.features-section {
background-color: var(--light-color);
}
.feature-box {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
text-align: center;
height: 100%;
position: relative;
overflow: hidden;
}
.feature-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 0;
background: var(--gradient-primary);
transition: height 0.3s ease;
}
.feature-box:hover::before {
height: 100%;
}
.feature-box:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 20px;
transition: all 0.3s ease;
}
.feature-box:hover .feature-icon {
color: var(--secondary-color);
transform: scale(1.1);
}
.feature-title {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--dark-color);
}
/* Products Section */
.products-section {
background-color: white;
}
.product-card {
border: none;
border-radius: 15px;
padding: 25px;
text-align: center;
transition: all 0.4s ease;
height: 100%;
background: white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
position: relative;
overflow: hidden;
}
.product-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient-primary);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s ease;
}
.product-card:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.product-img-container {
height: 180px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
position: relative;
overflow: hidden;
border-radius: 10px;
}
.product-img {
max-width: 100%;
max-heig
/* ...cortado... */
.floating-btn {
position: fixed;
bottom: 100px;
right: 20px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 10px;
}
.floating-btn a {
display: flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: 50%;
background-color: #25d366;
color: white;
font-size: 22px;
text-decoration: none;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.floating-btn a.fb { background-color: #3b5998; }
.floating-btn a.ig { background-color: #e4405f; }
.floating-btn a.th { background-color: #000; font-size: 20px; }
refrigeracionrivero.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.csshttps://unpkg.com/[email protected]/dist/aos.csshttps://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap:root {
--primary: #0062cc; /* Azul más intenso */
--secondary: #00d4c8; /* Turquesa brillante */
--accent: #ff6b00; /* Naranja para acentos */
--dark: #1a1a2e; /* Fondo oscuro */
--light: #f8f9fa;
--text-light: #ffffff;
--text-dark: #333333;
--gradient-primary: linear-gradient(135deg, var(--primary) 0%, #004a99 100%);
--gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #00a8b5 100%);
}
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
color: var(--text-dark);
background-color: #fefefe;
}
/* Scrollbar personalizada */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #0052b3;
}
/* Navbar - Moderna con efecto vidrio */
.navbar {
background: rgba(0, 98, 204, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
padding: 15px 0;
}
.navbar.scrolled {
background: rgba(0, 98, 204, 0.95);
padding: 10px 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
letter-spacing: -0.5px;
background: linear-gradient(to right, var(--text-light), #e6f2ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.3s ease;
}
.navbar-brand:hover {
transform: scale(1.02);
}
.navbar .nav-link {
color: var(--text-light);
font-weight: 500;
position: relative;
margin: 0 10px;
padding: 8px 0;
transition: all 0.3s ease;
}
.navbar .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}
.navbar .nav-link:hover {
color: var(--secondary);
}
.navbar .nav-link:hover::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Botón CTA */
.btn-cta {
background: var(--gradient-secondary);
border: none;
color: white;
font-weight: 600;
padding: 10px 25px;
border-radius: 50px;
position: relative;
overflow: hidden;
z-index: 1;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 212, 200, 0.3);
}
.btn-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #00a8b5 0%, var(--secondary) 100%);
z-index: -1;
transition: all 0.3s ease;
opacity: 1;
}
.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 212, 200, 0.4);
color: white;
}
.btn-cta:hover::before {
opacity: 0.9;
}
.btn-cta:active {
transform: translateY(1px);
}
/* Hero Section - Efecto Parallax con animación */
#inicio {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-light);
background: url('img/logoxx.png') center/cover fixed;
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 98, 204, 0.4) 0%, rgba(0, 180, 216, 0.4) 100%);
z-index: 1;
}
#inicio .content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
margin-top: 380px;
}
#inicio h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease;
}
#inicio p {
font-size: 1.5rem;
font-weight: 300;
margin-bottom: 2rem;
text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease 0.2s forwards;
opacity: 0;
}
#inicio .btn-cta {
animation: fadeInUp 1s ease 0.4s forwards;
opacity: 0;
font-size: 1.1rem;
padding: 12px 30px;
}
/* Animaciones clave */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0px);
}
}
/* Section styling */
section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-weight: 700;
margin-bottom: 3rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--secondary);
border-radius: 2px;
}
/* Quiénes somos */
#quienessomos {
background-color: white;
}
#quienessomos h2 {
font-weight: 700;
color: var(--primary);
}
#quienessomos p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
#quienessomos strong {
color: var(--primary);
font-weight: 600;
}
#quienessomos img {
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transition: all 0.5s ease;
}
#quienessomos img:hover {
transform: scale(1.02);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
/* Servicios */
#servicios {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
overflow: hidden;
}
#servicios::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: var(--secondary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
#servicios::after {
content: '';
position: absolute;
bottom: -150px;
left: -150px;
width: 400px;
height: 400px;
background: var(--primary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
.service-card {
background: white;
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.4s ease;
position: relative;
z-index: 1;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: var(--gradient-secondary);
-webkit-background-clip
/* ...cortado... */
:root {
--primary: #0062cc; /* Azul más intenso */
--secondary: #00d4c8; /* Turquesa brillante */
--accent: #ff6b00; /* Naranja para acentos */
--dark: #1a1a2e; /* Fondo oscuro */
--light: #f8f9fa;
--text-light: #ffffff;
--text-dark: #333333;
--gradient-primary: linear-gradient(135deg, var(--primary) 0%, #004a99 100%);
--gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #00a8b5 100%);
}
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
color: var(--text-dark);
background-color: #fefefe;
}
/* Navbar - Moderna con efecto vidrio */
.navbar {
background: rgba(0, 98, 204, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
padding: 15px 0;
}
.navbar.scrolled {
background: rgba(0, 98, 204, 0.95);
padding: 10px 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
letter-spacing: -0.5px;
background: linear-gradient(to right, var(--text-light), #e6f2ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.3s ease;
}
.navbar-brand:hover {
transform: scale(1.02);
}
.navbar .nav-link {
color: var(--text-light);
font-weight: 500;
position: relative;
margin: 0 10px;
padding: 8px 0;
transition: all 0.3s ease;
}
.navbar .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}
.navbar .nav-link:hover {
color: var(--secondary);
}
.navbar .nav-link:hover::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Botón CTA */
.btn-cta {
background: var(--gradient-secondary);
border: none;
color: white;
font-weight: 600;
padding: 10px 25px;
border-radius: 50px;
position: relative;
overflow: hidden;
z-index: 1;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 212, 200, 0.3);
}
.btn-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #00a8b5 0%, var(--secondary) 100%);
z-index: -1;
transition: all 0.3s ease;
opacity: 1;
}
.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 212, 200, 0.4);
color: white;
}
.btn-cta:hover::before {
opacity: 0.9;
}
.btn-cta:active {
transform: translateY(1px);
}
/* Hero Section - Efecto Parallax con animación */
#inicio {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-light);
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/logozzzx.png') center/cover fixed;
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 98, 204, 0.4) 0%, rgba(0, 180, 216, 0.4) 100%);
z-index: 1;
}
#inicio .content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
margin-top: 380px;
}
#inicio h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease;
}
#inicio p {
font-size: 1.5rem;
font-weight: 300;
margin-bottom: 2rem;
text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease 0.2s forwards;
opacity: 0;
}
#inicio .btn-cta {
animation: fadeInUp 1s ease 0.4s forwards;
opacity: 0;
font-size: 1.1rem;
padding: 12px 30px;
}
/* Animaciones clave */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0px);
}
}
/* Section styling */
section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-weight: 700;
margin-bottom: 3rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--secondary);
border-radius: 2px;
}
/* Quiénes somos */
#quienessomos {
background-color: white;
}
#quienessomos h2 {
font-weight: 700;
color: var(--primary);
}
#quienessomos p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
#quienessomos strong {
color: var(--primary);
font-weight: 600;
}
#quienessomos img {
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transition: all 0.5s ease;
}
#quienessomos img:hover {
transform: scale(1.02);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
/* Servicios */
#servicios {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
overflow: hidden;
}
#servicios::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: var(--secondary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
#servicios::after {
content: '';
position: absolute;
bottom: -150px;
left: -150px;
width: 400px;
height: 400px;
background: var(--primary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
.service-card {
background: white;
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.4s ease;
position: relative;
z-index: 1;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: var(--gradient-secondary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
transition: all 0.3s ease;
}
.service-card:hover .service-icon {
transform: scale(1.1);
}
.service-card h5 {
font-weight: 600;
margin-botto
/* ...cortado... */
ventadepasajesaparaguay.com.ar
https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swaphttps://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://unpkg.com/[email protected]/dist/aos.css:root {
--primary: #003f8a;
--primary-dark: #002d62;
--secondary: #ff0033;
--secondary-light: #ff4d6d;
--white: #ffffff;
--light: #f8f9fa;
--gray-light: #e9ecef;
--gray: #6c757d;
--dark: #212529;
--success: #25d366;
--instagram: #E1306C;
--facebook: #3b5998;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow: 0 10px 30px rgba(0,0,0,0.1);
--shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
body {
.hero { max-width: 100%; }
overflow-x: hidden;
font-family: 'Poppins', sans-serif;
color: var(--dark);
background-color: var(--light);
overflow-x: hidden;
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
}
/* Navbar */
.navbar {
background-color: var(--primary);
box-shadow: var(--shadow);
padding: 15px 0;
transition: var(--transition);
}
.navbar.scrolled {
padding: 10px 0;
background-color: rgba(0, 63, 138, 0.98);
backdrop-filter: blur(10px);
}
.navbar-brand {
font-weight: 800;
font-size: 1.5rem;
color: var(--white) !important;
display: flex;
align-items: center;
}
.navbar-brand img {
height: 40px;
margin-right: 10px;
}
.nav-link {
color: var(--white) !important;
font-weight: 500;
margin: 0 8px;
padding: 8px 16px !important;
border-radius: 50px;
transition: var(--transition);
}
.nav-link:hover, .nav-link:focus {
color: var(--white) !important;
background-color: var(--secondary);
}
.nav-link.active {
background-color: var(--secondary);
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 4.5rem;
margin-bottom: 1.5rem;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
animation: fadeInDown 1s ease both;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
animation: fadeInUp 1s ease both 0.3s;
}
.hero-title {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 20px;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.25rem;
opacity: 0.9;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
/* Botones */
.btn {
padding: 12px 28px;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
border: none;
}
.btn-primary {
background-color: var(--primary);
}
.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.btn-secondary {
background-color: var(--secondary);
color: var(--white);
}
.btn-secondary:hover {
background-color: var(--secondary-light);
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.btn-whatsapp {
background-color: var(--success);
color: var(--white);
padding: 14px 30px;
border-radius: 50px;
font-weight: 600;
display: inline-flex;
align-items: center;
box-shadow: var(--shadow);
transition: var(--transition);
}
.btn-whatsapp:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
color: var(--white);
}
.btn-whatsapp i {
margin-right: 8px;
font-size: 1.2rem;
}
/* Secciones */
.section {
padding: 100px 0;
position: relative;
}
.section-title {
position: relative;
color: var(--primary);
font-weight: 800;
margin-bottom: 50px;
text-align: center;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: linear-gradient(to right, var(--primary), var(--secondary));
margin: 15px auto 0;
border-radius: 2px;
}
/* Tarjetas de servicios */
.card-service {
background: var(--white);
border-radius: 15px;
padding: 40px 30px;
box-shadow: var(--shadow);
margin-bottom: 30px;
transition: var(--transition);
height: 100%;
border: none;
text-align: center;
}
.card-service:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.card-service .icon {
font-size: 3rem;
margin-bottom: 20px;
color: var(--secondary);
}
.card-service h3 {
font-weight: 700;
margin-bottom: 15px;
color: var(--primary);
}
/* Galería */
.gallery {
position: relative;
padding: 0;
}
.gallery::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to bottom, var(--light), transparent);
z-index: 2;
}
.gallery::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to top, var(--light), transparent);
z-index: 2;
}
.ticker-track {
min-width: 100%;
display: flex;
gap: 20px;
padding: 20px 0;
animation: ticker 30s linear infinite;
}
.ticker-item {
flex: 0 0 auto;
max-width: 300px;
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}
.ticker-item:hover {
transform: scale(1.05);
}
.ticker-item img {
width: 100%;
height: auto;
object-fit: contain;
display: block;
}
@keyframes ticker {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* Empresas */
.companies {
background-color: var(--white);
padding: 60px 0;
}
.company-logo {
height: 100px;
opacity: 0.7;
transition: var(--transition);
}
.company-logo:hover {
filter: none;
opacity: 1;
transform: scale(1.1);
}
/* Contacto */
.contact-form {
background-color: var(--white);
border-radius: 15px;
padding: 40px;
box-shadow: var(--shadow);
max-width: 800px;
margin: 0 auto;
}
.form-control {
height: 50px;
border-radius: 10px;
border: 1px solid var(--gray-light);
padding: 10px 20px;
margin-bottom: 20px;
transition: var(--transition);
}
.form-control:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(0, 63, 138, 0.25);
}
textarea.form-control {
height: auto;
min-height: 150px;
}
/* Footer */
.footer {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--white);
padding: 60px 0 30px;
position: relative;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 15px;
background: linear-gradient(to right, var(--primary), var(--secondar
/* ...cortado... */
ventadespasajesaparaguay.com
https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swaphttps://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://unpkg.com/[email protected]/dist/aos.css:root {
--primary: #003f8a;
--primary-dark: #002d62;
--secondary: #ff0033;
--secondary-light: #ff4d6d;
--white: #ffffff;
--light: #f8f9fa;
--gray-light: #e9ecef;
--gray: #6c757d;
--dark: #212529;
--success: #25d366;
--instagram: #E1306C;
--facebook: #3b5998;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow: 0 10px 30px rgba(0,0,0,0.1);
--shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
body {
.hero { max-width: 100%; }
overflow-x: hidden;
font-family: 'Poppins', sans-serif;
color: var(--dark);
background-color: var(--light);
overflow-x: hidden;
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
}
/* Navbar */
.navbar {
background-color: var(--primary);
box-shadow: var(--shadow);
padding: 15px 0;
transition: var(--transition);
}
.navbar.scrolled {
padding: 10px 0;
background-color: rgba(0, 63, 138, 0.98);
backdrop-filter: blur(10px);
}
.navbar-brand {
font-weight: 800;
font-size: 1.5rem;
color: var(--white) !important;
display: flex;
align-items: center;
}
.navbar-brand img {
height: 40px;
margin-right: 10px;
}
.nav-link {
color: var(--white) !important;
font-weight: 500;
margin: 0 8px;
padding: 8px 16px !important;
border-radius: 50px;
transition: var(--transition);
}
.nav-link:hover, .nav-link:focus {
color: var(--white) !important;
background-color: var(--secondary);
}
.nav-link.active {
background-color: var(--secondary);
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 4.5rem;
margin-bottom: 1.5rem;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
animation: fadeInDown 1s ease both;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
animation: fadeInUp 1s ease both 0.3s;
}
.hero-title {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 20px;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.25rem;
opacity: 0.9;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
/* Botones */
.btn {
padding: 12px 28px;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
border: none;
}
.btn-primary {
background-color: var(--primary);
}
.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.btn-secondary {
background-color: var(--secondary);
color: var(--white);
}
.btn-secondary:hover {
background-color: var(--secondary-light);
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.btn-whatsapp {
background-color: var(--success);
color: var(--white);
padding: 14px 30px;
border-radius: 50px;
font-weight: 600;
display: inline-flex;
align-items: center;
box-shadow: var(--shadow);
transition: var(--transition);
}
.btn-whatsapp:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
color: var(--white);
}
.btn-whatsapp i {
margin-right: 8px;
font-size: 1.2rem;
}
/* Secciones */
.section {
padding: 100px 0;
position: relative;
}
.section-title {
position: relative;
color: var(--primary);
font-weight: 800;
margin-bottom: 50px;
text-align: center;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: linear-gradient(to right, var(--primary), var(--secondary));
margin: 15px auto 0;
border-radius: 2px;
}
/* Tarjetas de servicios */
.card-service {
background: var(--white);
border-radius: 15px;
padding: 40px 30px;
box-shadow: var(--shadow);
margin-bottom: 30px;
transition: var(--transition);
height: 100%;
border: none;
text-align: center;
}
.card-service:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.card-service .icon {
font-size: 3rem;
margin-bottom: 20px;
color: var(--secondary);
}
.card-service h3 {
font-weight: 700;
margin-bottom: 15px;
color: var(--primary);
}
/* Galería */
.gallery {
position: relative;
padding: 0;
}
.gallery::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to bottom, var(--light), transparent);
z-index: 2;
}
.gallery::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to top, var(--light), transparent);
z-index: 2;
}
.ticker-track {
min-width: 100%;
display: flex;
gap: 20px;
padding: 20px 0;
animation: ticker 30s linear infinite;
}
.ticker-item {
flex: 0 0 auto;
max-width: 300px;
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}
.ticker-item:hover {
transform: scale(1.05);
}
.ticker-item img {
width: 100%;
height: auto;
object-fit: contain;
display: block;
}
@keyframes ticker {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* Empresas */
.companies {
background-color: var(--white);
padding: 60px 0;
}
.company-logo {
height: 100px;
opacity: 0.7;
transition: var(--transition);
}
.company-logo:hover {
filter: none;
opacity: 1;
transform: scale(1.1);
}
/* Contacto */
.contact-form {
background-color: var(--white);
border-radius: 15px;
padding: 40px;
box-shadow: var(--shadow);
max-width: 800px;
margin: 0 auto;
}
.form-control {
height: 50px;
border-radius: 10px;
border: 1px solid var(--gray-light);
padding: 10px 20px;
margin-bottom: 20px;
transition: var(--transition);
}
.form-control:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(0, 63, 138, 0.25);
}
textarea.form-control {
height: auto;
min-height: 150px;
}
/* Footer */
.footer {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--white);
padding: 60px 0 30px;
position: relative;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 15px;
background: linear-gradient(to right, var(--primary), var(--secondar
/* ...cortado... */
estudiojuridicovelazquezyasoc.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.csshttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swaphttps://unpkg.com/[email protected]/dist/aos.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css:root {
--primary-color: #6a1b1a;
--primary-light: #8d2a28;
--secondary-color: #1a3e6a;
--accent-color: #d4af37;
--accent-light: #e8c96a;
--light-bg: #f8f5f0;
--dark-text: #333333;
--light-text: #f8f9fa;
--transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
--shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
--shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}
body {
font-family: 'Montserrat', sans-serif;
color: var(--dark-text);
line-height: 1.7;
overflow-x: hidden;
background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
letter-spacing: 0.5px;
}
.text-serif {
font-family: 'Playfair Display', serif;
}
/* Navbar */
.navbar {
background-color: rgba(106, 27, 26, 0.95);
backdrop-filter: blur(10px);
box-shadow: var(--shadow-sm);
transition: var(--transition);
padding: 20px 0;
}
.navbar.scrolled {
padding: 12px 0;
background-color: rgba(106, 27, 26, 0.98);
box-shadow: var(--shadow-md);
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.8rem;
color: white !important;
letter-spacing: 1px;
display: flex;
align-items: center;
}
.navbar-brand span {
color: var(--accent-color);
}
.nav-link {
color: rgba(255, 255, 255, 0.9) !important;
font-weight: 500;
margin: 0 10px;
position: relative;
transition: var(--transition);
padding: 8px 12px !important;
border-radius: 4px;
}
.nav-link:hover, .nav-link:focus {
color: white !important;
background: rgba(255, 255, 255, 0.1);
}
.nav-link.active {
color: white !important;
font-weight: 600;
}
.nav-link.active::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background: var(--accent-color);
bottom: 0;
left: 0;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
background: var(--accent-color);
bottom: 0;
left: 0;
transition: var(--transition);
}
.nav-link:hover::after {
width: 100%;
}
.icono-flotante {
position: fixed;
bottom: 20px;
right: 20px;
width: 48px;
height: 48px;
border-radius: 50%;
background-color: #25d366;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
text-decoration: none;
z-index: 999;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: all 0.3s ease;
}
.icono-flotante.instagram {
bottom: 80px;
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.icono-flotante:hover {
transform: scale(1.1);
}
/* WhatsApp Button */
.whatsapp-btn {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: #25D366;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
z-index: 999;
box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
transition: var(--transition);
animation: pulse 2s infinite;
}
.whatsapp-btn:hover {
transform: scale(1.1);
color: white;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}
/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 100px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient-purple);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
z-index: 999;
opacity: 0;
visibility: hidden;
transition: var(--transition);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.back-to-top.active {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: var(--gradient-orange);
transform: translateY(-3px);
}
/* Animations */
.animate-up {
transform: translateY(50px);
opacity: 0;
transition: var(--transition);
}
.animate-up.show {
transform: translateY(0);
opacity: 1;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, rgba(106, 27, 26, 0.9) 0%, rgba(141, 42, 40, 0.85) 100%),
url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
background-size: cover;
color: white;
padding: 200px 0 180px;
text-align: center;
position: relative;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
margin-bottom: -80px;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: white;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 25px;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
line-height: 1.2;
}
.hero p {
font-size: 1.4rem;
margin-bottom: 15px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.hero .divider {
width: 80px;
height: 4px;
background: var(--accent-color);
margin: 30px auto;
border-radius: 2px;
}
/* Section Styling */
.section {
padding: 100px 0;
position: relative;
}
.section-title {
position: relative;
margin-bottom: 60px;
color: var(--primary-color);
}
.section-title::after {
content: '';
position: absolute;
width: 80px;
height: 4px;
background: var(--accent-color);
bottom: -20px;
left: 0;
border-radius: 2px;
}
.section-title.center::after {
left: 50%;
transform: translateX(-50%);
}
.bg-light-custom {
background-color: var(--light-bg);
position: relativ
/* ...cortado... */
espejosfw.com.ar
https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swaphtml, body {
margin: 0;
font-family: 'Poppins', 'Segoe UI', sans-serif;
background-color: #000;
color: #fff;
}
.carousel-item img {
width: 100%;
max-height: 100vh;
object-fit: contain;
margin: 0 auto;
display: block;
filter: brightness(0.7);
}
.navbar-blur {
backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.4) !important;
}
.navbar {
justify-content: flex-end;
}
.navbar .nav-link {
color: #fff !important;
font-weight: 500;
margin-left: 1.5rem;
}
.hero-content {
background-color: rgba(0, 0, 0, 0.3);
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.05);
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 10;
background-color: rgba(0, 0, 0, 0.5);
padding: 2.5rem;
border-radius: 16px;
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.1);
width: 90%;
max-width: 800px;
}
.hero-content h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: 1rem;
}
.hero-content p {
font-size: clamp(1rem, 2vw, 1.25rem);
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
}
.catalogo-link-btn {
pointer-events: auto;
background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 0.8rem 1.8rem;
border-radius: 12px;
text-decoration: none;
color: #fff;
font-weight: 500;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
font-size: clamp(0.8rem, 1.8vw, 0.95rem); opacity: 0.85;
}
.catalogo-link-btn:hover {
background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
transform: scale(1.05);
color: #fff;
}
footer {
background-color: rgba(0, 0, 0, 0.8);
text-align: center;
padding: 1.5rem;
color: #ccc;
position: relative;
z-index: 20;
}
/* WhatsApp Chat - EXACTAMENTE COMO ESTABA ORIGINALMENTE */
#btnWsp {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25D366;
color: white;
border: none;
border-radius: 50%;
width: 60px;
height: 60px;
font-size: 26px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
z-index: 999;
}
#chatBox {
display: none;
position: fixed;
bottom: 90px;
right: 20px;
width: 320px;
border-radius: 8px;
border: 1px solid #ddd;
background: #fff;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
z-index: 998;
overflow: hidden;
}
.chatHeader {
background-color: #25D366;
color: white;
padding: 12px 16px;
font-weight: 500;
font-size: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}
.chatHeader .cerrar {
font-size: 18px;
cursor: pointer;
}
.chatBody {
padding: 16px;
font-size: 14px;
}
.chatBody p {
margin: 0 0 10px;
color: #333;
}
#msgTextarea {
width: 100%;
height: 60px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
padding: 10px;
resize: none;
}
#enviarBtn {
margin-top: 10px;
background-color: #25D366;
border: none;
color: white;
width: 100%;
padding: 10px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}
#enviarBtn:hover {
background-color: #20b558;
}
/* Botón Instagram */
.floating-button {
position: fixed;
bottom: 20px;
left: 20px;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: white;
z-index: 1000;
}
.instagram-button {
background-color: #E4405F;
}
.floating-button img {
width: 30px;
height: 30px;
}
/* Estilos para el menú hamburguesa */
.navbar-toggler {
border: none;
padding: 0.5rem;
margin-right: 1rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Responsive Design */
@media (max-width: 992px) {
.navbar-collapse {
background-color: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
padding: 1rem;
border-radius: 0 0 10px 10px;
margin-top: 10px;
}
.navbar .nav-link {
margin-left: 0;
padding: 0.5rem 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .nav-link:last-child {
border-bottom: none;
}
}
@media (max-width: 768px) {
.hero-content {
background-color: rgba(0, 0, 0, 0.3);
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 1.5rem;
top: 50%;
}
.hero-content h1 {
font-size: 2.2rem;
}
.d-flex.justify-content-center.flex-wrap {
flex-direction: column;
gap: 1rem;
}
.catalogo-link-btn {
pointer-events: auto;
width: 100%;
text-align: center;
}
}
@media (max-width: 576px) {
.hero-content {
background-color: rgba(0, 0, 0, 0.3);
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 1.2rem;
}
.hero-content h1 {
font-size: 1.8rem;
}
.hero-content p {
font-size: 0.95rem;
}
#chatBox {
width: 280px;
right: 10px;
}
.floating-button, #btnWsp {
width: 50px;
height: 50px;
font-size: 22px;
}
.floating-button img {
width: 24px;
height: 24px;
}
}
@media (max-width: 576px){
.carousel-item img{object-fit:cover;width:100%;}
}
.main-layout {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: space-between;
align-items: stretch;
}
.layout-left {
width: 100%;
max-width: 100%;
background-color: rgba(0, 0, 0, 0.85);
font-size: 0.95rem;
}
.layout-center {
width: 100%;
max-width: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.layout-right {
width: 100%;
max-width: 100%;
background-color: rgba(0, 0, 0, 0.85);
display: flex;
align-items: center;
justify-content: center;
}
.layout-right .catalogo-btn {
background-color: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255,255,255,0.4);
color: #fff;
padding: 0.6rem 1rem;
border-radius: 30px;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
text-align: center;
transition: all 0.3s ease;
}
.layout-right .catalogo-btn:hover {
background-color: rgba(255,255,255,0.15);
transform: scale(1.05);
}
/* ...cortado... */
@media (min-width: 768px) {
.layout-title { padding-top: 120px !important; }
}
.iframe-wrapper {
width: 100%;
border: 2px solid #444;
border-radius: 10px;
overflow: hidden;
background-color: #111;
margin: 2rem auto;
}
.iframe-wrapper iframe {
width: 100%;
min-height: 100vh;
height: auto;
border: none;
display: block;
}
@media (max-width: 768px) {
.iframe-wrapper iframe {
min-height: 100dvh;
}
}
#wsp-btn {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25D366;
color: white;
width: 52px;
height: 52px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
z-index: 999;
text-decoration: none;
transition: transform 0.2s ease, background-color 0.2s ease;
}
#wsp-btn:hover {
transform: scale(1.1);
background-color: #1ebd5a;
}