Preview de mixed.css
/* MIXED CSS PACK */
/* Template: construccionleamsi.com.ar/index.html */
/* Template mtime: 2025-12-11 14:15:48 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
/* Palette */
--ls-primary: #0f172a;
/* Slate 900 */
--ls-secondary: #334155;
/* Slate 700 */
--ls-accent: #f59e0b;
/* Amber 500 */
--ls-accent-hover: #d97706;
--ls-bg-light: #f8fafc;
/* Slate 50 */
--ls-surface: #ffffff;
/* Typography */
--font-display: 'Outfit', sans-serif;
--font-body: 'Inter', sans-serif;
/* Spacing & Radius */
--radius-lg: 24px;
--radius-md: 16px;
--radius-sm: 8px;
}
/* --- Base Styles --- */
html {
max-width: 100%;
overflow-x: hidden;
}
body {
font-family: var(--font-body);
color: var(--ls-secondary);
background-color: var(--ls-bg-light);
line-height: 1.7;
overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-display);
color: var(--ls-primary);
font-weight: 700;
letter-spacing: -0.02em;
}
a {
text-decoration: none;
transition: all 0.3s ease;
}
/* --- Utilities --- */
.text-accent {
color: var(--ls-accent) !important;
}
.bg-accent {
background-color: var(--ls-accent) !important;
}
.btn-primary-custom {
background: var(--ls-accent);
color: #0f172a;
font-weight: 600;
padding: 0.8rem 2rem;
border-radius: 50px;
border: none;
box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-custom:hover {
background: var(--ls-accent-hover);
transform: translateY(-2px);
box-shadow: 0 15px 25px -5px rgba(245, 158, 11, 0.5);
color: #fff;
}
.btn-outline-custom {
background: transparent;
color: var(--ls-primary);
border: 2px solid rgba(15, 23, 42, 0.1);
font-weight: 600;
padding: 0.8rem 2rem;
border-radius: 50px;
transition: all 0.3s ease;
}
.btn-outline-custom:hover {
border-color: var(--ls-primary);
background: var(--ls-primary);
color: #fff;
}
.section-padding {
padding: 6rem 0;
}
.eyebrow {
font-family: var(--font-display);
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--ls-accent);
font-weight: 700;
display: block;
margin-bottom: 0.5rem;
}
/* --- Navbar --- */
.navbar {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding: 1rem 0;
transition: all 0.3s ease;
}
.navbar-brand {
font-family: var(--font-display);
font-weight: 800;
font-size: 1.5rem;
color: var(--ls-primary);
}
.nav-link {
font-weight: 500;
color: var(--ls-secondary);
font-size: 0.95rem;
margin: 0 0.5rem;
}
.nav-link:hover,
.nav-link.active {
color: var(--ls-accent);
}
.navbar-toggler {
border: none;
box-shadow: none;
}
.navbar-toggler:focus {
box-shadow: none;
}
/* --- Hero Section --- */
#inicio {
position: relative;
padding-top: 8rem;
padding-bottom: 6rem;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
overflow: hidden;
}
/* Abstract Background Shapes */
#inicio::before {
content: '';
position: absolute;
top: -20%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
border-radius: 50%;
z-index: 0;
}
.hero-title {
font-size: clamp(2.5rem, 5vw, 4.5rem);
line-height: 1.1;
margin-bottom: 1.5rem;
color: var(--ls-primary);
}
.hero-subtitle {
font-size: 1.15rem;
color: var(--ls-secondary);
max-width: 600px;
margin-bottom: 2rem;
}
.hero-image-container {
position: relative;
z-index: 1;
}
.hero-img-main {
border-radius: var(--radius-lg);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.5s ease;
width: 100%;
object-fit: cover;
}
.hero-image-container:hover .hero-img-main {
transform: perspective(1000px) rotateY(0deg);
}
.hero-badge {
position: absolute;
bottom: 30px;
left: -20px;
background: #fff;
padding: 1rem 1.5rem;
border-radius: var(--radius-md);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
gap: 1rem;
z-index: 2;
animation: float 4s ease-in-out infinite;
}
@keyframes float {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.hero-badge i {
font-size: 2rem;
color: var(--ls-accent);
}
.hero-badge div {
line-height: 1.2;
}
.hero-badge strong {
display: block;
font-size: 1.2rem;
color: var(--ls-primary);
}
.hero-badge span {
font-size: 0.85rem;
color: var(--ls-secondary);
}
/* --- Services Cards --- */
.service-card {
background: var(--ls-surface);
border-radius: var(--radius-md);
padding: 2.5rem;
height: 100%;
border: 1px solid rgba(0, 0, 0, 0.03);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--ls-accent);
opacity: 0;
transition: opacity 0.3s ease;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.service-card:hover::before {
opacity: 1;
}
.service-icon {
width: 60px;
height: 60px;
background: rgba(245, 158, 11, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.75rem;
color: var(--ls-accent);
margin-bottom: 1.5rem;
}
.service-card h3 {
font-size: 1.25rem;
margin-bottom: 1rem;
}
.service-list {
list-style: none;
padding: 0;
margin: 0;
}
.service-list li {
margin-bottom: 0.5rem;
font-size: 0.95rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.service-list li i {
color: var(--ls-accent);
font-size: 0.8rem;
}
/* --- Why Choose Us --- */
.feature-box {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
}
.feature-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--ls-primary);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}
.feature-content h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.feature-content p {
font-size: 0.95rem;
margin: 0;
}
/* --- Gallery --- */
.gal-frame {
background: #000;
border-radius: var(--radius-md);
overflow: hidden;
position: relative;
aspect-ratio: 16/9;
display: flex;
align-items: center;
justify-content: center;
}
.gal-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
cursor: zoom-in;
}
.gal-frame:hover .gal-img {
transform: scale(1.05);
}
.carousel-control-prev,
.carousel-control-next {
width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: var(--ls-primary);
border-radius: 50%;
background-size: 50%;
padding: 1.5rem;
}
/* --- FAQ Accordion --- */
.accordion-item {
border: none;
margin-bottom: 1rem;
border-radius: var(--radius-md) !important;
overflow: hidden;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.accordion-button {
font-weight: 600;
color: var(--ls-primary);
padding: 1.25rem;
background: #fff;
}
.accordion-button:not(.collapsed) {
color: var(--ls-accent);
background: #fff;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}
.accordion-button:focus {
box-shadow: none;
border-color: rgba(0, 0, 0, 0.05);
}
.accordion-body {
font-size: 0.95rem;
color: var(--ls-secondary);
}
/* --- Contact --- */
.contact-wrapper {
background: var(--ls-surface);
border-radius: var(--radius-lg);
box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.contact-info-panel {
background: var(--ls-primary);
color: #fff;
padding: 3rem;
}
.contact-info-panel h3 {
color: #fff;
}
.contact-info-panel a {
color: rgba(255, 255, 255, 0.8);
}
.contact-info-panel a:hover {
color: var(--ls-accent);
}
.form-control,
.form-select {
border-radius: var(--radius-sm);
padding: 0.8rem 1rem;
border: 1px solid #e2e8f0;
}
.form-control:focus,
.form-select:focus {
border-color: var(--ls-accent);
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
/* --- Footer --- */
footer {
background: var(--ls-primary);
color: #94a3b8;
padding: 4rem 0 2rem;
}
.footer-brand {
color: #fff;
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
display: block;
}
.footer-brand span {
color: var(--ls-accent);
}
.footer-links a {
color: #94a3b8;
display: block;
margin-bottom: 0.5rem;
text-decoration: none;
}
.footer-links a:hover {
color: #fff;
transform: translateX(5px);
}
/* --- Responsive --- */
@media (max-width: 991px) {
.hero-title {
font-size: 2.5rem;
}
.hero-image-container {
margin-top: 3rem;
}
.contact-info-panel {
padding: 2rem;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
#eym-float{
position:fixed;
right:20px;
bottom:20px;
z-index:99999999;
font-family:inherit;
}
.float-stack{
display:flex;
flex-direction:column;
gap:12px;
align-items:flex-end;
}
/* Botones flotantes */
.float-btn{
width:58px;
height:58px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#fff;
border:none;
cursor:pointer;
box-shadow:0 8px 30px rgba(0,0,0,.3);
transition:.25s;
}
.float-btn:hover{
transform:scale(1.07);
}
/* Facebook */
.float-btn.fb{
background:#1877F2;
}
/* WhatsApp */
.float-btn.wa{
background:#25D366;
}
/* VENTANA WHATSAPP */
.wa-window{
position:absolute;
right:0;
bottom:70px;
width:320px;
max-width:90vw;
background:#0b0f18;
border-radius:16px;
overflow:hidden;
opacity:0;
transform:translateY(20px);
pointer-events:none;
transition:opacity .25s, transform .25s;
box-shadow:0 16px 50px rgba(0,0,0,.45);
}
.wa-window.active{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}
/* Encabezado */
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:12px;
background:#101623;
}
.wa-avatar{
width:36px;
height:36px;
border-radius:8px;
}
.wa-head-meta{
display:flex;
flex-direction:column;
color:#fff;
}
.online{
color:#25D366;
font-size:.8rem;
}
.wa-close{
margin-left:auto;
background:none;
border:none;
color:#fff;
font-size:26px;
cursor:pointer;
opacity:.6;
}
.wa-close:hover{opacity:1;}
/* Mensajes */
.wa-body{
max-height:260px;
overflow:auto;
padding:12px;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
padding:10px 14px;
border-radius:12px;
max-width:85%;
line-height:1.3;
font-size:.95rem;
}
.bot{
background:#182235;
color:#fff;
align-self:flex-start;
}
/* Input */
.wa-compose{
display:flex;
gap:8px;
padding:10px;
background:#131b2b;
}
.wa-compose textarea{
flex:1;
resize:none;
background:#0d1322;
border:1px solid #222c40;
color:#fff;
border-radius:10px;
padding:8px;
min-height:44px;
outline:none;
}
.wa-send{
background:#25D366;
border:none;
border-radius:10px;
color:#fff;
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-size:20px;
}
Manifest preview
{
"template": "construccionleamsi.com.ar/index.html",
"template_mtime": 1765462548,
"template_mtime_human": "2025-12-11T14:15:48+00:00",
"css_links_found": [
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://unpkg.com/[email protected]/dist/aos.css",
"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css",
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
],
"css_links_external": [
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://unpkg.com/[email protected]/dist/aos.css",
"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css",
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
],
"css_links_embedded": [],
"inline_style_blocks": 2,
"inline_imports_external": [],
"inline_imports_embedded": [],
"missing_css_files": []
}