
/* =========================
   ESPACIO DEL BODY
   Evita que el header fijo tape el contenido
========================= */
body {
  padding-top: 100px; /* igual a la altura del header */
  
}


/* =========================
   HEADER FIJO PRINCIPAL
   Se mantiene visible al hacer scroll
========================= */
.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}


/* =========================
   NAVBAR
   Define altura y centrado vertical
========================= */
.navbar {
  height: 100px;
  display: flex;
  align-items: center;
}


/* =========================
   LOGO DEL HEADER
   Control de tamaño y transición suave
========================= */
.logo {
  height: 50px;
  width: auto;
  transition: 0.3s;
}


/* =========================
   MENÚ DE NAVEGACIÓN
   Estilo base de enlaces
========================= */
.navbar-nav .nav-link {
  position: relative;
  color: #000;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}


/* =========================
   HOVER DEL MENÚ
   Cambia color y hace zoom leve
========================= */
.navbar-nav .nav-link:hover {
  color: #ffbd59;
  transform: scale(1.1);
}


/* =========================
   EFECTO LÍNEA ANIMADA
   Aparece debajo del menú al hacer hover
========================= */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}


/* =========================
   REDES SOCIALES
   Contenedor con separación visual
========================= */
.social-group {
  border-left: 1px solid #ddd;
  padding-left: 15px;
}


/* =========================
   ÍCONOS DE REDES
   Tamaño base y transición suave
========================= */
.social-icon {
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease;
}


/* =========================
   HOVER ÍCONOS
   Cambio de color y escala
========================= */
.social-icon:hover {
  color: #ffbd59;
  transform: scale(1.3);
}


/* =========================
   RESPONSIVE HEADER
   Ajustes para tablets y móviles
========================= */
@media (max-width: 991px) {

  .navbar {
    height: auto;
    padding: 10px 0;
  }

  .logo {
    height: 35px;
    width: auto;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 15px 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    text-align: center;
  }

  /* desactiva línea animada en móvil */
  .navbar-nav .nav-link::after {
    display: none;
  }

  .social-group {
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 10px;
    justify-content: center;
  }
}


/* ==============================================================================================================
   SECCIÓN HERO / BANNER
   Estilo principal de portada
================================================================================================================= */
.hero-premium {
  background: #f5f8f5;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
}


/* =========================
   TÍTULO HERO
   Animación de entrada + jerarquía visual
========================= */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}


/* resaltado del texto clave */
.hero-title span {
  color: #ffbd59;
  position: relative;
}


/* subrayado decorativo del span */
.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #ffbd59;
  opacity: 0.6;
}


/* =========================
   IMAGEN DEL HERO
   Animación + efecto hover
========================= */
.hero-image img {
  max-width: 260px;
  margin: 25px 0;

  opacity: 0;
  transform: scale(0.9);
  animation: fadeScale 1s ease forwards;
  animation-delay: 0.2s;

  transition: 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}


/* =========================
   TEXTO DEL HERO
   Descripción del servicio
========================= */
.hero-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #444;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.hero-text strong {
  color: #000;
}


/* =========================
   BOTÓN CTA SIMPLE
   (versión básica)
========================= */
.hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #ffbd59;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;

  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


/* =========================
   BOTÓN CTA PREMIUM
   Efecto degradado + brillo
========================= */
.hero-btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 25px;
  padding: 14px 34px;

   background:#25D366;
    color:#fff;
  font-weight: 700;
  font-size: 1rem;

  border-radius: 12px;
  text-decoration: none;

  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


/* hover del botón premium */
.hero-btn-premium:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}


/* efecto brillo animado */
.hero-btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.hero-btn-premium:hover::before {
  left: 130%;
}

.fa-whatsapp{
    font-size: 28px;
}


/* =========================
   ANIMACIONES GENERALES
========================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* =========================
   RESPONSIVE HERO
========================= */
@media (max-width: 768px) {

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 200px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-btn-premium {
    width: 100%;
    max-width: 280px;
  }

  /* brillo adaptado móvil */
  .hero-btn-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-25deg);
    transition: 0.5s;
  }
}



/* ===========================================================================================*
   SECCIÓN PYME
   Fondo sólido de impacto
============================================================================================= */
.pyme-section {
  background: #f7f5f5;
  min-height: 20vh;
  padding: 30px 20px;
}

