Preview de mixed.css
/* MIXED CSS PACK */
/* Template: talleresmauro.com.ar/index.html */
/* Template mtime: 2025-10-16 18:28:44 */
/* 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.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--secondary: #0f172a;
--accent: #f59e0b;
--text: #1e293b;
--text-light: #64748b;
--light: #f8fafc;
--gray: #e2e8f0;
--success: #10b981;
--gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
--gradient-light: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.5rem;
}
.navbar {
background: #13202d;
color: #ffffff;
box-shadow: 0 4px 6px -1px rgba(0,0,0,.35);
transition: all 0.3s ease;
padding: .75rem 0; /* slightly tighter for taller logo */
}
.navbar .navbar-brand img {
display: block;
height: 56px;
width: auto;
object-fit: contain;
}
.navbar .nav-link { color: #ffffff !important; }
.navbar .nav-link:hover { color: #e2e8f0 !important; }
.navbar .navbar-toggler { border-color: rgba(255,255,255,.25); }
.navbar .navbar-toggler:focus { box-shadow: 0 0 0 .15rem rgba(255,255,255,.25); }
.navbar.scrolled {
padding: .5rem 0;
box-shadow: 0 10px 20px -3px rgba(0,0,0,.45);
}
.navbar-brand { /* applies when brand is text; image unaffected */
padding-top: 0;
padding-bottom: 0;
font-weight: 800;
font-size: 1.5rem;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-link {
font-weight: 500;
color: var(--text) !important;
position: relative;
transition: color 0.3s ease;
}
.nav-link:hover {
color: var(--primary) !important;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--gradient);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.btn {
font-weight: 600;
border-radius: 10px;
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.btn-primary {
background: var(--gradient);
border: none;
box-shadow: var(--shadow);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn-outline-primary {
border: 2px solid var(--primary);
color: var(--primary);
}
.btn-outline-primary:hover {
background: var(--primary);
color: white;
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.section {
padding: 5rem 0;
position: relative;
}
.section-title {
position: relative;
margin-bottom: 3rem;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--gradient);
border-radius: 2px;
}
.section-title.center::after {
left: 50%;
transform: translateX(-50%);
}
.eyebrow {
display: inline-block;
color: var(--primary);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
font-size: 0.8rem;
margin-bottom: 1rem;
position: relative;
}
.eyebrow::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 30px;
height: 2px;
background: var(--primary);
}
/* HERO SECTION */
.hero {
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
padding: 8rem 0 5rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%232563eb" opacity="0.03"/></svg>');
background-size: cover;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero .lead {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
}
.features-grid {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2rem;
}
.feature-badge {
display: flex;
align-items: center;
background: white;
padding: 0.75rem 1.25rem;
border-radius: 50px;
box-shadow: var(--shadow);
font-weight: 500;
transition: all 0.3s ease;
}
.feature-badge:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}
.feature-badge i {
color: var(--primary);
margin-right: 0.5rem;
font-size: 1.1rem;
}
.hero-image {
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-lg);
transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
transition: all 0.5s ease;
}
.hero-image:hover {
transform: perspective(1000px) rotateY(0) rotateX(0);
}
/* SERVICES SECTION */
.services {
background: var(--light);
}
.service-card {
background: white;
border-radius: 16px;
padding: 2rem;
height: 100%;
box-shadow: var(--shadow);
transition: all 0.3s ease;
border: 1px solid var(--gray);
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.service-icon {
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient);
color: white;
border-radius: 16px;
margin-bottom: 1.5rem;
font-size: 1.75rem;
}
/* WHY CHOOSE US */
.benefit-item {
display: flex;
align-items: flex-start;
margin-bottom: 1.5rem;
}
.benefit-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient);
color: white;
border-radius: 12px;
margin-right: 1rem;
font-size: 1.25rem;
}
/* CAROUSEL */
.carousel-frame {
width: 100%;
max-width: 600px;
height: 500px;
margin: 0 auto;
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-lg);
background: #000;
}
.carousel-frame img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.5s ease;
}
.carousel-frame:hover img {
transform: scale(1.05);
}
.carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
border: none;
margin: 0 5px;
}
.carousel-indicators button.active {
background-color: white;
}
.carousel-control-prev, .carousel-control-next {
width: 50px;
height: 50px;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 0;
transition: opacity 0.3s ease;
}
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
opacity: 1;
}
/* FAQS */
.accordion-item {
border: none;
margin-bottom: 1rem;
border-radius: 12px !important;
overflow: hidden;
box-shadow: var(--shadow);
}
.accordion-button {
background: white;
font-weight: 600;
padding: 1.25rem;
border: none;
box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
background: var(--primary);
color: white;
}
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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-button:not(.collapsed)::after {
background-image: url("data:image/svg/xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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 {
padding: 1.25rem;
}
/* CONTACT */
.contact-card {
background: white;
border-radius: 20px;
padding: 2.5rem;
box-shadow: var(--shadow);
height: 100%;
border: 1px solid var(--gray);
}
.form-control, .form-select {
border-radius: 10px;
padding: 0.75rem 1rem;
border: 1px solid var(--gray);
transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.contact-info-item {
display: flex;
align-items: flex-start;
margin-bottom: 1.5rem;
}
.contact-info-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient-light);
color: white;
border-radius: 12px;
margin-right: 1rem;
font-size: 1.25rem;
}
/* FOOTER */
footer {
background: var(--secondary);
color: #94a3b8;
padding: 4rem 0 2rem;
}
footer a {
color: #cbd5e1;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: white;
}
.footer-mini {
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 3rem;
padding-top: 1.5rem;
font-size: 0.9rem;
}
/* FLOATING WHATSAPP */
.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 25px;
right: 25px;
background: #25D366;
color: white;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: pulse 2s infinite;
}
.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}
@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);
}
}
/* RESPONSIVE */
@media (max-width: 992px) {
.hero h1 {
font-size: 2.5rem;
}
.hero::before {
width: 100%;
opacity: 0.1;
}
.hero-image {
transform: none;
margin-top: 2rem;
}
}
@media (max-width: 768px) {
.section {
padding: 3rem 0;
}
.hero {
padding: 6rem 0 3rem;
}
.hero h1 {
font-size: 2rem;
}
.carousel-frame {
height: 350px;
}
.feature-badge {
width: 100%;
}
}
@media (max-width: 576px) {
.hero h1 {
font-size: 1.75rem;
}
.carousel-frame {
height: 250px;
}
.btn {
width: 100%;
margin-bottom: 0.5rem;
}
.btn-group {
flex-direction: column;
}
}
@media (max-width: 991.98px) {
.navbar .navbar-brand img { height: 48px; }
}
@media (max-width: 575.98px) {
.navbar .navbar-brand img { height: 42px; }
}
Manifest preview
{
"template": "talleresmauro.com.ar/index.html",
"template_mtime": 1760639324,
"template_mtime_human": "2025-10-16T18:28:44+00:00",
"css_links_found": [
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
],
"css_links_external": [
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
],
"css_links_embedded": [],
"inline_style_blocks": 1,
"inline_imports_external": [],
"inline_imports_embedded": [],
"missing_css_files": []
}