* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f4efe7;
  color: #071424;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:30px;
}

.btn-gold,
.btn-outline{
    padding:12px 22px;
    border-radius:8px;

    font-size:14px;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;
    transition:.3s;
}

.btn-gold{
    background:#c9932e;
    color:#fff;
}

.btn-outline{
    border:1px solid rgba(201,147,46,.6);
    color:#fff;
}

.btn-gold:hover,
.btn-outline:hover{
    transform:translateY(-2px);
}

.btn-outline:hover{
    background:#c9932e;
    border-color:#c9932e;
}

.header{
  background:#071424;
  height:105px;
  padding:0 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.logo{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
}

.logo img{
  height:88px;
  width:auto;
  display:block;
}

.logo::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-10px;
  width:70px;
  height:2px;
  background:#c9932e;
}

.menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex:1;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  position:relative;
  padding-bottom:9px;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#c9932e;
  transition:.3s;
}

.menu a:hover,
.menu a.active{
  color:#c9932e;
}

.menu a:hover::after,
.menu a.active::after{
  width:100%;
}

.header-buttons{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn-header{
  background:#c9932e;
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:8px;
  font-size:15px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:9px;
  white-space:nowrap;
}

.menu-toggle{
  display:none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 680px;
  background: #071424;
  color: #fff;
  display: grid;
  grid-template-columns: 35% 65%;
  overflow: hidden;
}

.hero-text {
  position: relative;
  padding: 85px 6% 110px;
  background: #071424;
  z-index: 10;
}

.hero-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -90px;
  width: 180px;
  height: 100%;
  background: linear-gradient(
    90deg,
    #071424 0%,
    rgba(7,20,36,.70) 55%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
}

.tag {
  color: #c9932e;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #c9932e;
}

.gold-line {
  width: 65px;
  height: 2px;
  background: #c9932e;
  margin: 25px 0;
}

.desc {
  font-size: 18px;
  line-height: 1.5;
  color: #e6e6e6;
  margin-bottom: 35px;
  max-width: 540px;
}

.buttons {
  display: flex;
  gap: 18px;
}

/* SLIDER INFO */
.hero-slider-info {
  position: absolute;
  left: 12px;
  top: 58%;
  transform: translateY(-50%);
  z-index: 20;
  color: #c9932e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-weight: bold;
}

.vertical-line {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,.35);
}

.dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}

.dot.active {
  background: #c9932e;
}

/* HERO IMAGES */
.hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
  margin-left: -10px;
  border-left: 2px solid rgba(201,147,46,.65);
  background: #071424;
}

.hero-panel:first-child {
  margin-left: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0,0,0,.78) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(.92);
  transition: opacity .4s ease, transform .5s ease;
  filter: brightness(.95);
}

.panel-mega img {
  filter: brightness(.98) sepia(.10);
}

.hero-panel:hover img {
  transform: scale(.97);
}

.panel-title {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  text-align: center;
  color: #fff;
  z-index: 3;
  text-shadow: 0 4px 14px rgba(0,0,0,.75);
}

.panel-title h2 {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.panel-title h2 span {
  font-size: 16px;
}

.panel-title h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}

.panel-mega .panel-title h3 {
  color: #c9932e;
  font-weight: 900;
}

.panel-title p {
  margin-top: 8px;
  font-size: 11px;
  font-weight: bold;
}

/* ==============================
   BARRA DE SERVICIOS
============================== */

.services-section{
  position:relative;
  margin-top:-25px;
  z-index:10;
}

.services-box{
  width:94%;
  max-width:1500px;
  margin:auto;
  background:#f3efe8;
  border-radius:18px;
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  padding:36px 18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  overflow:hidden;
}

.service-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 14px;
  border-right:1px solid rgba(7,20,36,.12);
  min-width:0;
}

.service-item:last-child{
  border-right:none;
}

.service-item img{
  width:60px;
  height:60px;
  object-fit:contain;
  flex-shrink:0;
}

.service-item h3{
  color:#071424;
  font-size:11px;
  font-weight:800;
  line-height:1.28;
  letter-spacing:.2px;
  text-transform:uppercase;
}

/* Tablet / pantallas medianas */
@media(max-width:1350px){
  .services-box{
    grid-template-columns:repeat(3,1fr);
    gap:25px 0;
  }

  .service-item:nth-child(3),
  .service-item:nth-child(6){
    border-right:none;
  }
}

@media(max-width:768px){

    .services-section{
        margin-top:30px;
    }

    .services-box{
        grid-template-columns:1fr;
        padding:20px 25px;
        gap:0;
    }

    .service-item{
        display:flex;
        align-items:center;
        gap:18px;

        padding:22px 0;

        border-right:none;
        border-bottom:1px solid rgba(7,20,36,.10);

        justify-content:flex-start;
    }

    .service-item:last-child{
        border-bottom:none;
    }

    .service-item img{
        width:55px;
        height:55px;
    }

    .service-item h3{
        font-size:14px;
        line-height:1.3;
        letter-spacing:.2px;
    }

}

.stats-client{
  background:#f3efe8;
  padding:35px 5%;
}

.stats-client-box{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
}

.stat-client-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  padding:18px 30px;
  border-right:1px solid rgba(7,20,36,.12);
}

.stat-client-item:last-child{
  border-right:none;
}

.stat-client-item i{
  color:#c9932e;
  font-size:54px;
  flex-shrink:0;
}

.stat-client-item h3{
  color:#071424;
  font-size:24px;
  font-weight:600;
  line-height:1;
  margin:0 0 8px;
  text-transform:uppercase;
}

.stat-client-item p{
  color:#071424;
  font-size:14px;
  text-transform:uppercase;
  margin:0;
}

/* Responsive */
@media(max-width:900px){
  .stats-client-box{
    grid-template-columns:repeat(2,1fr);
    gap:25px 0;
  }

  .stat-client-item:nth-child(2){
    border-right:none;
  }
}

@media(max-width:600px){
  .stats-client-box{
    grid-template-columns:1fr;
  }

  .stat-client-item{
    justify-content:flex-start;
    border-right:none;
    border-bottom:1px solid rgba(7,20,36,.12);
  }

  .stat-client-item:last-child{
    border-bottom:none;
  }
}


/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1100px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:50px;
    }

}

