:root {
  --black: #0b0b0b;
  --black-2: #111111;
  --dark: #1a1a1a;
  --yellow: #ffc107;
  --yellow-dark: #d89b00;
  --white: #ffffff;
  --gray: #cfcfcf;
  --whatsapp: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.topbar {
  height: 42px;
  background: #ffc107;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  font-weight: 700;
}

.navbar {
  min-height: 100px;
  padding: 22px 60px;
  background: linear-gradient(90deg, #050505, #181818, #050505);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo img {
  width: 300px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.menu a:hover {
  color: var(--yellow);
}

.menu-btn {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: #111;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  gap:10px;
}

.btn-outline {
  border: 2px solid var(--yellow);
  color: #fff;
  gap: 10px;
  font-size: 22px;
}

.btn-black {
  background: #111;
  color: #fff;
}

.btn-outline-dark {
  border: 2px solid var(--yellow);
  color: #111;
}

.hero {
  min-height: 720px;
  background: url("../img/Banner/Banner-industrial.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.65) 42%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding-left: 70px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: 1000;
}
.espacio{
	font-size:22px;
}
.hero h1 span {
  color: var(--yellow);
  display: block;
}

.hero h2 {
  margin-top: 26px;
  font-size: clamp(26px, 3vw, 42px);
  text-transform: uppercase;
}

.hero h2 strong {
  color: var(--yellow);
}

.hero p {
  margin-top: 20px;
  font-size: 22px;
  color: #eee;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-benefits {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.section {
  padding: 70px 0;
}

.section h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 42px;
  color: inherit;
}

.section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--yellow);
  display: block;
  margin: 14px auto 0;
}

.dark {
  background: linear-gradient(90deg, #0b0b0b, #1b1b1b, #0b0b0b);
}

.light {
  background: #f4f4f4;
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.services-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 32px 20px;
  border-left: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  color: #fff;
}

.service-card span {
  font-size: 44px;
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
}

.service-card h3 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 14px;
}

.service-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.service-card strong {
  color: var(--yellow);
  font-size: 13px;
  text-transform: uppercase;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.image-card {
  background: #111;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.image-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.image-card div {
  padding: 24px;
}

.image-card h3 {
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.image-card p {
  color: #ddd;
  margin-bottom: 14px;
}

.image-card a {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.center {
  text-align: center;
  margin-top: 32px;
}

.trust-bar {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  text-align: center;
}

.trust-bar div {
  padding: 28px 18px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.cta {
  background: var(--yellow);
  color: #111;
  padding: 38px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  text-transform: uppercase;
  font-size: 34px;
}

.cta-content > div:last-child {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.seo-section h2 {
  text-align: left;
}

.seo-section h2::after {
  margin-left: 0;
}

.seo-section p {
  line-height: 1.7;
  margin-bottom: 18px;
}

.two-cols img {
  border-radius: 6px;
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.map-section {
  display: grid;
  grid-template-columns: 40% 60%;
  background: #111;
}

.map-info {
  padding: 70px;
}

.map-info h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.map-info ul {
  margin-top: 20px;
  padding-left: 20px;
  line-height: 1.9;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.footer {
  background: #050505;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer img {
  width: 220px;
  margin-bottom: 18px;
}

.footer h3 {
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer a,
.footer p {
  display: block;
  color: #cfcfcf;
  margin-bottom: 10px;
  font-size: 14px;
}

.copyright {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  background: #000;
  color: #999;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

@media (max-width: 980px) {
  .topbar {
    padding: 0 20px;
    font-size: 13px;
  }

  .navbar {
    padding: 20px;
  }

  .logo img {
    width: 240px;
  }

  .menu,
  .navbar > .btn {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
    background: none;
    color: var(--yellow);
    border: none;
    font-size: 34px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
    background-position: center right;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.72) 45%,
      rgba(0,0,0,0.95) 100%
    );
  }

  .hero-content {
    padding: 0 24px 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 14px;
  }

  .services-grid,
  .services-grid.three,
  .cards-3,
  .gallery-grid,
  .two-cols,
  .map-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .map-info {
    padding: 40px 24px;
  }
}
.benefits{
  display:flex;
  align-items:center;
  gap:50px;
  margin-top:40px;
  flex-wrap:wrap;
}

.benefit-item{
  display:flex;
  align-items:center;
  gap:14px;
}

.benefit-item i{
  font-size:42px;
  color:#FFC107;
}

.benefit-item h4{
  color:#FFFFFF;
  font-size:15px;
  font-weight:900;
  margin:0;
  line-height:1.1;
}
.amarillo{
	color:#ffc107;
}
.benefit-item p{
  color:#FFFFFF;
  font-size:13px;
  margin:2px 0 0;
  opacity:.85;
  line-height:1.1;
}
.benefit-item:hover i{
  transform:scale(1.08);
  transition:.2s ease;
}
@media(max-width:768px){

  .benefits{
    flex-direction:column;
    align-items:flex-start;
    gap:24px;
  }

}
@media (max-width: 980px) {

  .menu.active{
    display:flex;
    position:absolute;
    top:100px;
    left:0;
    width:100%;
    background:#111;
    flex-direction:column;
    padding:30px;
    gap:20px;
    z-index:999;
  }

}