/* RESET IMPORTANTE */
body {
margin: 0;
}
/* NAVBAR */
.termair-navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #063f5c;
z-index: 99999;
height: 90px;
display: flex;
align-items: center;
}
/* CONTENEDOR */
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
/* LOGO */
.nav-logo {
display: flex;
align-items: center;
}
.nav-logo img {
height: 42px;
display: block;
}
/* MENU */
.nav-menu {
display: flex;
align-items: center;
gap: 25px;
}
.nav-menu a,
.nav-dropdown span {
color: #9fe7f5;
text-decoration: none;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: 0.3s;
line-height: 1; /* 👈 CLAVE */
}
.nav-menu a:hover,
.nav-dropdown span:hover {
color: #ffa900;
}
/* DROPDOWN */
.nav-dropdown {
position: relative;
}
.dropdown-menu {
position: absolute;
top: 55px;
left: 0;
background: #063f5c;
border-radius: 6px;
padding: 10px 0;
min-width: 240px;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: 0.3s;
}
.dropdown-menu a {
display: block;
padding: 10px 20px;
font-size: 0.85rem;
color: #9fe7f5;
}
.dropdown-menu a:hover {
background: rgba(255,255,255,0.05);
color: #ffa900;
}
/* HOVER DESKTOP */
@media (min-width: 769px) {
.nav-dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
}
/* HAMBURGUESA */
.nav-toggle {
display: none;
font-size: 24px;
color: white;
cursor: pointer;
}
/* MOBILE */
@media (max-width: 768px) {
.nav-toggle {
display: block;
}
.nav-menu {
position: absolute;
top: 90px;
left: 0;
width: 100%;
background: #063f5c;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 20px;
display: none;
}
.nav-menu.active {
display: flex;
}
.nav-menu a,
.nav-dropdown span {
width: 100%;
text-align: center;
padding: 10px 0;
}
.nav-dropdown {
width: 100%;
}
.dropdown-menu {
position: static;
opacity: 0;
visibility: hidden;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
}
.nav-dropdown.active .dropdown-menu {
opacity: 1;
visibility: visible;
max-height: 500px;
}
}
/* 🔥 FIX REAL PARA ELEMENTOR */
.elementor-section,
.elementor-container,
.elementor-widget-wrap {
margin-top: 0 !important;
padding-top: 0 !important;
}
/* SEPARACIÓN REAL DEL CONTENIDO */
body {
padding-top: 90px; /* 👈 ESTE ES EL FIX DEFINITIVO */
}
function toggleMenu() {
document.getElementById("navMenu").classList.toggle("active");
}
function toggleDropdown() {
document.getElementById("dropdownObras").classList.toggle("active");
}
.innovacion-termair {
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
padding: 60px 20px;
background-color: #ffffff;
}
.innovacion-container {
max-width: 1100px;
margin: 0 auto;
text-align: center;
}
/* TITULO */
.innovacion-titulo {
color: #063f5c;
font-size: 2.5rem;
margin-bottom: 10px;
text-transform: uppercase;
font-weight: 800;
}
/* SUBTITULO */
.innovacion-texto {
color: #419ebd;
max-width: 700px;
margin: 0 auto 20px;
letter-spacing: 0.5px;
}
.innovacion-texto::after {
content: '';
display: block;
width: 60px;
height: 4px;
background-color: #ffa900;
margin: 15px auto 0;
}
/* TEXTO EXTRA */
.innovacion-extra {
color: #555;
max-width: 700px;
margin: 30px auto 50px;
font-size: 0.95rem;
}
/* TIMELINE */
.timeline {
position: relative;
margin: 40px 0;
padding-left: 20px;
}
/* LINEA */
.timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
width: 3px;
height: 100%;
background-color: #ffa900;
transform: translateX(-50%);
}
/* ITEM */
.timeline-item {
position: relative;
width: 50%;
padding: 20px 30px;
box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
left: 0;
text-align: right;
}
.timeline-item:nth-child(even) {
left: 50%;
text-align: left;
}
/* PUNTO */
.timeline-item::before {
content: '';
position: absolute;
top: 25px;
width: 14px;
height: 14px;
background-color: #063f5c;
border: 3px solid #ffa900;
border-radius: 50%;
z-index: 2;
}
.timeline-item:nth-child(odd)::before {
right: -8px;
}
.timeline-item:nth-child(even)::before {
left: -8px;
}
/* CONTENIDO */
.timeline-content {
background: #f9f9f9;
padding: 15px 20px;
border-radius: 8px;
font-size: 0.9rem;
color: #555;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
/* IMAGEN */
.timeline-img {
margin-top: 12px;
}
.timeline-img img {
width: 100%;
max-width: 260px;
border-radius: 6px;
display: block;
}
/* alineacion imagen segun lado */
.timeline-item:nth-child(odd) .timeline-img img {
margin-left: auto;
}
.timeline-item:nth-child(even) .timeline-img img {
margin-right: auto;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.innovacion-titulo {
font-size: 1.8rem;
}
.timeline::before {
left: 10px;
}
.timeline-item {
width: 100%;
padding-left: 40px;
padding-right: 20px;
text-align: left !important;
left: 0 !important;
}
.timeline-item::before {
left: 2px !important;
}
.timeline-img img {
margin: 10px 0 0 0 !important;
max-width: 100%;
}
}
Innovación
Innovar es nuestra forma de construir el futuro, proyecto a proyecto. Descubre la evolución de nuestras obras a través de una trayectoria definida por la eficiencia y el diseño avanzado.
Recorre con nosotros los proyectos realizados a lo largo de nuestra historia, pioneros en termomecánica.
1958 Fundación de la empresa
1970 Propulsora Siderúrgica Instalamos el primer enfriador con compresor a tornillo en el país.
1978 Edificio Cóndor Instalamos la primera planta de enfriadores de líquido con condensadores de aire remotos.
Capacidad: 1.200 T.R.
1994 Casa de gobierno de la nación Primera instalación de Aire Acondicionado con equipos VRV marca DAIKIN en Argentina.
Capacidad: 330 T.R.
1996 Embajada EEUU Instalamos la primera planta con enfriadores accionados por motor a gas y recuperación de calor.
Capacidad: 450 T.R.
.termair-footer {
background-color: #063f5c;
color: white;
padding: 25px 20px;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
}
/* IZQUIERDA */
.footer-brand {
font-weight: 700;
margin: 0;
}
.footer-copy {
font-size: 0.8rem;
color: #9fe7f5;
margin: 5px 0 0;
}
/* CENTRO */
.footer-center a {
color: #9fe7f5;
text-decoration: none;
margin: 0 10px;
font-size: 0.85rem;
transition: 0.3s;
}
.footer-center a:hover {
color: #ffa900;
}
/* DERECHA */
.footer-right {
display: flex;
gap: 15px;
}
.footer-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255,255,255,0.1);
transition: 0.3s;
}
.footer-icon:hover {
background: #ffa900;
}
.footer-icon svg {
width: 18px;
height: 18px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
text-align: center;
}
.footer-center {
order: 3;
}
}
/* Año automático */
document.getElementById("year").textContent = new Date().getFullYear();