@media(max-width:768px){

    .footer{
        padding:60px 8% 25px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .footer-logo{
        width:190px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }

}

/* TABLET */
@media(max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
    padding: 70px 7%;
  }

  .hero-text::after {
    display: none;
  }

  .gold-line {
    margin: 25px auto;
  }

  .desc {
    margin-left: auto;
    margin-right: auto;
  }

  .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  


  .hero-slider-info {
    display: none;
  }

  .hero-images {
    height: 430px;
  }

  .hero-panel {
    min-height: 430px;
  }

  .hero-panel img {
    transform: scale(1);
  }

  .hero-panel:hover img {
    transform: scale(1.04);
  }

  .services-box {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-item {
    border-right: none;
    border-bottom: 1px solid rgba(6,26,49,.10);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats div {
    border-right: none;
  }
}

/* CELULAR */
@media(max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 18px;
  }

  .logo img {
    height: 65px;
  }

  .menu {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-images {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-panel {
    clip-path: none;
    margin-left: 0;
    min-height: 260px;
    border-left: none;
    border-bottom: 2px solid rgba(201,147,46,.45);
  }

  .panel-title {
    bottom: 35px;
  }

  .panel-title h2 {
    font-size: 28px;
  }

  .services-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    min-height: 130px;
    padding: 20px 15px;
    gap: 12px;
  }

  .service-item img {
    width: 40px;
    height: 40px;
  }

  .service-item h3 {
    font-size: 12px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 180px;
  }
}

@media(max-width: 500px) {
  .hero-text {
    padding: 55px 7%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .desc {
    font-size: 16px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn-header,
  .btn-gold,
  .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* =========================
   NOSOTROS - PROPUESTA CLIENTE
========================= */

.about-page{
    background:#071424;
   height:620px;
    display:grid;
    grid-template-columns:34% 32% 34%;
    overflow:hidden;
    color:#fff;
}

/* Texto izquierdo */
.about-info{
    padding:40px 55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    z-index:3;
}

.about-info .section-tag{
    color:#c9932e;
    font-size:13px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
}

.about-info h1{
    font-size:37px;
    line-height:1.12;
    font-weight:900;
    margin:18px 0;
}

.about-info h1 span{
    color:#c9932e;
}

.gold-line{
    width:65px;
    height:2px;
    background:#c9932e;
    margin:6px 0 24px;
}

.about-info p{
    font-size:13px;
    line-height:1.65;
    color:#e8e8e8;
    margin-bottom:16px;
    max-width:500px;
}

.about-btn{
    margin-top:8px;
    width:max-content;
    padding:13px 24px;
    border:1px solid #c9932e;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.about-btn:hover{
    background:#c9932e;
}

/* Imagen central */
.about-center{
    position:relative;
    overflow:hidden;
    clip-path:polygon(10% 0,100% 0,90% 100%,0 100%);
    border-left:2px solid rgba(201,147,46,.75);
    z-index:2;
}

.about-center img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

/* Columna derecha con diagonal continua */
.about-side{
    display:grid;
    grid-template-rows:33.33% 33.33% 33.34%;
    margin-left:-45px;
    position:relative;
    z-index:4;
    clip-path:polygon(9% 0,100% 0,100% 100%,0 100%);
    background:#071424;
}

.side-top,
.side-middle,
.side-bottom{
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:55% 45%;
}

.side-top,
.side-middle{
    border-bottom:2px solid rgba(255,255,255,.12);
}

.side-img{
    overflow:hidden;
}

.side-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.side-brand{
    position:relative;
    margin-left:-75px;
    z-index:3;

    clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:18px 25px 18px 65px;
    background:#071424;
}

.side-brand h3{
    font-size:32px;
    font-weight:900;
    line-height:1;
    color:#fff;
}

.side-brand h3 span{
    font-size:15px;
    margin-left:5px;
}

.side-brand p{
    font-size:11px;
    color:#fff;
    margin-top:6px;
    line-height:1.25;
}

.side-brand small{
    font-size:8px;
    color:#fff;
    margin-top:6px;
}


.artprint-brand,
.uniformes-brand{
    clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);
    margin-left:-75px;
}

.mega-brand{
    background:#c9932e;
    clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);
    margin-left:-75px;
}

.uniformes-brand h3{
    font-size:30px;
}

/* Responsive */
@media(max-width:1200px){

    .about-page{
        height:auto;
        grid-template-columns:1fr;
    }

    .about-info{
        padding:55px 8%;
    }

    .about-center{
        height:420px;
        clip-path:none;
        border-left:none;
    }

    .about-side{
        margin-left:0;
        clip-path:none;
        grid-template-rows:repeat(3,230px);
    }
}

@media(max-width:768px){

    .about-info h1{
        font-size:32px;
    }

    .about-info p{
        font-size:14px;
    }

    .about-center{
        height:330px;
    }

    .side-top,
    .side-middle,
    .side-bottom{
        grid-template-columns:1fr;
    }

    .side-brand{
        min-height:105px;
    }

    .about-side{
        grid-template-rows:auto;
    }
}


/*==========================
      VALORES
==========================*/

.values-section{
    background:#f4efe7;
    padding:55px 6%;
}

.values-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    margin-bottom:45px;
}

.values-title span{
    width:95px;
    height:1px;
    background:#c9932e;
}

.values-title h2{
    color:#071424;
    font-size:22px;
    font-weight:800;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
}

.value-card{
    display:flex;
    gap:18px;
    padding:0 25px;
    border-right:1px solid rgba(7,20,36,.15);
}

.no-border{
    border-right:none;
}

.value-card i{
    font-size:42px;
    color:#071424;
    flex-shrink:0;
}

.value-card img{
  width:52px;
  height:52px;
  object-fit:contain;
  flex-shrink:0;
}

.value-card h3{
    font-size:13px;
    font-weight:800;
    color:#071424;
    margin-bottom:8px;
}

.value-card p{
    font-size:14px;
    line-height:1.7;
    color:#444;
}

.stats-nosotros.dark-version{
  width:90%;
  margin:45px auto 80px;
  background:#071424;
  border-radius:14px;
  padding:28px 35px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  color:#fff;
}

.stats-nosotros.dark-version .stats-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  border-right:1px solid rgba(201,147,46,.45);
}

.stats-nosotros.dark-version .stats-item:last-child{
  border-right:none;
}

.stats-nosotros.dark-version i{
  font-size:42px;
  color:#c9932e;
}

.stats-nosotros.dark-version strong{
  display:block;
  color:#c9932e;
  font-size:28px;
  line-height:1;
}

.stats-nosotros.dark-version span{
  display:block;
  color:#fff;
  text-transform:uppercase;
  font-size:12px;
  margin-top:5px;
}

@media(max-width:900px){
  .stats-nosotros{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .stats-item{
    border-right:none;
  }
}

@media(max-width:600px){
  .stats-nosotros{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){

  .header,
  .about-page,
  .values-section,
  .stats-nosotros,
  .footer{
    width:100%;
  }

  .about-page{
    display:block;
    height:auto;
  }

  .about-info{
    padding:45px 24px;
  }

  .about-center{
    height:360px;
    clip-path:none;
  }

  .about-side{
    height:auto;
    display:grid;
    grid-template-rows:none;
  }

  .about-company{
    height:240px;
  }

  .values-grid{
    grid-template-columns:1fr;
  }

  .stats-nosotros{
    grid-template-columns:1fr;
  }

}

@media (max-width:768px){

    .values-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .value-card{
        border-right:none !important;
        padding:0;
        gap:18px;
        align-items:flex-start;
    }

    .value-card i{
        font-size:34px;
        min-width:40px;
    }

    .value-card h3{
        font-size:15px;
    }

    .value-card p{
        font-size:14px;
        line-height:1.6;
    }

}

/* ==============================
   NUESTRAS EMPRESAS
============================== */

.empresas-page{
  background:#f4efe7;
  padding:55px 5% 70px;
}

.empresas-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 45px;
}

.empresas-header span{
  color:#c9932e;
  font-size:15px;
  font-weight:800;
  letter-spacing:5px;
}

.empresas-header h1{
  color:#071424;
  font-size:48px;
  line-height:1.1;
  margin:15px 0 12px;
}

.empresas-header p{
  color:#333;
  font-size:17px;
  line-height:1.6;
}

.title-line{
  width:120px;
  height:2px;
  background:#c9932e;
  margin:25px auto 0;
  position:relative;
}

.title-line::after{
  content:"";
  width:10px;
  height:10px;
  background:#c9932e;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.empresas-section{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.empresa-card{
  background:#f8f4ee;
  border:1px solid rgba(7,20,36,.10);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
   display:flex;
  flex-direction:column;
}

.empresa-hero{
  height:230px;
  position:relative;
  overflow:hidden;
}

.empresa-hero > img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.empresa-panel{
  position:absolute;
  top:0;
  right:0;
  width:58%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);
}

.empresa-panel.navy{
  background:#071424;
}

.empresa-panel.gold{
  background:#c9932e;
}

.company-name{
  text-align:center;
  padding:18px;
}

.company-name img{
  max-width:82%;
  max-height:70px;
  object-fit:contain;
  margin-bottom:10px;
}

.company-name p{
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:.4px;
  line-height:1.3;
}

.empresa-content{
  padding:28px 26px 18px;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:25px;
  flex:1;
}

.empresa-content p{
  color:#222;
  font-size:14px;
  line-height:1.8;
}

.empresa-content ul{
  list-style:none;
  padding:0;
  margin:0;
}

.empresa-content li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#222;
  font-size:13px;
  margin-bottom:13px;
  
}

