Preview de mixed.css
/* MIXED CSS PACK */
/* Template: test2/index.html */
/* Template mtime: 2025-12-28 03:52:57 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* =========================================
1. VARIABLES & RESET
========================================= */
:root {
/* Brand Palette */
--accent: #B08D57;
/* Base Bronze */
--accent-light: #d6b88b;
/* Lighter Gold/Bronze */
--accent-dark: #8a6c3e;
/* Darker Bronze */
--accent-bg: rgba(176, 141, 87, 0.08);
/* Neutrals */
--bg: #FAFAFA;
/* Slightly off-white for premium feel */
--surface: #ffffff;
--text-main: #1a1a1a;
--text-muted: #666666;
--border: rgba(0, 0, 0, 0.06);
/* UI Elements */
--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 24px;
--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
--shadow-hover: 0 15px 35px rgba(176, 141, 87, 0.15);
/* Typography */
--font-heading: 'Playfair Display', serif;
--font-body: 'Manrope', sans-serif;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--bg);
color: var(--text-main);
font-family: var(--font-body);
font-size: 1rem;
line-height: 1.6;
padding-top: 80px;
/* Navbar height compensation */
overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
font-weight: 700;
color: #000;
letter-spacing: -0.02em;
}
a {
text-decoration: none;
transition: all 0.3s ease;
}
p {
margin-bottom: 1.2rem;
}
/* Utilities */
.text-accent {
color: var(--accent) !important;
}
.bg-surface {
background: var(--surface);
}
.fw-medium {
font-weight: 500;
}
.fw-semibold {
font-weight: 600;
}
/* =========================================
2. COMPONENTS
========================================= */
/* Buttons */
.btn {
padding: 0.75rem 1.75rem;
border-radius: 50rem;
/* Pill shape */
font-weight: 600;
letter-spacing: 0.02em;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
overflow: hidden;
font-family: var(--font-body);
}
.btn-accent {
background: var(--accent);
border: 1px solid var(--accent);
color: #fff;
box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3);
}
.btn-accent:hover {
background: var(--accent-dark);
border-color: var(--accent-dark);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(176, 141, 87, 0.4);
color: #fff;
}
.btn-outline-dark {
border: 1px solid rgba(0, 0, 0, 0.15);
background: transparent;
color: var(--text-main);
}
.btn-outline-dark:hover {
background: #000;
border-color: #000;
color: #fff;
transform: translateY(-2px);
}
/* Eyebrow Label */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
text-transform: uppercase;
font-weight: 700;
font-size: 0.75rem;
letter-spacing: 0.1em;
color: var(--accent);
background: rgba(176, 141, 87, 0.1);
padding: 0.5rem 1rem;
border-radius: 100px;
margin-bottom: 1rem;
}
/* Section Headers */
.section-title {
font-size: 2.5rem;
margin-bottom: 0.75rem;
}
.section-subtitle {
color: var(--text-muted);
font-size: 1.125rem;
max-width: 700px;
margin-inline: auto;
font-weight: 300;
}
.section {
padding: 100px 0;
position: relative;
}
/* Cards */
.card-soft {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
height: 100%;
z-index: 1;
}
.card-soft:hover {
transform: translateY(-5px);
border-color: rgba(176, 141, 87, 0.3);
box-shadow: var(--shadow-hover);
}
/* Icons inside cards */
.icon-box {
width: 56px;
height: 56px;
border-radius: 50%;
/* Circle */
background: var(--accent-bg);
color: var(--accent);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}
.card-soft:hover .icon-box {
background: var(--accent);
color: #fff;
transform: scale(1.1);
}
/* =========================================
3. NAVBAR
========================================= */
.navbar {
background: rgba(255, 255, 255, 0.85);
/* Proper glass effect */
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding: 1rem 0;
transition: all 0.3s ease;
}
.navbar-brand {
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.5rem;
letter-spacing: -0.01em;
color: #000;
}
.nav-link {
font-family: var(--font-body);
font-weight: 600;
font-size: 0.95rem;
color: var(--text-main) !important;
position: relative;
margin: 0 0.5rem;
padding: 0.5rem 0;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 50%;
background: var(--accent);
transition: all 0.3s ease;
transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}
/* =========================================
4. HERO SECTION
========================================= */
#inicio .hero-wrap {
background: #fff;
border-radius: var(--radius-lg);
padding: 0;
overflow: hidden;
box-shadow: var(--shadow-md);
position: relative;
}
/* Decorative faint gradients */
#inicio .hero-wrap::before {
content: '';
position: absolute;
top: -50%;
left: -20%;
width: 80%;
height: 200%;
background: radial-gradient(circle, rgba(176, 141, 87, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
z-index: 0;
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 2;
padding: 3rem;
}
.hero-title {
font-size: clamp(2.5rem, 5vw, 4rem);
line-height: 1.1;
margin-bottom: 1.5rem;
}
.hero-sub {
font-size: 1.2rem;
color: var(--text-muted);
margin-bottom: 2rem;
font-weight: 400;
}
.hero-image-col {
padding: 0;
height: 100%;
min-height: 400px;
position: relative;
}
.hero-img-full {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 1.5s ease;
}
#inicio:hover .hero-img-full {
transform: scale(1.03);
}
/* =========================================
5. COMPONENT SECTIONS
========================================= */
/* Services / Generic Cards */
.feature-title {
font-family: var(--font-heading);
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
/* Accordion Customization */
.accordion-item {
border: 1px solid var(--border);
border-radius: var(--radius-md);
margin-bottom: 1rem;
background: #fff;
overflow: hidden;
box-shadow: var(--shadow-sm);
}
.accordion-button {
font-family: var(--font-body);
font-weight: 600;
background: #fff;
color: var(--text-main);
padding: 1.25rem;
box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
color: var(--accent);
background: rgba(176, 141, 87, 0.05);
}
.accordion-button:focus {
border-color: rgba(176, 141, 87, 0.3);
}
.accordion-body {
color: var(--text-muted);
line-height: 1.7;
}
/* Inputs */
.form-control,
.form-select {
border: 1px solid #e0e0e0;
padding: 0.8rem 1rem;
border-radius: var(--radius-sm);
font-family: var(--font-body);
background: #fdfdfd;
transition: all 0.3s;
}
.form-control:focus,
.form-select:focus {
background: #fff;
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.1);
}
.form-label {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 700;
color: var(--text-muted);
margin-bottom: 0.5rem;
}
/* =========================================
6. GALLERY (Refined)
========================================= */
.gal-frame {
border-radius: var(--radius-md);
overflow: hidden;
background: #fff;
padding: 1rem;
box-shadow: var(--shadow-md);
border: 1px solid var(--border);
height: clamp(300px, 50vh, 500px);
display: flex;
align-items: center;
justify-content: center;
}
.gal-img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
transition: transform 0.5s ease;
cursor: zoom-in;
}
.gal-frame:hover .gal-img {
transform: scale(1.02);
}
/* Controls refinement */
.carousel-control-prev,
.carousel-control-next {
width: 3.5rem;
height: 3.5rem;
background: #fff;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
color: #000;
transition: all 0.3s;
}
/* Show controls on hover */
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
opacity: 1;
}
/* Adjust positioning */
.carousel-control-prev {
left: 20px;
}
.carousel-control-next {
right: 20px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-image: none;
display: flex;
align-items: center;
justify-content: center;
color: #000;
}
.carousel-control-prev-icon::after {
content: '\F284';
font-family: 'bootstrap-icons';
font-size: 1.5rem;
}
.carousel-control-next-icon::after {
content: '\F285';
font-family: 'bootstrap-icons';
font-size: 1.5rem;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
background: var(--accent);
color: #fff;
}
.carousel-control-prev:hover .carousel-control-prev-icon::after,
.carousel-control-next:hover .carousel-control-next-icon::after {
color: #fff;
}
/* =========================================
7. FOOTER
========================================= */
footer {
background: #fff;
border-top: 1px solid var(--border);
padding: 4rem 0;
}
.footer-brand {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
display: inline-block;
}
/* Responsive adjustments */
@media (max-width: 991.98px) {
.hero-image-col {
min-height: 300px;
height: 300px;
}
.section-title {
font-size: 2rem;
}
.navbar-collapse {
background: #fff;
padding: 1rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
margin-top: 1rem;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* Ajuste del iframe para que se vea bien en mobile */
@media (max-width: 575.98px){
.tienda-embed iframe{ height: 720px; }
}
/* ===== INLINE <style> BLOCK #3 ===== */
/* Lightbox customizations */
.gal-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: #fff;
font-size: 1.5rem;
cursor: pointer;
transition: all 0.3s;
z-index: 10;
}
.gal-lightbox-nav:hover {
background: rgba(255, 255, 255, 0.3);
}
.gal-prev {
left: 10px;
}
.gal-next {
right: 10px;
}
/* ===== INLINE <style> BLOCK #4 ===== */
:root{
--wa-accent: #B08D57; /* bronce (PEPA JOYA) */
--wa-border: rgba(0,0,0,.12);
--wa-bg: #ffffff;
}
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family:inherit;
}
/* Botón flotante (verde oficial) */
.wa-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
display:grid;
place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.45);
transition:transform .3s, box-shadow .3s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
/* Ventana */
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:var(--wa-bg);
border-radius:18px;
border:1px solid var(--wa-border);
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.3s;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px;
/* header con bronce */
background:linear-gradient(135deg, var(--wa-accent), color-mix(in srgb, var(--wa-accent) 78%, #000 22%));
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:10px;
display:grid;
place-items:center;
overflow:hidden;
border:1px solid rgba(255,255,255,.35);
}
.wa-title{ font-weight:800; letter-spacing:.2px; }
.wa-status{ font-size:.85rem; opacity:.95; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
cursor:pointer;
line-height:1;
}
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f8f9fa;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#ffffff;
border:1px solid var(--wa-border);
align-self:flex-start;
}
.wa-user{
background: rgba(176,141,87,.10);
border:1px solid rgba(176,141,87,.25);
align-self:flex-end;
}
/* Composer */
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid var(--wa-border);
background:#ffffff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid var(--wa-border);
font-family:inherit;
}
.wa-send{
background: var(--wa-accent);
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{
background: color-mix(in srgb, var(--wa-accent) 82%, #000 18%);
}
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
Manifest preview
{
"template": "test2/index.html",
"template_mtime": 1766893977,
"template_mtime_human": "2025-12-28T03:52:57+00:00",
"css_links_found": [
"https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap",
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
],
"css_links_external": [
"https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap",
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
],
"css_links_embedded": [],
"inline_style_blocks": 4,
"inline_imports_external": [],
"inline_imports_embedded": [],
"missing_css_files": []
}