
/* ===== RESET Y VARIABLES ===== */
:root {
    --primary: #0056b3;
    --secondary: #e63946;
    --accent: #2a9d8f;
    --dark: #2E2E2E;
    --light: #f8f9fa;
    --gray: #6c757d;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    --backgroundbox: white; 
    --marcas1: white;
    --backgroundheader: #94999e;
    --backgroundmarcas1:white;
    --backgroundmarcas2: #444444;
    --backgroundfooter:#2E2E2E;
    
}
html[theme="dark"] {
    --primary: #0056b3;
    --secondary: #e63946;
    --accent: #2a9d8f;
    --dark:#f8f9fa;
    --light: #2E2E2E;
    --gray: #6c757d;    
    --background: linear-gradient(135deg, #black 0%, #151414 100%);
     --backgroundbox:  #424242; 
    --backgroundheader: #1b1a1a;
     --backgroundmarcas1: #424242;
     --backgroundmarcas2: #0f0f0f;
     --backgroundfooter:#0f0f0f;
  /* --gray se puede ajustar si querés */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px; /* header más chico en móvil */
  }
}


header {
  background-color: var(--backgroundheader);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

header .logo {
  width: 70px;
  padding: 12px 0;
}

.theme-toggle {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  margin-right: 20px;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 0;
}

.theme-toggle:hover {
  opacity: 1;
}
/* Estilo del menú hamburguesa */
.menu-toggle {
  display: none; /* Oculto por defecto */
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Menú de navegación */
header nav {
  display: flex;
  gap: 15px;
}

header a {
  padding: 10px 12px;
  text-decoration: none;
  font-weight: bold;
  color: var(--dark);
  white-space: nowrap;
}

header a:hover {
  color: var(--primary);
}

/* 📱 Responsive: para pantallas pequeñas */
@media (max-width: 768px) {
  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light);
    flex-direction: column;
    padding: 15px;
    box-shadow: var(--shadow);
    display: none; /* Oculto por defecto */
  }

  header nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* ===== LAYOUT PRINCIPAL ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    
}

section {
    padding: 5rem 0;
    
}

/* ===== SECCIÓN NOSOTROS ===== */
.about-section {
    background: var(--background);
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.25;
    border-radius: 50%;
    transform: translate(30%, -30%);
    background-image:url(fuentes/impresora01.png);
    background-size:70%;
    background-repeat: no-repeat;
    background-position: 30% 80%;
    
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--accent);
    opacity: 0.25;
    border-radius: 50%;
    transform: translate(-30%, 30%);
    background-image:url(fuentes/impresora02.png);
    background-size:70%;
    background-repeat: no-repeat;
    background-position: 75% 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== CONTENIDO NOSOTROS ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    
}

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    padding-right: 1rem;
}

.company-name {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.company-tagline {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.company-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.highlight-box {
    background: var(--backgroundbox);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.highlight-title {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.highlight-title i {
    margin-right: 10px;
    color: var(--accent);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-icon {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== IMAGEN ===== */
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== MARCAS ===== */
.brands-section {
    background: var(--backgroundmarcas2);
    padding: 3rem 0;
    text-align: center;
}

.brands-title {
    color: var(--marcas1);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.brand-item {

    
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    width: 100px;
    height: 50px;

}
.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #004494 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #c1121f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
#mapa {
  text-align: center; /* ← Esto centra elementos inline-block como .cta-button */
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 40%;
    position: relative;
    height: 0;
    margin: 3%;
    border-radius: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}





/* ===== FOOTER ===== */
footer {
    background: var(--backgroundfooter);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-column > p,
.footer-column > a {
    color: #adb5bd;
    margin-bottom: 0.8rem;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}


#contacto p {
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    color: #adb5bd;
}

#contacto a {
    color: #adb5bd; /* mismo color que el texto */
    text-decoration: none; /* sin subrayado */
    transition: color 0.3s ease;
}

/* Hover: cuando pasás el mouse */
#contacto a:hover {
    color: white; /* o var(--accent), o el color que quieras */
    text-decoration: underline; /* opcional: subrayado al pasar */
}


.copyright {
    padding-top: 2rem;
    border-top: 1px solid #495057;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .company-tagline {
        font-size: 1.3rem;
    }
    
    section {
        padding: 3rem 0;
    }
}



/* Boton de WhatsApp */
  .btn-whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #4dc247;
	border-radius: 50%;
	padding: 5px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
	transition: box-shadow 0.3s ease;
    z-index: 3;
  }
  
  .whatsapp-ico {
	fill: white;
	width: 50px;
	height: 50px;
  }
  
  .btn-whatsapp:hover {
	box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.7);
  }

  .btn-whatsapp .tooltip-text {
    visibility: hidden;
    background-color: #f0f0f0; /* Fondo clarito */
    color: #333;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    left: -330%;  /* Posiciona el tooltip a la izquierda del  cono */
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  /* Muestra el tooltip al pasar el mouse */
  .btn-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }


  /*particulares de INICIO*/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
video {
  width: 100%;
  height: auto;
  max-height: 100vh; 
  object-fit: contain; 
  border-radius: 1em;
  padding: 20px;
  align-items: center;
  justify-items: center;
}
