Preview de mixed.css
/* MIXED CSS PACK */
/* Template: fulldent.com.ar/index.html */
/* Template mtime: 2026-02-23 17:19:25 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ---------- VARIABLES Y RESET ---------- */
:root{
--bg: #ffffff;
--surface: #f8fafc;
--card: #ffffff;
--stroke: rgba(0, 0, 0, 0.08);
--stroke-hover: rgba(0, 0, 0, 0.12);
--text-primary: #0f172a;
--text-secondary: #334155;
--text-muted: #64748b;
--accent: #fedb46; /* azul más vibrante */
--accent-soft: #3b82f6;
--accent2: #bd7e08; /* verde‑azulado más elegante */
--accent2-soft: #14b8a6;
--shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
--shadow-md: 0 20px 30px -12px rgba(0, 0, 0, 0.12), 0 8px 12px -6px rgba(0, 0, 0, 0.02);
--shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
--radius: 24px;
--radius-pill: 999px;
--transition: all 0.2s ease;
}
*{ box-sizing: border-box; }
html,body{height:100%; max-width:100%; overflow-x:hidden; scroll-behavior:smooth;}
body{
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: var(--bg);
color: var(--text-primary);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* ---------- TIPOGRAFÍA ---------- */
h1,h2,h3,h4,h5,h6{
font-weight: 700;
letter-spacing: -0.02em;
color: var(--text-primary);
}
.section-title{
font-size: clamp(2rem, 5vw, 2.8rem);
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1.1;
}
.section-subtitle{
font-size: 1.1rem;
color: var(--text-secondary);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.eyebrow{
display: inline-block;
padding: 0.4rem 1rem;
background: var(--surface);
border: 1px solid var(--stroke);
border-radius: var(--radius-pill);
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-secondary);
margin-bottom: 1.2rem;
}
/* ---------- LAYOUT ---------- */
section{ padding: 80px 0; }
.container{ max-width: 1200px; }
/* ---------- NAVBAR (cristal claro) ---------- */
.navbar{
background: rgba(255,255,255,0.75);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--stroke);
box-shadow: var(--shadow-sm);
}
.navbar .navbar-brand{
font-weight: 800;
font-size: 1.6rem;
letter-spacing: -0.02em;
background: linear-gradient(135deg, var(--accent), var(--accent2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.navbar-nav .nav-link{
color: var(--text-secondary) !important;
font-weight: 500;
padding: 0.5rem 1rem !important;
transition: var(--transition);
border-radius: var(--radius-pill);
}
.navbar-nav .nav-link:hover{
color: var(--text-primary) !important;
background: var(--surface);
}
.navbar-toggler{ border: 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%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
/* Botón CTA principal */
.btn-cta{
border-radius: var(--radius-pill);
padding: 0.65rem 1.5rem;
font-weight: 600;
background: linear-gradient(135deg, var(--accent), var(--accent2));
border: none;
color: white;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.btn-cta:hover{
transform: scale(1.02);
box-shadow: var(--shadow-md);
filter: brightness(1.1);
}
.btn-outline{
border-radius: var(--radius-pill);
padding: 0.65rem 1.5rem;
font-weight: 600;
background: white;
border: 1px solid var(--stroke);
color: var(--text-primary);
transition: var(--transition);
}
.btn-outline:hover{
background: var(--surface);
border-color: var(--stroke-hover);
}
/* ---------- CARDS PREMIUM ---------- */
.soft-card{
background: var(--card);
border: 1px solid var(--stroke);
border-radius: var(--radius);
box-shadow: var(--shadow-sm);
transition: var(--transition);
height: 100%;
}
.soft-card:hover{
box-shadow: var(--shadow-md);
border-color: var(--stroke-hover);
}
.soft-card .card-body{ padding: 1.8rem; }
.icon-badge{
width: 56px;
height: 56px;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: white;
margin-bottom: 1.2rem;
transition: var(--transition);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.soft-card:hover .icon-badge{
transform: translateY(-3px) scale(1.05);
box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}
.icon-badge svg{
width: 28px;
height: 28px;
stroke-width: 1.5;
}
/* ---------- HERO ---------- */
.hero{ padding-top: 140px; padding-bottom: 60px; }
.hero-card{
background: var(--card);
border: 1px solid var(--stroke);
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
overflow: hidden;
}
.hero-inner{ padding: 3rem; }
.hero h1{
font-weight: 800;
font-size: clamp(2.2rem, 5vw, 3.5rem);
line-height: 1.1;
margin-bottom: 1.2rem;
}
.hero .lead{
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 1.8rem;
}
.hero-pills{
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin: 2rem 0;
}
.pill{
border: 1px solid var(--stroke);
background: var(--surface);
border-radius: var(--radius-pill);
padding: 0.5rem 1rem;
font-size: 0.9rem;
font-weight: 500;
color: var(--text-secondary);
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.pill svg{ width: 18px; height: 18px; stroke: var(--accent); }
.hero-media{
background: linear-gradient(
135deg,
rgba(254,219,70,0.08),
rgba(189,126,8,0.08)
);
border-left: 1px solid var(--stroke);
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.hero-img{
width: 100%;
max-width: 480px;
aspect-ratio: 1/1;
border-radius: var(--radius);
background: white;
box-shadow: var(--shadow-md);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--stroke);
}
.hero-img img{
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.hero-img:hover img{ transform: scale(1.02); }
.hero-note{ color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; }
/* ---------- QUIENES SOMOS ---------- */
.feature-list{
list-style: none;
padding: 0;
}
.feature-list li{
display: flex;
gap: 0.8rem;
align-items: center;
margin-bottom: 1rem;
font-weight: 500;
}
.feature-list li svg{
width: 22px;
height: 22px;
stroke: var(--accent2);
flex-shrink: 0;
}
/* ---------- SERVICIOS / CHIPS ---------- */
.service-group-title{
font-weight: 700;
font-size: 1.3rem;
margin-bottom: 1rem;
}
.chip{
display: inline-block;
border: 1px solid rgba(0,0,0,0.06);
background: white;
border-radius: var(--radius-pill);
padding: 0.4rem 1rem;
font-size: 0.9rem;
font-weight: 500;
color: var(--text-secondary);
margin: 0.25rem;
transition: var(--transition);
box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}
.chip:hover{
background: var(--accent);
color: white;
border-color: var(--accent);
transform: translateY(-2px);
}
/* ---------- GALERÍA ---------- */
.gal-gallery .carousel{ max-width: 980px; margin: 0 auto; }
.gal-frame{
height: clamp(260px, 50vh, 460px);
background: var(--surface);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem;
border: 1px solid var(--stroke);
}
.gal-img{
width: auto !important;
max-width: 100%;
height: auto !important;
max-height: 100%;
object-fit: contain;
cursor: zoom-in;
border-radius: 16px;
}
/* controles carrusel */
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next{
width: 48px;
height: 48px;
top: 50%;
transform: translateY(-50%);
opacity: 1;
background: white;
border-radius: 999px;
box-shadow: var(--shadow-md);
border: 1px solid var(--stroke);
transition: var(--transition);
}
.gal-gallery .carousel-control-prev{ left: 10px; }
.gal-gallery .carousel-control-next{ right: 10px; }
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover{
background: var(--surface);
box-shadow: var(--shadow-lg);
transform: translateY(-50%) scale(1.05);
}
.gal-gallery .carousel-control-prev-icon,
.gal-gallery .carousel-control-next-icon{
filter: invert(0);
width: 1.8rem;
height: 1.8rem;
}
.gal-gallery .carousel-indicators{
position: static;
margin-top: 1.5rem;
}
.gal-gallery .carousel-indicators button{
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--stroke);
border: 1px solid transparent;
}
.gal-gallery .carousel-indicators button.active{
background: var(--accent);
transform: scale(1.2);
}
.gal-gallery{ padding-bottom: 2rem; }
/* lightbox modal */
#galLightbox .modal-content{ background: black; }
#galLightboxImg{ max-height: 86vh; object-fit: contain; }
.gal-lightbox-nav{
position: absolute; top: 50%; transform: translateY(-50%);
width: 52px; height: 52px; border-radius: 999px;
background: rgba(255,255,255,0.2);
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.1);
color: white;
font-size: 2.5rem;
line-height: 52px;
text-align: center;
cursor: pointer;
transition: var(--transition);
z-index: 5;
}
.gal-lightbox-nav:hover{
background: rgba(255,255,255,0.3);
transform: translateY(-50%) scale(1.05);
}
.gal-prev{ left: 16px; }
.gal-next{ right: 16px; }
/* ---------- ACORDEÓN ---------- */
.accordion-item{
background: var(--card);
border: 1px solid var(--stroke);
border-radius: 16px !important;
overflow: hidden;
margin-bottom: 0.75rem;
}
.accordion-button{
background: transparent !important;
color: var(--text-primary) !important;
font-weight: 600;
font-size: 1.1rem;
box-shadow: none !important;
padding: 1.2rem 1.5rem;
}
.accordion-button::after{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body{ color: var(--text-secondary); padding: 0 1.5rem 1.5rem 1.5rem; }
/* ---------- FORMULARIO ---------- */
.form-control, .form-select{
background: var(--surface);
border: 1px solid var(--stroke);
border-radius: 16px;
padding: 0.9rem 1.2rem;
color: var(--text-primary);
transition: var(--transition);
}
.form-control:focus, .form-select:focus{
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
outline: none;
background: white;
}
.form-control::placeholder{ color: var(--text-muted); }
.form-label{
font-weight: 600;
color: var(--text-secondary);
margin-bottom: 0.5rem;
}
.btn-send{
border-radius: 16px;
padding: 1rem 2rem;
font-weight: 700;
background: linear-gradient(135deg, var(--accent), var(--accent2));
border: none;
color: white;
transition: var(--transition);
}
.btn-send:hover{
transform: translateY(-2px);
box-shadow: var(--shadow-md);
filter: brightness(1.1);
}
.contact-link{
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 1.2rem;
border-radius: 18px;
background: var(--surface);
border: 1px solid var(--stroke);
text-decoration: none;
color: var(--text-primary);
transition: var(--transition);
margin-bottom: 0.75rem;
}
.contact-link:hover{
background: white;
border-color: var(--accent);
box-shadow: var(--shadow-sm);
transform: translateY(-2px);
}
.contact-link .icon-badge{
margin: 0;
width: 44px;
height: 44px;
border-radius: 14px;
}
.contact-link small{ color: var(--text-muted); }
/* ---------- FOOTER ---------- */
footer{
padding: 3rem 0;
background: var(--accent);
color: #111827;
border-top: none;
}
footer a{
color: #1f2937;
text-decoration: none;
font-weight: 600;
transition: var(--transition);
}
footer a:hover{
color: #000;
}
/* ---------- MEJORAS VISUALES (DEPTH + SEPARACIÓN) ---------- */
body{
background:
radial-gradient(1200px 700px at 15% 10%, rgba(254,219,70,0.12), transparent 55%),
radial-gradient(1200px 700px at 85% 0%, rgba(189,126,8,0.10), transparent 55%),
radial-gradient(900px 600px at 70% 90%, rgba(59,130,246,0.08), transparent 55%),
var(--bg);
}
section{
position: relative;
}
/* línea suave arriba de cada sección para que no “se mezcle” todo */
section::before{
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
opacity: 0.9;
}
/* bloque de sección con base diferente (hace contraste sin romper look) */
.section-soft{
background: rgba(248,250,252,0.80);
border-top: 1px solid rgba(0,0,0,0.04);
border-bottom: 1px solid rgba(0,0,0,0.04);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}
/* cards: un poquito más “premium” */
.soft-card{
box-shadow: 0 6px 18px -10px rgba(0,0,0,0.18);
}
.soft-card:hover{
transform: translateY(-2px);
box-shadow: 0 18px 34px -18px rgba(0,0,0,0.28);
}
/* pills más limpias */
.pill{
background: rgba(248,250,252,0.9);
}
/* CTA: más legible */
.btn-cta{
box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px){
.hero-inner{ padding: 2rem; }
.hero-media{ border-left: none; border-top: 1px solid var(--stroke); }
.navbar-collapse{
background: white;
padding: 1rem;
border-radius: 20px;
margin-top: 0.5rem;
box-shadow: var(--shadow-md);
border: 1px solid var(--stroke);
}
}
@media (max-width: 576px){
section{ padding: 60px 0; }
.hero-inner{ padding: 1.8rem; }
.soft-card .card-body{ padding: 1.5rem; }
.float-wrap{ right: 12px; bottom: 12px; }
.float-btn{ width: 48px; height: 48px; }
}
/* utilidad offset para navbar fija */
.anchor-offset{ scroll-margin-top: 88px; }
/* ---------- GALERÍA BOTONES ACCENT ---------- */
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next{
background: var(--accent);
border: none;
}
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover{
background: var(--accent2);
transform: translateY(-50%) scale(1.08);
}
.gal-gallery .carousel-control-prev-icon,
.gal-gallery .carousel-control-next-icon{
filter: invert(1);
}
/* ---------- FOOTER SOLIDO ACCENT FORZADO ---------- */
footer,
footer.section-soft,
footer .container{
background: var(--accent) !important;
}
footer{
color: #000 !important;
}
footer *{
color: #000;
}
footer .footer-title{
color: #ffffff !important;
}
footer a{
color: #000 !important;
font-weight: 600;
}
footer a:hover{
color: #ffffff !important;
}
/* ===== INLINE <style> BLOCK #2 ===== */
.footer-custom {
background: var(--surface);
border-top: 1px solid var(--stroke);
}
.footer-title {
font-weight: 700;
color: var(--text-primary);
position: relative;
padding-bottom: 8px;
}
.footer-title::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 3px;
background: var(--accent);
border-radius: var(--radius-pill);
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: var(--transition);
}
.footer-links a:hover {
color: var(--accent2);
transform: translateX(4px);
}
.footer-divider {
border-color: var(--stroke);
}
.back-top {
color: var(--accent2);
font-weight: 600;
text-decoration: none;
transition: var(--transition);
}
.back-top:hover {
color: var(--accent);
}
/* ===== INLINE <style> BLOCK #3 ===== */
:root{
/* WhatsApp oficial */
--wa:#25D366;
--wa-dark:#1fb85a;
--wa-darker:#189a4a;
/* UI clara */
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#1c1f1d;
--muted-text:#6c756f;
}
/* FACEBOOK button (arriba del IG) */
.fb-float{
position:fixed; right:18px; bottom:166px;
z-index:9997;
width:54px; height:54px; border-radius:50%;
display:grid; place-items:center; color:#fff; text-decoration:none;
background: linear-gradient(180deg, #1877F2 0%, #0f63d6 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.fb-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
/* IG button (medio) */
.ig-float{
position:fixed; right:18px; bottom:92px;
z-index:9998;
width:54px; height:54px; border-radius:50%;
display:grid; place-items:center; color:#fff; text-decoration:none;
background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.ig-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
/* WhatsApp flotante */
.wa-float{
position:fixed; right:18px; bottom:18px;
z-index:9999; font-family:inherit;
}
.wa-btn{
background:var(--wa);
color:#fff;
border:0;
width:60px; height:60px; border-radius:50%;
display:grid; place-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.22);
cursor:pointer; transition:transform .3s, box-shadow .3s, filter .3s;
position:relative; overflow:hidden;
z-index:9999;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.28);
filter:brightness(.98);
}
.wa-card{
position:absolute; right:0; bottom:74px;
width:min(360px,92vw);
background:var(--light-bg);
color:var(--dark-text);
border-radius:18px;
overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.25);
border:1px solid var(--light-border);
transform:translateY(10px);
opacity:0;
transition:transform .3s, opacity .3s;
z-index:10000;
}
.wa-card[aria-modal="true"]{
transform:translateY(0);
opacity:1;
}
.wa-head{
display:flex; align-items:center; gap:12px;
padding:14px 16px;
background:linear-gradient(135deg, #ffffff, #ecf6f0);
border-bottom:1px solid var(--light-border);
}
.wa-avatar{
width:40px; height:40px; border-radius:10px;
background:#e9f7ef;
display:grid; place-items:center;
border:1px solid #cfeeda;
overflow:hidden;
}
.wa-title{
font-weight:800;
font-size:1.02rem;
color:var(--dark-text);
}
.wa-status{
font-size:.85rem;
color:var(--muted-text);
display:flex; align-items:center; gap:6px;
}
.wa-status::before{
content:""; width:8px; height:8px; border-radius:50%;
background:var(--wa);
}
.wa-close{
margin-left:auto;
background:transparent;
color:var(--muted-text);
border:0;
font-size:24px;
cursor:pointer;
opacity:.75;
width:32px; height:32px;
border-radius:50%;
display:flex; align-items:center; justify-content:center;
transition:.2s;
}
.wa-close:hover{
opacity:1;
background:rgba(0,0,0,.04);
}
.wa-body{
padding:12px 14px;
max-height:40vh;
overflow:auto;
background:var(--light-bg-soft);
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:9px 11px;
border-radius:14px;
line-height:1.35;
box-shadow:0 3px 10px rgba(0,0,0,.06);
animation:fadeIn .25s ease;
font-size:0.9rem;
}
@keyframes fadeIn{
from{opacity:0; transform:translateY(5px)}
to{opacity:1; transform:none}
}
.wa-bot{
background:#ffffff;
border:1px solid var(--light-border);
align-self:flex-start;
border-bottom-left-radius:4px;
}
.wa-user{
background:var(--wa);
color:#fff;
align-self:flex-end;
border-bottom-right-radius:4px;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px 12px;
background:#ffffff;
border-top:1px solid var(--light-border);
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px 12px;
border:1px solid var(--light-border);
background:#f9fbfa;
color:var(--dark-text);
outline:none;
min-height:44px;
font-family:inherit;
font-size:0.9rem;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:var(--wa);
box-shadow:0 0 0 2px rgba(37,211,102,.15);
background:#ffffff;
}
.wa-send{
background:var(--wa);
color:#ffffff;
border:0;
border-radius:12px;
padding:0 16px;
font-weight:700;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.2s;
}
.wa-send:hover{
background:var(--wa-dark);
transform:scale(1.04);
}
.wa-body::-webkit-scrollbar{ width:6px; }
.wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.03); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.18); }
@media (max-width:480px){
.fb-float{ right:12px; bottom:160px; width:52px; height:52px; }
.ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}