.empresa-content li i{
  width:24px;
  color:#071424;
  font-size:18px;
}

.empresa-footer{
  text-align:center;
  padding:20px 25px 30px;
}

.empresa-footer a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-width:170px;
  padding:13px 30px;
  border:1px solid #c9932e;
  border-radius:4px;
  color:#071424;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  transition:.3s;
}

.empresa-footer a:hover{
  background:#c9932e;
  color:#fff;
}

.empresas-benefits{
  margin-top:28px;
  background:#071424;
  border-radius:10px;
  padding:28px 35px;
  display:grid;
  grid-template-columns:1.3fr repeat(4,1fr);
  gap:25px;
  color:#fff;
}

.benefit-intro{
  display:flex;
  align-items:center;
  gap:20px;
  padding-right:25px;
  border-right:1px solid rgba(201,147,46,.45);
}

.benefit-intro i{
  width:70px;
  height:70px;
  min-width:70px;
  background:#c9932e;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
}

.benefit-intro p{
  color:#fff;
  font-size:15px;
  line-height:1.6;
}

.benefit-item{
  display:flex;
  align-items:center;
  gap:15px;
}

.benefit-item i{
  color:#c9932e;
  font-size:34px;
  min-width:38px;
}

.benefit-item h3{
  font-size:14px;
  line-height:1.3;
  margin-bottom:6px;
}

.benefit-item p{
  color:#e6e6e6;
  font-size:13px;
  line-height:1.5;
}

/* Responsive */

@media(max-width:1200px){
  .empresas-section{
    grid-template-columns:1fr;
  }

  .empresa-hero{
    height:300px;
  }

  .empresas-benefits{
    grid-template-columns:1fr 1fr;
  }

  .benefit-intro{
    border-right:none;
  }
}

@media(max-width:768px){
  .empresas-page{
    padding:45px 22px;
  }

  .empresas-header h1{
    font-size:34px;
  }

  .empresa-content{
    grid-template-columns:1fr;
  }

  .empresa-panel{
    width:62%;
  }

  .empresas-benefits{
    grid-template-columns:1fr;
  }

  .benefit-intro{
    flex-direction:column;
    text-align:center;
    padding-right:0;
  }
}

.mega-name h2,
.mega-name h3{
  color:#fff;
}

.company-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.company-content{
  padding:26px 28px 30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  flex:1;
}

.company-content p{
  font-size:14px;
  line-height:1.8;
  color:#111;
}

.company-content ul{
  list-style:none;
  margin-top:10px;
}

.company-content li{
  font-size:14px;
  line-height:1.8;
  margin-bottom:10px;
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#111;
}

.company-content li i{
  font-size:18px;
  color:#071424;
  width:22px;
  margin-top:4px;
}

.btn-card{
  grid-column:1 / -1;
  justify-self:center;
  margin-top:auto;
  border:1px solid #071424;
  color:#071424;
  text-decoration:none;
  padding:14px 34px;
  border-radius:5px;
  text-transform:uppercase;
  font-size:15px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:18px;
  transition:.3s;
}

.btn-card:hover{
  border-color:#c9932e;
  color:#c9932e;
}

.btn-card.gold{
  border-color:#c9932e;
  color:#c9932e;
}

@media(max-width:1100px){
  .companies-grid{
    grid-template-columns:1fr;
  }

  .company-img{
    height:320px;
  }
}