/* =========================
   TÍTULO PRINCIPAL
   Alto contraste + peso visual
========================= */
.pyme-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #141414;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

/* =========================
   LÍNEA DIVISORIA
   Elemento visual de jerarquía
========================= */
.pyme-line {
  width: 80px;
  height: 3px;
  background: #fff;
  margin: 10px auto 20px auto;
  border-radius: 2px;
}

/* =========================
   TEXTO SECUNDARIO
   Mensaje emocional / branding
========================= */
.pyme-text {
  font-size: 1.3rem;
  color: #6f706f;
  font-weight: 500;
  opacity: 0.9;
}

.pyme-icon {
  font-size: 3rem;
  color: #ffbd59;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

/* efecto sutil */
.pyme-icon:hover {
  transform: scale(1.1);
  color: #fff;
}

@media (max-width: 768px) {
.pyme-title {
  font-size: 1.5rem;
}

.pyme-text {
  font-size: 1.0rem;
}
  
.pyme-icon {
  font-size: 2rem;
  
}
}



/* ===============================================================================================================================
   SECCIÓN SERVICIOS
================================================================================================================================= */
.services-section {
  background: #f5f8f5;
  padding: 80px 20px;
}
/* TITULO */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
}


/* =========================
   CARD
========================= */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;

  position: relative;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


/* =========================
   CARD DESTACADA
========================= */
.featured {
  border: 2px solid #ffbd59;
}

.badge-plan {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #ffbd59;
  color: #000;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}


/* =========================
   ICONO
========================= */
.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,189,89,0.15);
  border-radius: 50%;

  font-size: 30px;
  color: #ffbd59;
  transition: 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.15);
}


/* =========================
   TEXTO
========================= */
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}


/* =========================
   LISTA
========================= */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.service-card ul li {
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ok {
  color: #28a745;
}

.no {
  color: #dc3545;
}


/* =========================
   BOTÓN CTA
========================= */
.btn-cta {
  display: inline-block;
  padding: 12px 25px;
  background: #ffbd59;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px 15px;
  }
}

/* ====================================================================================================
   SECCIÓN CARRUSEL
======================================================================================================= */
.carousel-section {
  position: relative;
}

/* IMÁGENES */
.carousel-item img {
  height: 80vh;
  object-fit: cover;
}

/* OVERLAY NEGRO 50% */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* CONTENIDO */
.carousel-caption {
  z-index: 2;
  bottom: 50%;
  transform: translateY(50%);
  text-align: center;
}

/* TÍTULO */
.carousel-caption h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

/* TEXTO */
.carousel-caption p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 20px;
}

/* BOTÓN CTA */
.btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #ff0000;
  color: #fff;
  padding: 12px 25px;

  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-cta-red:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .carousel-item img {
    height: 60vh;
  }

  .carousel-caption h2 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .btn-cta-red {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

}



/* ================= SECCIÓN MARKETING ESTRATEGICO ============================================================================= */


.proceso {
    background-color: #ffbd59;
}

