<!–
============================================
SECCIÓN 1: NAVBAR (autocontenida y responsive)
============================================
– Pegar al inicio del
– Plus Jakarta Sans cargada desde Google Fonts
– Menú hamburguesa en mobile
–>
.at-navbar * { margin: 0; padding: 0; box-sizing: border-box; font-family: ‘Plus Jakarta Sans’, -apple-system, sans-serif; }
.at-navbar {
position: sticky;
top: 0;
z-index: 100;
background: rgba(10, 22, 40, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.at-navbar-inner {
max-width: 1400px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.at-logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: #fff;
cursor: pointer;
flex-shrink: 0;
}
.at-logo-mark {
width: 44px;
height: 44px;
background: linear-gradient(135deg, #1e5fbf, #3a7fd9);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
font-size: 1.1rem;
color: #fff;
box-shadow: 0 4px 12px rgba(30, 95, 191, 0.4);
}
.at-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.at-logo-text-main { font-weight: 800; font-size: 1.05rem; letter-spacing: 0.5px; color: #fff; }
.at-logo-text-sub {
font-size: 0.7rem;
color: #a8b8cc;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.at-nav-links {
display: flex;
align-items: center;
gap: 0.25rem;
list-style: none;
}
.at-nav-link {
position: relative;
padding: 0.6rem 1.1rem;
text-decoration: none;
color: #d4d4d4;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 0.5px;
text-transform: uppercase;
border-radius: 6px;
transition: all 0.2s ease;
cursor: pointer;
background: none;
border: none;
display: inline-block;
}
.at-nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.at-nav-link.active { color: #4a8fe9; }
.at-nav-link.active::after {
content: »;
position: absolute;
bottom: -2px;
left: 50%;
transform: translateX(-50%);
width: 24px;
height: 2px;
background: #4a8fe9;
border-radius: 2px;
}
.at-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.at-icon-btn {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.08);
color: #fff;
text-decoration: none;
transition: all 0.2s ease;
}
.at-icon-btn:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-1px); }
.at-icon-btn svg { width: 18px; height: 18px; }
.at-cta-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.7rem 1.3rem;
background: #25D366;
color: #fff;
text-decoration: none;
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 0.5px;
text-transform: uppercase;
border-radius: 8px;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.at-cta-btn:hover { background: #1fb855; transform: translateY(-1px); }
.at-cta-btn svg { width: 16px; height: 16px; }
.at-mobile-toggle {
display: none;
background: none;
border: none;
color: #fff;
cursor: pointer;
width: 40px;
height: 40px;
align-items: center;
justify-content: center;
}
.at-mobile-toggle svg { width: 24px; height: 24px; }
/* TABLET */
@media (max-width: 1100px) {
.at-nav-link { padding: 0.5rem 0.7rem; font-size: 0.78rem; }
.at-navbar-inner { gap: 1rem; padding: 1rem 1.5rem; }
}
/* MOBILE */
@media (max-width: 968px) {
.at-nav-links { display: none; }
.at-cta-btn span { display: none; }
.at-cta-btn { padding: 0.7rem; }
.at-mobile-toggle { display: flex; }
.at-nav-links.open {
display: flex;
position: absolute;
top: 100%;
left: 0;
right: 0;
flex-direction: column;
align-items: stretch;
background: #0a1628;
padding: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
gap: 0.25rem;
}
.at-nav-links.open .at-nav-link {
padding: 1rem;
width: 100%;
text-align: left;
}
.at-navbar-inner { padding: 1rem 1.25rem; }
.at-logo-text-sub { display: none; }
}
@media (max-width: 480px) {
.at-navbar-inner { padding: 0.75rem 1rem; gap: 0.5rem; }
.at-logo-mark { width: 38px; height: 38px; font-size: 1rem; }
.at-logo-text-main { font-size: 0.9rem; }
.at-icon-btn { width: 36px; height: 36px; }
}
(function() {
var toggle = document.getElementById(‘atMobileToggle’);
var links = document.getElementById(‘atNavLinks’);
if (toggle && links) {
toggle.addEventListener(‘click’, function() {
links.classList.toggle(‘open’);
});
}
})();
.at-hero, .at-hero * { box-sizing: border-box; font-family: ‘Plus Jakarta Sans’, -apple-system, sans-serif; }
.at-hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
padding: 4rem 2rem;
overflow: hidden;
background:
radial-gradient(ellipse at top right, rgba(30, 95, 191, 0.25), transparent 60%),
radial-gradient(ellipse at bottom left, rgba(58, 127, 217, 0.15), transparent 60%),
#0a1628;
color: #fff;
}
.at-hero::before {
content: »;
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
}
.at-hero-inner {
position: relative;
max-width: 1400px;
width: 100%;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.at-hero-content { animation: atFadeUp 0.8s ease; }
@keyframes atFadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.at-hero-tag {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.4rem 0.9rem;
background: rgba(30, 95, 191, 0.15);
border: 1px solid rgba(30, 95, 191, 0.4);
border-radius: 100px;
color: #4a8fe9;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.at-hero-tag::before {
content: »;
width: 6px;
height: 6px;
background: #4a8fe9;
border-radius: 50%;
box-shadow: 0 0 8px #4a8fe9;
animation: atPulse 2s infinite;
}
@keyframes atPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.at-hero h1 {
font-size: clamp(2.5rem, 5vw, 4.5rem);
font-weight: 800;
line-height: 1;
letter-spacing: -2px;
margin: 0 0 1rem 0;
color: #fff;
}
.at-hero h1 .at-accent {
background: linear-gradient(135deg, #3a7fd9, #4a8fe9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.at-hero-subtitle {
font-size: 1.5rem;
color: #a8b8cc;
margin: 0 0 1.5rem 0;
font-weight: 400;
}
.at-hero-description {
font-size: 1.05rem;
color: #a8b8cc;
max-width: 540px;
margin: 0 0 2rem 0;
line-height: 1.6;
}
.at-hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.at-btn-primary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 1.8rem;
background: #25D366;
color: #fff;
text-decoration: none;
font-weight: 700;
border-radius: 10px;
transition: all 0.2s ease;
box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
border: none;
cursor: pointer;
font-size: 1rem;
}
.at-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); }
.at-btn-secondary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 1.8rem;
background: rgba(30, 95, 191, 0.15);
border: 1px solid rgba(30, 95, 191, 0.4);
color: #fff;
text-decoration: none;
font-weight: 700;
border-radius: 10px;
transition: all 0.2s ease;
cursor: pointer;
font-size: 1rem;
}
.at-btn-secondary:hover { background: rgba(30, 95, 191, 0.25); transform: translateY(-2px); }
.at-hero-stats {
display: flex;
gap: 2.5rem;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
flex-wrap: wrap;
}
.at-stat-num {
font-size: 2rem;
font-weight: 800;
color: #4a8fe9;
line-height: 1;
}
.at-stat-label {
font-size: 0.8rem;
color: #a8b8cc;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 0.3rem;
}
.at-hero-visual {
position: relative;
height: 540px;
}
.at-hero-image {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
border-radius: 16px;
box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.at-hero-image::after {
content: »;
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent 50%, rgba(30, 95, 191, 0.25));
border-radius: 16px;
}
.at-hero-image-secondary {
position: absolute;
width: 45%;
height: 45%;
bottom: -20px;
right: -20px;
background-size: cover;
background-position: center;
border-radius: 12px;
border: 4px solid #0a1628;
box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.at-hero-badge {
position: absolute;
top: 20px;
left: -20px;
background: #0d1b30;
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 1rem 1.3rem;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0,0,0,0.5);
display: flex;
align-items: center;
gap: 0.8rem;
}
.at-hero-badge-icon {
width: 42px;
height: 42px;
background: linear-gradient(135deg, #1e5fbf, #3a7fd9);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
flex-shrink: 0;
}
.at-hero-badge-text { font-size: 0.8rem; color: #a8b8cc; }
.at-hero-badge-text strong { display: block; font-size: 0.95rem; color: #fff; }
/* TABLET */
@media (max-width: 1024px) {
.at-hero-inner { gap: 2.5rem; }
.at-hero-visual { height: 450px; }
}
/* MOBILE */
@media (max-width: 768px) {
.at-hero { padding: 3rem 1.25rem; min-height: auto; }
.at-hero-inner {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.at-hero-visual {
height: 380px;
order: -1;
}
.at-hero-image-secondary {
width: 40%;
height: 40%;
bottom: -15px;
right: -15px;
}
.at-hero-badge {
top: 15px;
left: 15px;
padding: 0.7rem 1rem;
}
.at-hero-stats { gap: 1.5rem; }
.at-stat-num { font-size: 1.6rem; }
.at-hero-subtitle { font-size: 1.2rem; }
}
@media (max-width: 480px) {
.at-hero { padding: 2rem 1rem; }
.at-hero-visual { height: 280px; }
.at-hero-actions {
flex-direction: column;
width: 100%;
}
.at-btn-primary, .at-btn-secondary {
width: 100%;
justify-content: center;
}
.at-hero-stats {
gap: 1rem;
margin-top: 2rem;
padding-top: 1.5rem;
}
.at-hero-stats > div { flex: 1 1 calc(33% – 1rem); min-width: 80px; }
.at-stat-num { font-size: 1.4rem; }
.at-stat-label { font-size: 0.7rem; }
}
Taller propio · 4 años de trayectoria
Tornería Metalmecánica e Hidráulica
Soluciones precisas para industria, campo y obra
Brindamos soluciones confiables en tornería, fabricación y trabajos hidráulicos,
orientadas a resolver necesidades reales de mantenimiento, producción y reparación.
Arroyo Cabral
Bv. Udry 1, Córdoba