@media(max-width:700px){
  .companies-heading h1{
    font-size:34px;
  }

  .companies-heading p{
    font-size:16px;
  }

  .company-content{
    grid-template-columns:1fr;
  }
}

.menu-toggle{
  display:none;
  background:none;
  border:1px solid #c9932e;
  color:#fff;
  font-size:14px;
  padding:10px 14px;
  border-radius:6px;
}

@media(max-width:768px){

  .header{
    height:auto;
    padding:18px 20px 24px;
    flex-direction:column;
    gap:16px;
  }

  .logo{
    min-width:auto;
  }

  .logo img{
    height:78px;
  }

  .logo::after{
    bottom:-10px;
    width:60px;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    margin-top:18px;
    padding:10px 20px;

    background:transparent;
    border:1px solid #c9932e;
    border-radius:8px;

    color:#fff;
    font-size:15px;
    font-weight:700;
  }

  .menu{
    display:none;
    width:100%;
    flex-direction:column;
    gap:14px;
    padding-top:15px;
  }

  .menu.active{
    display:flex;
  }

  .header-buttons{
    display:none;
  }
}

/* ==============================
   PÁGINA PRODUCTOS
============================== */

.productos-page{
  background:#071424;
  color:#fff;
  padding:60px 4% 70px;
}

.productos-layout{
  display:grid;
  grid-template-columns:24% 76%;
  gap:32px;
  align-items:start;
}

.productos-left span{
  color:#c9932e;
  font-size:15px;
  font-weight:800;
  letter-spacing:5px;
}

.productos-left h1{
  font-size:48px;
  line-height:1.08;
  margin:16px 0;
}

.productos-left h1 strong{
  color:#c9932e;
}

.gold-line{
  width:70px;
  height:2px;
  background:#c9932e;
  margin:22px 0;
}

.productos-left p{
  color:#e6e6e6;
  font-size:15px;
  line-height:1.8;
  margin-bottom:30px;
}

.catalog-btn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  border:1px solid #c9932e;
  color:#fff;
  text-decoration:none;
  padding:15px 25px;
  border-radius:5px;
  font-size:13px;
  font-weight:800;
}

.productos-benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:35px;
}

.product-benefit{
  display:flex;
  gap:16px;
  padding-right:22px;
  border-right:1px solid rgba(201,147,46,.45);
}

.product-benefit:last-child{
  border-right:none;
}

.product-benefit i{
  color:#c9932e;
  font-size:38px;
  min-width:42px;
}

.product-benefit h3{
  font-size:15px;
  line-height:1.25;
  margin-bottom:10px;
}

.product-benefit p{
  color:#e6e6e6;
  font-size:13px;
  line-height:1.6;
}

.productos-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}

.producto-card{
  background:#081727;
  border:1px solid rgba(255,255,255,.12);
  border-radius:7px;
  overflow:hidden;
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.producto-card:hover{
  transform:translateY(-4px);
  border-color:#c9932e;
}

.producto-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

.producto-card div{
  height:58px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 14px;
  background:#081727;
}

.producto-card i{
  width:35px;
  height:35px;
  border:1px solid #c9932e;
  border-radius:50%;
  color:#c9932e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  flex-shrink:0;
}

.producto-card h3{
  font-size:14px;
  font-weight:800;
  flex:1;
}

.producto-card span{
  color:#c9932e;
  font-size:34px;
  line-height:1;
}

.productos-cta{
  margin-top:28px;
  background:#081727;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  padding:26px 35px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.cta-left{
  display:flex;
  align-items:center;
  gap:22px;
}

.cta-left > i{
  width:62px;
  height:62px;
  border-radius:50%;
  background:#c9932e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.cta-left h2{
  font-size:22px;
}

.cta-left p{
  color:#c9932e;
  font-size:14px;
  margin-top:5px;
}

.cta-buttons{
  display:flex;
  gap:18px;
}

.cta-buttons a{
  min-width:230px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(201,147,46,.85);
  padding:14px 24px;
  border-radius:4px;
  font-size:12px;
  font-weight:700;
}

.cta-buttons a:last-child{
  color:#c9932e;
}

/* Responsive */

@media(max-width:1200px){
  .productos-layout{
    grid-template-columns:1fr;
  }

  .productos-benefits{
    grid-template-columns:repeat(2,1fr);
  }

  .productos-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .productos-page{
    padding:45px 22px;
  }

  .productos-left h1{
    font-size:36px;
  }

  .productos-benefits{
    grid-template-columns:1fr;
  }

  .product-benefit{
    border-right:none;
    border-bottom:1px solid rgba(201,147,46,.35);
    padding-bottom:18px;
  }

  .productos-grid{
    grid-template-columns:1fr;
  }

  .producto-card img{
    height:240px;
  }

  .productos-cta{
    flex-direction:column;
    text-align:center;
  }

  .cta-left{
    flex-direction:column;
  }

  .cta-buttons{
    flex-direction:column;
    width:100%;
  }

  .cta-buttons a{
    width:100%;
  }
}

/* =========================
   PÁGINA PROYECTOS
========================= */

.projects-page{
  background:#071424;
  color:#fff;
  padding:55px 5% 70px;
  overflow:hidden;
}

.projects-top{
  display:grid;
  grid-template-columns:24% 76%;
  gap:18px;
  align-items:start;
}

.projects-intro span{
  color:#c9932e;
  font-weight:800;
  letter-spacing:3px;
  text-transform:uppercase;
}

.projects-intro h1{
  font-size:48px;
  line-height:1.08;
  margin:18px 0;
}

.projects-intro h1 strong{
  color:#c9932e;
}

.projects-intro p{
  color:#e8e8e8;
  font-size:15px;
  line-height:1.8;
  max-width:380px;
  margin-bottom:28px;
}

.featured-project{
  margin-top:30px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}

.featured-project img{
  width:100%;
  height:150px;
  object-fit:cover;
  display:block;
}

.projects-features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
  margin-bottom:35px;
  padding-top:30px;
}

.project-feature{
  display:flex;
  gap:16px;
  padding-right:25px;
  border-right:1px solid rgba(201,147,46,.45);
}

.project-feature:last-child{
  border-right:none;
}

.project-feature i{
  color:#c9932e;
  font-size:38px;
  flex-shrink:0;
}

.project-feature h3{
  font-size:15px;
  line-height:1.25;
  text-transform:uppercase;
  margin-bottom:8px;
}