.titulo-proceso {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.titulo-proceso span {
    color: #FFF;
}

/* ================= CARDS ================= */
.proceso-card {
    background: #f5f8f5;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

/* HOVER EFECTO */
.proceso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICONO NUMÉRICO */
.icono {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 10px;
}

/* TÍTULO CARD */
.proceso-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* TEXTO */
.proceso-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* IMAGEN */
.proceso-img {
    max-width: 90%;
    border-radius: 12px;
}

/* ================= BOTÓN CTA ================= */
.btn-cta {
    display: inline-block;
    background: #e60023; /* rojo fuerte */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER IMPACTANTE */
.btn-cta:hover {
    background: #b8001c;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(230, 0, 35, 0.3);
}

.btn-cta {
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 0, 35, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(230, 0, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 35, 0); }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

    .titulo-proceso {
        font-size: 32px;
        text-align: center;
    }

    .proceso {
        text-align: center;
    }
}












/*========================================================*/
/* SECCIÓN */
/*========================================================*/

.marketing-section{

    padding:clamp(70px,8vw,120px) 0;

    background:linear-gradient(180deg,#ffffff,#f8f9fa);

}

/*========================================================*/
/* IMAGEN */
/*========================================================*/

.marketing-image{

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.marketing-image img{

    width:100%;

    height:auto;

    display:block;

    transition:.45s;

}

.marketing-image:hover img{

    transform:scale(1.04);

}

/*========================================================*/
/* CARD */
/*========================================================*/

.marketing-card{

    background:#fff;

    padding:clamp(25px,4vw,50px);

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

/*========================================================*/

.marketing-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#fff3e7;

    color:#ff6b00;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

}

.marketing-badge i{

    font-size:20px;

}

/*========================================================*/
/* TITULO */
/*========================================================*/

.marketing-card h2{

    font-size:clamp(24px,3vw,40px);

    font-weight:800;

    color:#111;

    line-height:1.2;

    margin-bottom:18px;

}

.marketing-line{

    width:80px;

    height:5px;

    background:#ff6b00;

    border-radius:20px;

    margin-bottom:25px;

}

/*========================================================*/
/* TEXTO */
/*========================================================*/

.marketing-card p{

    font-size:clamp(15px,1.15vw,18px);

    line-height:1.7;

    color:#555;

    text-align:justify;

    margin:0;

}

/*========================================================*/
/* RESPONSIVE */
/*========================================================*/

@media(max-width:992px){

    .marketing-card{

        margin-top:10px;
        text-align:justify;

    }

}

@media(max-width:768px){

    .marketing-card{

        text-align:center;

    }

    .marketing-line{

        margin:auto auto 25px;

    }

    .marketing-card p{

        text-align:justify;

    }

}











/*========================================*/
/* BANNER SERVICIOS */
/*========================================*/

.servicios-banner{
    background:#ffbd59;
    padding:40px 20px;

    text-align:center;

    overflow:hidden;

}

/*========================================*/

.servicios-banner .container{

    opacity:0;

    transform:translateX(180px);

    animation:entrarDerecha 1.2s ease forwards;

}

/*========================================*/

.servicios-tag{

    display:inline-block;

    padding:10px 22px;

    background:#fff;

    color:#000;

    font-size:14px;

    font-weight:700;

    border-radius:40px;

    letter-spacing:2px;

    margin-bottom:22px;

    text-transform:uppercase;

}

/*========================================*/

.servicios-banner h2{

    font-size:clamp(34px,5vw,60px);

    font-weight:800;

    color:#111;

    margin-bottom:22px;

}

/*========================================*/

.servicios-banner p{

    max-width:750px;

    margin:auto;

    font-size:clamp(17px,2vw,20px);

    line-height:1.7;

    color:#2d2d2d;

}

/*========================================*/
/* ANIMACION */
/*========================================*/

@keyframes entrarDerecha{

    from{

        opacity:0;

        transform:translateX(180px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}










.nosotros-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #222;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
}

.custom-card {
  border: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 10px;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.icon {
  font-size: 2.8rem;
  color: #ffbd59;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.values-list li {
  padding: 6px 0;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 992px) {

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-card h5 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }
    .values-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}











.faq-section {
  background-color: #e9e9e9;
}

.faq-section .section-title {
  font-weight: 800;
  color: #000;
}

.faq-section .section-subtitle {
  color: #b81c1c;
}

/* Acordeón negro */
.faq-accordion .accordion-item {
  background-color: #000;
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #111;
  color: #ffbd59;
}

.faq-accordion .accordion-body {
  background-color: #111;
  color: #ddd;
}

/* Iconos alineados */
.faq-accordion i {
  color: #ffbd59;
}

#faq {
  color: #000 !important;
}

#faq .section-title {
  color: #000 !important;
}

#faq .section-subtitle {
  color: #000 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section .section-title {
    font-size: 1.6rem;
  }

  .faq-section .section-subtitle {
    font-size: 0.95rem;
  }

  .faq-accordion .accordion-button {
    font-size: 0.95rem;
  }

  .faq-accordion .accordion-body {
    font-size: 0.9rem;
  }
}







/*========================================*/

.contacto-premium{

    background:#ffbd59;

    padding:90px 0;

    position:relative;

    overflow:hidden;

}

/*========================================*/

.circulo{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.15);

}

.c1{

    width:260px;

    height:260px;

    top:-100px;

    left:-90px;

}

.c2{

    width:220px;

    height:220px;

    right:-70px;

    bottom:-70px;

}

