Preview de mixed.css
/* MIXED CSS PACK */
/* Template: aldeadelahierba.com.ar/index.html */
/* Template mtime: 2025-08-12 20:43:18 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
: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: translateY(-5px);
box-shadow: var(--shadow-md);
}
.feature-card:hover::before {
width: 8px;
}
.feature-card h5 {
color: var(--primary-700);
margin-bottom: 1rem;
}
/* TICKER */
.ticker-section {
background: linear-gradient(to right, var(--primary-700), var(--primary-900));
padding: 4rem 0;
color: white;
position: relative;
overflow: hidden;
}
.ticker-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('img/2.jpg') no-repeat center center/cover;
opacity: 0.1;
}
.ticker-title {
color: white;
}
.ticker-title::after {
background: white;
}
.ticker-sub {
color: rgba(255,255,255,.8);
}
.ticker-wrap {
position: relative;
overflow: hidden;
margin: 2rem 0;
}
.ticker-track {
display: flex;
gap: 2rem;
align-items: center;
animation: scroll 30s linear infinite;
will-change: transform;
padding: 1rem 0;
}
.ticker-wrap:hover .ticker-track {
animation-play-state: paused;
}
@keyframes scroll {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.ticker-item {
flex: 0 0 auto;
width: var(--ticker-img-size);
max-width: 95vw;
aspect-ratio: 1/1;
border-radius: var(--border-radius);
overflow: hidden;
border: 1px solid rgba(255,255,255,.1);
background: white;
display: grid;
place-items: center;
box-shadow: var(--shadow-md);
transition: var(--transition);
}
.ticker-item:hover {
transform: scale(1.03);
}
.ticker-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.ticker-item:hover img {
transform: scale(1.1);
}
/* FAQ */
.faq-section {
background: var(--light);
}
.faq-item {
border-bottom: 1px solid rgba(0,0,0,.08);
transition: var(--transition);
}
.faq-item:last-child {
border-bottom: none;
}
.faq-item button {
color: var(--ink);
font-weight: 600;
padding: 1.5rem 0;
width: 100%;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
background: none;
border: none;
transition: var(--transition);
}
.faq-item button:hover {
color: var(--primary);
}
.faq-item button::after {
content: '+';
font-size: 1.5rem;
color: var(--primary);
transition: var(--transition);
}
.faq-item button[aria-expanded="true"]::after {
content: '-';
}
.faq-item .accordion-body {
padding: 0 0 1.5rem;
}
/* CONTACT */
.contact-card {
border: 1px solid rgba(0,0,0,.06);
border-radius: var(--border-radius);
background: white;
box-shadow: var(--shadow-sm);
transition: var(--transition);
overflow: hidden;
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.contact-card .form-control,
.contact-card .form-select {
border-radius: 12px;
border: 1px solid rgba(0,0,0,.12);
padding: 0.75rem 1rem;
transition: var(--transition);
}
.contact-card .form-control:focus,
.contact-card .form-select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(47,125,89,.25);
}
.contact-info {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.contact-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--accent-light);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
margin-right: 1rem;
flex-shrink: 0;
}
/* FOOTER */
footer {
background: linear-gradient(to right, var(--primary-900), var(--primary-700));
color: white;
padding: 4rem 0 2rem;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('img/2.jpg') no-repeat center center/cover;
opacity: 0.05;
}
.footer-content {
position: relative;
z-index: 1;
}
.brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.8rem;
color: white;
margin-bottom: 1.5rem;
display: inline-block;
}
footer a {
color: var(--accent-light);
transition: var(--transition);
}
footer a:hover {
color: white;
text-decoration: underline;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255,255,255,.1);
color: white;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.social-links a:hover {
background: var(--accent);
transform: translateY(-3px);
text-decoration: none;
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,.1);
padding-top: 2rem;
margin-top: 3rem;
}
/* UTILITIES */
.badge-soft {
background: var(--accent-light);
color: var(--primary);
border-radius: 30px;
font-weight: 600;
padding: 0.5rem 1rem;
display: inline-flex;
align-items: center;
margin-bottom: 1.5rem;
}
.text-gradient {
background: linear-gradient(to right, var(--primary-700), var(--primary-900));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.leaf-decoration {
position: absolute;
opacity: 0.1;
z-index: 0;
}
.leaf-1 {
top: 10%;
left: 5%;
width: 200px;
transform: rotate(15deg);
}
.leaf-2 {
bottom: 10%;
right: 5%;
width: 250px;
transform: rotate(-20deg);
}
/* ANIMATIONS */
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
.hero-title {
font-size: 2.5rem;
}
.section {
padding: 4rem 0;
}
.section-title {
font-size: 2rem;
}
}
@media (max-width: 768px) {
.hero {
min-height: auto;
padding: 6rem 0 4rem;
}
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.section-title {
font-size: 1.8rem;
}
.navbar-brand {
font-size: 1.3rem;
}
}
@media (max-width: 576px) {
.hero-title {
font-size: 1.8rem;
}
.btn {
padding: 0.6rem 1.2rem;
}
.section {
padding: 3rem 0;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* 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;
}
}