.project-feature p{
  color:#dcdcdc;
  font-size:13px;
  line-height:1.6;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.project-card{
  background:#0b1b2d;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  overflow:hidden;
  text-decoration:none;
  color:#fff;
  transition:.3s ease;
}

.project-card:hover{
  transform:translateY(-5px);
  border-color:#c9932e;
}

.project-card img{
  width:100%;
  height:205px;
  object-fit:cover;
  display:block;
}

.project-info{
  padding:16px 18px;
  background:#081727;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}

.project-info h3{
  font-size:15px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.project-info p{
  color:#dcdcdc;
  font-size:13px;
  line-height:1.4;
}

.project-info > i{
  width:42px;
  height:42px;
  border:1px solid #c9932e;
  color:#c9932e;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.projects-stats{
  margin-top:35px;
  background:#081727;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:32px 40px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.project-stat{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  border-right:1px solid rgba(201,147,46,.45);
}

.project-stat:last-child{
  border-right:none;
}

.project-stat i{
  color:#c9932e;
  font-size:42px;
}

.project-stat strong{
  display:block;
  color:#fff;
  font-size:30px;
  line-height:1;
}

.project-stat span{
  display:block;
  color:#dcdcdc;
  font-size:13px;
  margin-top:6px;
  text-transform:uppercase;
}

/* TABLET */
@media(max-width:1200px){

  .projects-top{
    grid-template-columns:1fr;
  }

  .projects-features{
    grid-template-columns:repeat(2,1fr);
  }

  .projects-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .featured-project img{
    height:260px;
  }

}

/* MÓVIL */
@media(max-width:768px){

  .projects-page{
    padding:45px 24px;
  }

  .projects-intro h1{
    font-size:36px;
  }

  .projects-features{
    grid-template-columns:1fr;
    gap:22px;
  }

  .project-feature{
    border-right:none;
    border-bottom:1px solid rgba(201,147,46,.35);
    padding-bottom:20px;
  }

  .project-feature:last-child{
    border-bottom:none;
  }

  .projects-grid{
    grid-template-columns:1fr;
  }

  .project-card img{
    height:250px;
  }

  .projects-stats{
    grid-template-columns:1fr;
    padding:30px 25px;
  }

  .project-stat{
    justify-content:flex-start;
    border-right:none;
  }
}

.small-card{
    margin-top:16%;
}

.small-card img{
    height:160px;
}

.small-card .project-info{
    min-height:75px;
}

.left-projects{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:30px;
}

.left-project-card{
    margin-top:20px;
}

.left-project-card img{
    height:170px;
}

.left-project-card .project-info{
    min-height:75px;
}

/* =========================
   PÁGINA BLOG
========================= */

.blog-page{
  background:#f4efe7;
}

.blog-hero{
  background:#071424;
  color:#fff;
  display:grid;
  grid-template-columns:45% 55%;
  min-height:430px;
  overflow:hidden;
}

.blog-hero-text{
  padding:70px 6%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.blog-hero-text span{
  color:#c9932e;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.blog-hero-text h1{
  font-size:46px;
  line-height:1.08;
  margin:16px 0;
}

.blog-hero-text h1 strong{
  color:#c9932e;
}

.blog-hero-text p{
  color:#e6e6e6;
  font-size:16px;
  line-height:1.8;
  max-width:520px;
}

.blog-hero-img{
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);
  overflow:hidden;
}

.blog-hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-categories{
  width:88%;
  margin:-45px auto 35px;
  background:#071424;
  border:1px solid rgba(201,147,46,.35);
  border-radius:10px;
  padding:22px 25px;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
  position:relative;
  z-index:5;
}

.blog-categories a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:12px;
  border-right:1px solid rgba(201,147,46,.35);
}

.blog-categories a:last-child{
  border-right:none;
}

.blog-categories a i{
  font-size:24px;
}

.blog-categories a.active,
.blog-categories a:hover{
  color:#c9932e;
}

.blog-grid{
  width:88%;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.blog-card{
  background:#f8f4ee;
  border:1px solid rgba(7,20,36,.10);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.blog-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}

.blog-content{
  padding:18px;
}

.blog-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.blog-meta span{
  background:#c9932e;
  color:#fff;
  font-size:10px;
  font-weight:800;
  padding:5px 9px;
  border-radius:4px;
  text-transform:uppercase;
}

.blog-meta small{
  color:#555;
  font-size:11px;
  white-space:nowrap;
}

.blog-content h3{
  color:#071424;
  font-size:18px;
  line-height:1.3;
  margin-bottom:12px;
}

.blog-content p{
  color:#333;
  font-size:14px;
  line-height:1.7;
  margin-bottom:18px;
}

.blog-content a{
  color:#c9932e;
  font-weight:800;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.blog-more{
  text-align:center;
  margin:30px 0 35px;
}

.blog-newsletter{
  width:88%;
  margin:0 auto 70px;
  background:#071424;
  border-radius:12px;
  padding:32px 40px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:35px;
  align-items:center;
  color:#fff;
  margin-top:5%;
}

.newsletter-text{
  display:flex;
  align-items:center;
  gap:20px;
}

.newsletter-text > i{
  width:68px;
  height:68px;
  border-radius:50%;
  background:#c9932e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.newsletter-text h2{
  font-size:24px;
  margin-bottom:6px;
}

.newsletter-text p{
  color:#e6e6e6;
  font-size:15px;
}

.newsletter-form{
  display:flex;
  gap:15px;
}

.newsletter-form input{
  flex:1;
  background:#081727;
  border:1px solid rgba(255,255,255,.15);
  border-radius:6px;
  padding:16px 18px;
  color:#fff;
  outline:none;
}

.newsletter-form button{
  background:#c9932e;
  color:#fff;
  border:none;
  padding:16px 28px;
  border-radius:6px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
}

/* Responsive */
@media(max-width:1200px){

  .blog-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .blog-categories{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:768px){

  .blog-hero{
    grid-template-columns:1fr;
  }

  .blog-hero-text{
    padding:55px 8%;
  }

  .blog-hero-text h1{
    font-size:34px;
  }

  .blog-hero-img{
    clip-path:none;
    height:260px;
  }

  .blog-categories{
    width:90%;
    margin:25px auto;
    grid-template-columns:1fr;
  }

  .blog-categories a{
    border-right:none;
    border-bottom:1px solid rgba(201,147,46,.25);
    padding-bottom:12px;
  }

  .blog-grid{
    width:90%;
    grid-template-columns:1fr;
  }

  .blog-card img{
    height:240px;
  }

  .blog-newsletter{
    width:90%;
    grid-template-columns:1fr;
    padding:28px 22px;
  }

  .newsletter-text{
    flex-direction:column;
    text-align:center;
  }

  .newsletter-form{
    flex-direction:column;
  }
}

/*==========================
      CTA BLOG
==========================*/

.blog-cta{
    width:88%;
    margin:0 auto 70px;

    background:#071424;
    border-radius:14px;
    border:1px solid rgba(201,147,46,.15);
margin-top:5%;
    padding:40px 50px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.blog-cta-icon{
    width:80px;
    height:80px;
    min-width:80px;

    border-radius:50%;
    background:#c9932e;

    display:flex;
    align-items:center;
    justify-content:center;
}

.blog-cta-icon i{
    color:#fff;
    font-size:34px;
}

.blog-cta-text{
    flex:1;
}

.blog-cta-text h2{
    color:#fff;
    font-size:36px;
    margin-bottom:12px;
}

.blog-cta-text p{
    color:#e6e6e6;
    line-height:1.9;
    max-width:650px;
}

.blog-cta-buttons{
    display:flex;
    gap:18px;
}

.btn-white{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.20);

    padding:16px 28px;
    border-radius:8px;

    text-decoration:none;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    transition:.3s;
}

.btn-white:hover{
    border-color:#c9932e;
}

/* .btn-gold{
    background:#c9932e;
    color:#fff;

    padding:16px 28px;
    border-radius:8px;

    text-decoration:none;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-2px);
} */

/* RESPONSIVE */

@media(max-width:992px){

    .blog-cta{
        flex-direction:column;
        text-align:center;
    }

    .blog-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-white,
    .btn-gold{
        justify-content:center;
    }

}

@media(max-width:768px){

    .blog-cta{
        width:90%;
        padding:35px 25px;
    }

    .blog-cta-text h2{
        font-size:28px;
    }

}

/* =========================
   DETALLE BLOG
========================= */

.blog-detail{
  background:#f4efe7;
}

.blog-detail-hero{
  background:#071424;
  color:#fff;
  padding:80px 8% 70px;
  text-align:center;
}

.blog-detail-hero span{
  color:#c9932e;
  font-weight:800;
  letter-spacing:3px;
  text-transform:uppercase;
}

.blog-detail-hero h1{
  max-width:900px;
  margin:20px auto;
  font-size:52px;
  line-height:1.1;
}

.blog-detail-hero p{
  max-width:760px;
  margin:0 auto 20px;
  color:#e6e6e6;
  font-size:18px;
  line-height:1.8;
}

.blog-detail-hero small{
  color:#c9932e;
  font-weight:700;
}

.blog-detail-img{
  width:80%;
  margin:-35px auto 50px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 14px 35px rgba(0,0,0,.18);
}

.blog-detail-img img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

.blog-detail-content{
  width:70%;
  max-width:900px;
  margin:0 auto;
}

.blog-detail-content p{
  color:#222;
  font-size:18px;
  line-height:2;
  margin-bottom:28px;
}

.blog-detail-content h2{
  color:#071424;
  font-size:30px;
  margin:38px 0 15px;
}

.blog-detail-quote{
  background:#071424;
  border-left:5px solid #c9932e;
  padding:30px 35px;
  margin:45px 0;
  border-radius:10px;
}

.blog-detail-quote p{
  color:#fff;
  font-size:24px;
  line-height:1.6;
  margin:0;
}

.blog-detail-cta{
  width:80%;
  margin:60px auto 80px;
  background:#071424;
  color:#fff;
  border-radius:14px;
  padding:40px 50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.blog-detail-cta h2{
  font-size:32px;
  margin-bottom:8px;
}

.blog-detail-cta p{
  color:#e6e6e6;
}

/* Responsive */

@media(max-width:900px){

  .blog-detail-hero h1{
    font-size:38px;
  }

  .blog-detail-img,
  .blog-detail-content,
  .blog-detail-cta{
    width:90%;
  }

  .blog-detail-img img{
    height:320px;
  }

  .blog-detail-cta{
    flex-direction:column;
    text-align:center;
  }

}

@media(max-width:600px){

  .blog-detail-hero{
    padding:60px 7% 55px;
  }

  .blog-detail-hero h1{
    font-size:32px;
  }

  .blog-detail-content p{
    font-size:16px;
  }

  .blog-detail-content h2{
    font-size:25px;
  }

  .blog-detail-quote p{
    font-size:20px;
  }

}


/* =========================
   PÁGINA CONTACTO
========================= */

.contact-page{
  background:#071424;
  color:#fff;
  padding:60px 5% 70px;
}

.contact-top{
  display:grid;
  grid-template-columns:25% 31% 40%;
  gap:45px;
  align-items:start;
}

.contact-intro span,
.contact-channels h2{
  color:#c9932e;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.contact-intro h1{
  font-size:44px;
  line-height:1.08;
  margin:18px 0;
}

.contact-intro h1 strong{
  color:#c9932e;
}

.contact-intro p{
  color:#e6e6e6;
  font-size:16px;
  line-height:1.8;
}

.quick-help{
  margin:45px 0 25px;
  display:flex;
  gap:18px;
  align-items:center;
}

.quick-help i,
.channel-item i{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#0b1b2d;
  color:#c9932e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  flex-shrink:0;
}

.quick-help h3{
  font-size:17px;
  margin-bottom:6px;
}

.contact-channels{
  border-left:1px solid rgba(201,147,46,.35);
  padding-left:45px;
}

.channel-item{
  display:flex;
  gap:18px;
  margin-top:28px;
}

.channel-item h3{
  font-size:14px;
  text-transform:uppercase;
  margin-bottom:6px;
}

/* .channel-item strong{
  color:#c9932e;
  font-size:20px;
} */

.channel-item p{
  color:#e6e6e6;
  font-size:14px;
  line-height:1.5;
  margin-top:5px;
}

.contact-form-box{
  background:#0b1b2d;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:40px;
}

.contact-form-box h2{
  font-size:24px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.contact-form-box h2::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  background:#c9932e;
  margin-top:12px;
}

.contact-form-box p{
  color:#e6e6e6;
  line-height:1.6;
  margin-bottom:28px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.contact-form-box input,
.contact-form-box textarea{
  width:100%;
  background:#071424;
  border:1px solid rgba(255,255,255,.20);
  border-radius:6px;
  padding:16px;
  color:#fff;
  margin-bottom:15px;
  outline:none;
}

.contact-form-box textarea{
  height:130px;
  resize:none;
}

.contact-form-box button{
  width:100%;
  background:#c9932e;
  color:#fff;
  border:none;
  border-radius:6px;
  padding:17px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
  font-size:15px;
}

.contact-form-box small{
  display:block;
  margin-top:18px;
  color:#d6d6d6;
  font-size:13px;
}

.contact-bottom{
  background:#f4efe7;
  color:#071424;
  border-radius:14px;
  margin-top:45px;
  padding:35px;
  display:grid;
  grid-template-columns:55% 45%;
  gap:35px;
  align-items:center;
}

.contact-benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.contact-benefit{
  border-right:1px solid rgba(7,20,36,.15);
  padding-right:18px;
}

.contact-benefit:last-child{
  border-right:none;
}

.contact-benefit i{
  width:66px;
  height:66px;
  background:#071424;
  color:#c9932e;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:18px;
}

.contact-benefit h3{
  font-size:15px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.contact-benefit p{
  font-size:14px;
  line-height:1.6;
}

.contact-map img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.contact-final{
  margin-top:35px;
  background:#081727;
  border-radius:12px;
  padding:28px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.contact-final h2{
  font-size:20px;
  text-transform:uppercase;
  white-space: nowrap;
}

.contact-final h2 span{
  color:#c9932e;
}

.contact-final-words{
  display:flex;
  gap:40px;
  text-transform:uppercase;
}

.contact-social{
  display:flex;
  gap:16px;
}

.contact-social a{
  width:42px;
  height:42px;
  border:1px solid #c9932e;
  color:#c9932e;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

/* Responsive */

@media(max-width:1200px){
  .contact-top{
    grid-template-columns:1fr;
  }

  .contact-channels{
    border-left:none;
    padding-left:0;
  }

  .contact-bottom{
    grid-template-columns:1fr;
  }

  .contact-benefits{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .contact-page{
    padding:45px 24px;
  }

  .contact-intro h1{
    font-size:38px;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .contact-benefits{
    grid-template-columns:1fr;
  }

  .contact-benefit{
    border-right:none;
  }

  .contact-final{
    flex-direction:column;
    text-align:center;
  }

  .contact-final-words{
    flex-direction:column;
    gap:12px;
  }
}


/* =========================
   PÁGINA GRACIAS
========================= */

.thanks-page{
  min-height:100vh;
  background:#071424;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.thanks-card{
  max-width:620px;
  width:100%;
  background:#0b1b2d;
  border:1px solid rgba(201,147,46,.25);
  border-radius:18px;
  padding:55px 45px;
  text-align:center;
  color:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.thanks-logo{
  width:220px;
  margin-bottom:35px;
}

.thanks-icon{
  width:90px;
  height:90px;
  margin:0 auto 25px;
  border-radius:50%;
  background:#c9932e;
  display:flex;
  align-items:center;
  justify-content:center;
}

.thanks-icon i{
  font-size:42px;
  color:#fff;
}

.thanks-card h1{
  font-size:36px;
  margin-bottom:18px;
}

.thanks-card p{
  color:#e6e6e6;
  font-size:17px;
  line-height:1.8;
  margin-bottom:35px;
}

.thanks-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
}

@media(max-width:600px){
  .thanks-card{
    padding:45px 25px;
  }

  .thanks-logo{
    width:180px;
  }

  .thanks-card h1{
    font-size:28px;
  }

  .thanks-buttons{
    flex-direction:column;
  }

  .thanks-buttons a{
    justify-content:center;
  }
}


.menu a.active{
  color:#c9932e;
}

.menu a.active::after{
  width:100%;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  text-transform:uppercase;
  position:relative;
  padding-bottom:8px;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#c9932e;
  transition:.3s;
}

.menu a:hover,
.menu a.active{
  color:#c9932e;
}

.menu a:hover::after,
.menu a.active::after{
  width:100%;
}

.header-buttons{
    display:flex;
    gap:12px;
}

.btn-header{
    background:#c9932e;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:8px;
    font-size:14px;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    transition:.3s;
}

.btn-header:hover{
    transform:translateY(-2px);
}

.whatsapp-2{
    background:#c9932e;
    color:#fff;
}

@media(max-width:768px){

    .header-buttons{
        display:none;
    }

}

.whatsapp-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 34px;

    z-index: 99999;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    line-height: 0;      /* importante */
}

.whatsapp-float i{
    display:block;
}

/* =========================
   FOOTER CLARO
========================= */

.footer{
  background:#e2e2e2;
  color:#071424;
  padding:70px 6% 30px;
  border-top:1px solid #d9dde3;
}

.footer-container{
  display:grid;
  grid-template-columns:1.35fr 1fr 1.2fr 1.15fr;
  gap:70px;
}

.footer-logo{
  width:300px;
  margin-bottom:10px;
}

.footer-brand p{
  color:#071424;
  font-size:15px;
  line-height:2;
  margin-bottom:18px;
}

.footer-slogan{
  color:#071424 !important;
  font-weight:800;
  font-size:15px !important;
}

.footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 28px;
}

.footer-badges span{
  background:#071424;
  color:#fff;
  padding:8px 15px;
  border-radius:30px;
  font-size:12px;
  font-weight:700;
}

.footer-social{
  display:flex;
  gap:18px;
}

.footer-social a{
  width:42px;
  height:42px;
  border:1px solid #071424;
  border-radius:50%;
  color:#071424;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:20px;
  transition:.3s;
}

.footer-social a:hover{
  background:#071424;
  color:#fff;
}

.footer-col h3{
  color:#071424;
  font-size:20px;
  margin-bottom:28px;
  font-weight:800;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:15px;
}

.footer-col a{
  color:#071424;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.footer-col a:hover{
  color:#0d4b8f;
  padding-left:5px;
}

.footer-brand-item{
  margin-bottom:32px;
}

.footer-brand-item h4{
  color:#071424;
  font-size:17px;
  margin-bottom:12px;
  font-weight:800;
}

.brand-social{
  display:flex;
  gap:10px;
}

.brand-social a{
  width:40px;
  height:40px;
  border:1px solid #071424;
  border-radius:50%;
  color:#071424;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  position:relative;
  transition:.3s;
}

.brand-social a:hover{
  background:#071424;
  color:#fff;
  padding-left:0;
}

.icon-tooltip span{
  position:absolute;
  top:48px;
  left:50%;
  transform:translateX(-50%);
  background:#071424;
  color:#fff;
  padding:6px 10px;
  border-radius:5px;
  font-size:12px;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:10;
}

.icon-tooltip span::before{
  content:"";
  position:absolute;
  top:-6px;
  left:50%;
  transform:translateX(-50%);
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-bottom:6px solid #071424;
}

.icon-tooltip:hover span{
  opacity:1;
  visibility:visible;
}

.footer-contact p,
.footer-address{
  color:#071424;
  display:flex;
  align-items:flex-start;
  gap:13px;
  margin-bottom:18px;
  line-height:1.7;
  font-weight:600;
}

.footer-contact i{
  color:#071424;
  width:20px;
  min-width:20px;
  margin-top:4px;
}

.footer-whatsapp{
  display:flex;
  align-items:center;
  gap:12px;
  width:max-content;
  margin-bottom:14px;
  padding:10px 16px;
  border-radius:30px;
  background:#071424;
  color:#fff !important;
  text-decoration:none;
  font-weight:800;
  transition:.3s;
}

.footer-whatsapp i{
  color:#fff;
  margin-top:0;
}

.footer-whatsapp:hover{
  background:#0d2744;
  transform:translateX(4px);
  padding-left:16px !important;
}

.footer-email{
  font-size:14px;
}

.footer-email span{
  word-break:break-word;
  overflow-wrap:anywhere;
  max-width:100%;
}

.footer-bottom{
  margin-top:55px;
  padding-top:25px;
  border-top:1px solid #d9dde3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  color:#4b5563;
  font-size:14px;
}

.footer-bottom p{
  margin:0;
}

.footer-credit a{
  color:#071424;
  font-weight:800;
  text-decoration:none;
}

.footer-credit a::after{
  content:"↗";
  margin-left:6px;
  font-size:12px;
}

.footer-credit a:hover{
  color:#0d4b8f;
}

/* Responsive */

@media(max-width:1100px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:50px;
  }
}

@media(max-width:768px){
  .footer{
    padding:55px 8% 25px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:42px;
  }

  .footer-logo{
    width:200px;
  }

  .footer-whatsapp{
    width:100%;
    justify-content:center;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}


.slide-content{
  position:absolute;
  left:50%;
  bottom:45px;
  transform:translateX(-50%);
  text-align:center;
  z-index:3;
   width:90%;
  max-width:420px;
}

.slide-logo{
  width:auto;
  max-width:280px;
  max-height:85px;
  object-fit:contain;
  display:block;
  margin:0 auto 12px;
}

.slide-content p{
  color:#fff;
  font-size:9px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  white-space:nowrap;
  margin-top:10px;
}

.slide-logo-mega{
  max-width:260px;
}

.slide-logo-uniformes{
  max-width:300px;
}


.side-brand{

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.brand-logo{

    display:block;
    width:auto;
    height:auto;
    object-fit:contain;
    margin-bottom:14px;

}

/* ArtPrint */

.brand-logo-artprint{

    max-width:230px;

}

/* Mega */

.brand-logo-mega{

    max-width:220px;

}

/* Uniformes */

.brand-logo-uniformes{

    max-width:270px;

}

.side-brand p{

    margin:0;
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:.6px;
    text-transform:uppercase;
    white-space:nowrap;

}

.side-brand small{

    margin-top:5px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;

}

@media (max-width:768px){

    .brand-logo-artprint{
        max-width:150px;
    }

    .brand-logo-mega{
        max-width:145px;
    }

    .brand-logo-uniformes{
        max-width:170px;
    }

    .side-brand p{
        font-size:10px;
    }

    .side-brand small{
        font-size:10px;
    }

}

@media(max-width:768px){

  .stats-nosotros.dark-version{
    width:100%;
    margin:30px auto 55px;
    padding:22px 20px;
    grid-template-columns:1fr;
    gap:0;
    overflow:hidden;
  }

  .stats-nosotros.dark-version .stats-item{
    justify-content:flex-start;
    border-right:none;
    border-bottom:1px solid rgba(201,147,46,.35);
    padding:18px 0;
    gap:18px;
  }

  .stats-nosotros.dark-version .stats-item:last-child{
    border-bottom:none;
  }

  .stats-nosotros.dark-version i{
    font-size:38px;
    min-width:50px;
  }

  .stats-nosotros.dark-version strong{
    font-size:26px;
  }

  .stats-nosotros.dark-version span{
    font-size:12px;
  }
}


/* Botones WhatsApp */

.contact-whatsapp-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:8px;
    padding:8px 18px;

    border-radius:30px;

    background:#d6a02f;

    color:#071424;

    font-size:17px;
    font-weight:800;

    text-decoration:none;

    transition:.3s;

}

.contact-whatsapp-btn + .contact-whatsapp-btn{
    margin-left:10px;
}

.contact-whatsapp-btn:hover{

    background:#fff;
    color:#071424;

    transform:translateX(4px);

}

/* Correo */

.contact-email{

    display:block;

    color:#d6a02f;

    font-size:18px;      /* antes era muy grande */
    font-weight:700;

    line-height:1.4;

    word-break:break-word;
    overflow-wrap:anywhere;

}

.contact-whatsapp-btn{
  display:flex;
  align-items:center;
  justify-content:flex-start;

  width:max-content;
  max-width:100%;

  margin-top:8px;
  padding:6px 14px;

  border:1px solid #c9932e;
  border-radius:6px;

  background:transparent;
  color:#c9932e;

  font-size:16px;
  font-weight:800;
  text-decoration:none;

  transition:.3s;
}

.contact-whatsapp-btn + .contact-whatsapp-btn{
  margin-left:0;
}

.contact-whatsapp-btn:hover{
  background:#c9932e;
  color:#071424;
}

.channel-item > div{
  min-width:0;
  max-width:100%;
}

.contact-email{
  display:block;
  max-width:240px;

  color:#c9932e;
  font-size:15px;
  font-weight:700;
  line-height:1.35;

  white-space:normal;
  word-break:break-all;
  overflow-wrap:anywhere;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    height:58px;

    border:1px solid #d6a02f;
    border-radius:12px;

    color:#fff;
    background:transparent;

    font-size:18px;
    font-weight:700;

    text-decoration:none;

    transition:.3s;
}

.btn-outline:hover{
    background:#d6a02f;
    color:#071424;
}