/*========================================*/

.contacto-mini{

    display:inline-block;

    background:#ffffff;

    color:#e65100;

    padding:8px 20px;

    border-radius:40px;

    font-weight:700;

    letter-spacing:2px;

    font-size:13px;

}

/*========================================*/

.contacto-titulo{

    margin-top:25px;

    font-size:clamp(34px,5vw,54px);

    font-weight:800;

    color:#111;

}

/*========================================*/

.linea-contacto{

    width:90px;

    height:5px;

    background:#d62828;

    border-radius:20px;

    margin:20px auto 30px;

}

/*========================================*/

.contacto-descripcion{

    max-width:720px;

    margin:auto;

    font-size:18px;

    line-height:1.8;

    color:#333;

}

/*========================================*/

.contacto-box{

    max-width:760px;

    margin:55px auto;

}

/*========================================*/

.contacto-item{

    display:flex;

    align-items:center;

    gap:22px;

    padding:20px 0;

    border-bottom:1px solid rgba(0,0,0,.10);

    transition:.35s;

}

.contacto-item:hover{

    transform:translateX(10px);

}

/*========================================*/

.icono-box{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#faf8f8;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}

.icono-box i{

    color:#0c0b0b;

    font-size:25px;

}

/*========================================*/

.contacto-item h5{

    font-weight:700;

    margin-bottom:4px;

}

.contacto-item span{

    color:#555;

    line-height:1.6;

}

/*========================================*/

.btn-contacto{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#111;

    color:#fff;

    text-decoration:none;

    padding:18px 38px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-contacto:hover{

    background:#d62828;

    color:#fff;

    transform:translateY(-4px);

}

/*========================================*/

@media(max-width:768px){

.contacto-premium{

padding:70px 20px;

}

.contacto-titulo{

font-size:30px;

}

.contacto-descripcion{

font-size:16px;

}

.contacto-item{

align-items:flex-start;

}

.icono-box{

width:55px;

height:55px;

}

.icono-box i{

font-size:22px;

}

.btn-contacto{

width:100%;

justify-content:center;

}

}






/*=========================================
            FOOTER
==========================================*/

.footer-beniaz{

    background:#000;

    padding:20px 15px;

    text-align:center;

}

.footer-beniaz .copyright{

    margin:0;

    color:#ffffff;

    font-size:15px;

    font-weight:400;

    letter-spacing:.5px;

    line-height:1.6;

}

.footer-beniaz strong{

    color:#ffbd59;

    font-weight:700;

    transition:.3s;

}

.footer-beniaz strong:hover{

    color:#ffffff;

}

/*=========================================
            RESPONSIVE
==========================================*/

@media (max-width:768px){

    .footer-beniaz{

        padding:18px 10px;

    }

    .footer-beniaz .copyright{

        font-size:13px;

        line-height:1.7;

    }

}




/*======================================================
                        FOOTER
======================================================*/

.footer-beniaz{

    background:#000;

    padding:70px 0;

}

/*====================================*/

.footer-logo{

   

    margin-bottom:20px;

    width: 120px;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(1000%);

}

/*====================================*/

.footer-brand{

    color:#ffbd59;

    font-weight:700;

    margin-bottom:8px;

}

.footer-text{

    color:#ddd;

    line-height:1.8;

}

/*====================================*/

.footer-title{

    color:#fff;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

    display:inline-block;

}

.footer-title::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:45px;

    height:3px;

    background:#ffbd59;

}

/*====================================*/

.footer-list{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-list li{

    color:#ddd;

    margin-bottom:18px;

    display:flex;

    align-items:center;

}

.footer-list i{

    color:#ffbd59;

    width:28px;

    font-size:18px;

}

/*====================================*/

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:48px;

    height:48px;

    background:#111;

    color:#fff;

    border:1px solid #333;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#ffbd59;

    color:#000;

    transform:translateY(-6px);

}

/*====================================*/

.footer-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#ffbd59;

    color:#000;

    padding:14px 28px;

    border-radius:40px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.footer-btn:hover{

    background:#fff;

    color:#000;

    transform:translateY(-4px);

}

/*====================================*/

@media(max-width:991px){

.footer-beniaz{

text-align:center;

}

.footer-title::after{

left:50%;

transform:translateX(-50%);

}

.footer-list li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

}