/*===========================
    01.COMMON css 
===========================*/

/* ===========================
   VARIABLES CORPORATIVAS
=========================== */
:root {
  --primary: #0F4C45;
  --primary-dark: #0A1A2F;
  --text-dark: #1A365D;
  --text-light: #6B7280;
  --bg-light: #F4F7FA;
  --card-shadow: 0 15px 35px rgba(0,0,0,0.08);
}


@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #5A5872;
}

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

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,

h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #1A365D;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
  color: #ffffff;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #6c7258;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 0;
  padding: 0 40px;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out 0s;
  background-color: #0F4C45;
}

.main-btn:hover {
  background-color: #0A1A2F;
  color: #fff;
}

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section_title .title {
    font-size: 26px;
  }
}

.section_title p {
  margin-top: 15px;
  font-size: 18px;
  color: #000000;
}

.section_title.section_title_2 .title,
.section_title.section_title_2 p {
  color: #fff;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .ytp-spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #0F4C45 #0F4C45 #F9F9F9;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #F9F9F9;
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #F9F9F9;
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */

@keyframes ytp-spinner-linspin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ytp-spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  to {
    transform: rotate(1080deg);
  }
}

@keyframes ytp-spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(130deg);
  }
}

@keyframes ytp-right-spin {
  0% {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(-130deg);
  }
}


/*===========================
     02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 15px 0;
}

.navbar {
  padding: 20px 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand img {
    height: auto;
    width: auto;
    max-height: 150px;          /* Aumenta la calidad del logo */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: all 0.3s ease-in-out;
}

/* LOGO REDUCIDO CUANDO EL MENÚ ES STICKY */
.sticky .navbar-brand img {
    max-height: 110px;          /* Logo más pequeño al hacer scroll */
}

/* Ajuste para móviles */
@media (max-width: 767px) {
    .navbar-brand img {
        max-height: 110px;      /* Más grande y nítido en móvil */
    }
}

.hero_title {
    margin-top: -990px; /* Súbelo ajustando este valor */
}



.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}
/* Aumentar espacio lateral del navbar */
#nav.navbar-nav {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

/* Espacio para el dropdown grande */
.navbar-nav .dropdown-menu {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
}

/* Aumentar separación general entre los ítems */
.navbar-nav .nav-item {
    margin-left: 10px;
    margin-right: 10px;
}

/* Evitar que el menú se pegue al borde en pantallas grandes */
@media (min-width: 992px) {
    .navbar {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


/* Fondo del menú principal al abrir */
.navbar .dropdown-menu {
    background: rgba(0, 0, 0, 0.55); /* Transparente oscuro */
    backdrop-filter: blur(6px);      /* efecto cristal */
    border: none;                    /* sin borde blanco */
    border-radius: 8px;
}

/* Ítems del menú (hover y active) */
.navbar .dropdown-item {
    color: #fff !important; 
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:active {
    background: rgba(255, 255, 255, 0.10) !important; /* gris transparente */
    color: #fff !important;
}

/* Para submenús de 2 niveles */
.dropdown-submenu .dropdown-menu {
    background: rgba(0, 0, 0, 0.55); 
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 8px;
}

/* Evita que aparezca el fondo blanco al abrir */
.show > .dropdown-menu {
    background: rgba(0, 0, 0, 0.55) !important;
}



/* ==========================================================
   MENÚ 3 NIVELES
=========================================================== */

.dropdown-menu {
    background: rgba(0, 0, 0, 0.6) !important;
    border: none;
    padding: 10px 0;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

/* Flecha indicadora */
.dropdown-toggle::after {
    margin-left: 8px;
}

/* Animación */
.dropdown-menu {
    animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(5px);}
    to {opacity: 1; transform: translateY(0);}
}
/* Abrir dropdown al pasar el mouse (solo en pantallas grandes) */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Flecha activa */
    .navbar-nav .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* Submenú 2do nivel */
    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu {
        margin-top: 0;
        transition: all 0.2s ease-in-out;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

/* Menú principal: letras más grandes y gruesas */
.navbar-nav .nav-item a {
  font-size: 18px;       /* Tamaño de letra más grande */
  font-weight: 600;      /* Más gruesa */
  color: #fff;
  transition: all 0.3s ease-out 0s;
  padding: 12px 0;       /* Más espacio vertical */
  position: relative;
}

/* Submenús */
.navbar-nav .nav-item .sub-menu li a {
  font-size: 16px;       /* Tamaño de submenú un poco más grande */
  font-weight: 500;      /* Semi-gruesa */
  color: #222;
  padding: 10px 20px;
}

/* Hover y activo */
.navbar-nav .nav-item a.active,
.navbar-nav .nav-item a:hover {
  color: #ffffff;
}

/* Ajuste para móviles */
@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    font-size: 16px;      /* Ajuste para pantallas pequeñas */
    font-weight: 600;
  }

  .navbar-nav .nav-item .sub-menu li a {
    font-size: 15px;
    font-weight: 500;
  }
}


.navbar-nav .nav-item a::before {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #222;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #222;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a.active, .navbar-nav .nav-item a:hover {
    color: #0F4C45;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a.active, .navbar-nav .nav-item a:hover {
    color: #0F4C45;
  }
}

.navbar-nav .nav-item a.active::before, .navbar-nav .nav-item a:hover::before {
  width: 100%;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #0F4C45;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: #222;
}

.sticky .navbar-nav .nav-item a {
  color: #222;
}

.sticky .navbar-nav .nav-item a::before {
  background-color: #0F4C45;
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: #0F4C45;
}

/*===== hero =====*/
.single_hero {
  height: 750px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 14000px) {
  .single_hero {
    height: 950px;
  }
}

@media only screen and (min-width: 728px) and (max-width: 991px) {
  .single_hero {
    height: 700px;
  }
}

@media (max-width: 767px) {
  .single_hero {
    height: 650px;
  }
}

.single_hero::before {
  position: absolute;
  content: '';
  background-color: rgba(43, 42, 61, 0.4); /* más transparente */
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}


.hero_content {
  padding-top: 10px;
}

.hero_content .hero_title {
  font-size: 60px;
  line-height: 85px;
  color: #fff;
  margin-top: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_content .hero_title {
    font-size: 44px;
    line-height: 65px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_content .hero_title {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .hero_content .hero_title {
    font-size: 24px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero_content .hero_title {
    font-size: 40px;
    line-height: 60px;
  }
}

.hero_content .hero_title span {
  display: contents;
  color: #0F4C45;
}

.hero_content p {
  font-size: 16px;
  color: #fff;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .hero_content p {
    font-size: 16px;
  }
}

.hero_content .main-btn {
  margin-top: 45px;
}
/* =========================================
   CONTACTO / COTIZACIÓN – ESTILO PERSONALIZADO
========================================= */

/* 1️⃣ TÍTULO "Contacto / Cotización" EN NEGRO */
#whatsappFormCbba h3,
h3.mb-4 {
    color: #000000 !important;
    font-weight: 600;
}

/* 2️⃣ REEMPLAZAR AZUL POR #0F4C45 */
.text-primary {
    color: #0F4C45 !important;
}

.bg-primary {
    background-color: #0F4C45 !important;
}

.btn-primary {
    background-color: #0F4C45 !important;
    border-color: #0F4C45 !important;
}

.btn-primary:hover {
    background-color: #0c3f39 !important; /* tono más oscuro elegante */
    border-color: #0c3f39 !important;
}

/* ICONOS BLANCOS (YA ESTÁN BIEN, PERO SE REFUERZA) */
.bg-primary i {
    color: #ffffff !important;
}

/* TÍTULO GRANDE SUPERIOR */
.section-title h1 {
    color: #000000;
    font-weight: 700;
}

/* SUBTÍTULOS (Ubicación, Correo, Teléfono) */
.row h5 {
    color: #0F4C45;
    font-weight: 600;
}

/* =========================================
   TÍTULO CONTACTO – ESTILO FORMAL Y ELEGANTE
========================================= */
.section-title h1 {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Versión móvil */
@media (max-width: 767px) {
    .section-title h1 {
        font-size: 24px;
        line-height: 1.35;
        padding: 0 10px;
    }
}
/* Espaciado superior del título principal */
.section-title h1 {
    margin-top: 25px;   /* ajusta entre 20–40px si quieres más aire */
}
@media (max-width: 767px) {
    .section-title h1 {
        margin-top: 20px;
    }
}


/*===========================
      03.FEATURES css 
===========================*/

/* ===========================
   FEATURES – TARJETAS PREMIUM
=========================== */
.features_area {
  background-color: var(--bg-light);
}

.single_features {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.35s ease;
  border-top: 4px solid transparent;
  height: 100%;
}

.single_features:hover {
  transform: translateY(-10px);
  border-top: 4px solid var(--primary);
}

.single_features i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: rgba(15, 76, 69, 0.08);
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
}
.single_features .features_title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 10px;
}
.single_features h6 {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 8px;
}
.single_features p {
  font-size: 15px;
  line-height: 26px;
  color: var(--text-light);
  margin-top: 15px;
}
.section_title .title {
  font-size: 42px;
  color: var(--text-dark);
}

.section_title p {
  max-width: 750px;
  margin: 20px auto 0;
  font-size: 18px;
  color: #4B5563;
}
.main-btn {
  border-radius: 50px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #0F4C45, #0A1A2F);
}

.main-btn:hover {
  box-shadow: 0 10px 25px rgba(15, 76, 69, 0.35);
}
.single_hero::before {
  background: linear-gradient(
    rgba(26, 54, 93, 0.65),
    rgba(15, 76, 69, 0.65)
  );
}

.text-justify {
  text-align: justify;
  margin: 20px 0;
}

/* BOTÓN CAJA VERDE */
.service-box-btn {
  display: inline-block;
  background-color: #0F4C45; /* tu verde corporativo */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-box-btn:hover {
  background-color: #0A1A2F;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 76, 69, 0.35);
}
.single_features {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.text-justify {
  text-align: justify;
  margin: 20px 0;
}

.service-box-btn {
  display: inline-block;
  width: 100%;
  max-width: 220px;
  background-color: #0F4C45;
  color: #ffffff;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0; /* ✅ RECTO */
  transition: all 0.3s ease;
}

.service-box-btn:hover {
  background-color: #0A1A2F;
  color: #ffffff;
}

/* ===========================
   ESPACIADO LATERAL MOBILE
=========================== */
@media (max-width: 767px) {

  .about_content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section_title p {
    padding-left: 5px;
    padding-right: 5px;
  }

}
@media (max-width: 767px) {
  .section_title p {
    line-height: 26px;
    font-size: 15px;
  }
}

/* ==============================
   DISEÑO PREMIUM - Filosofía TEKNOLIFT
=================================*/

/* Fondo de sección */
#values {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 80px 0 80px;
}

/* Contenedor de tarjetas centradas en una línea */
#values .row.justify-content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Espacio entre tarjetas */
}

/* Tarjetas más anchas y uniformes */
#values .single_pricing {
    background: #ffffff;
    border-radius: 20px;
    padding: 90px 40px 40px; /* espacio superior para icono */
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.5s ease;
    flex: 0 0 340px; /* más ancho */
    text-align: center;
    overflow: visible;
}

/* Hover elegante */
#values .single_pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Icono circular superior */
.value-icon {
    width: 90px;
    height: 90px;
    margin: -60px auto 30px;
    background: linear-gradient(135deg, #0A1A2F, #0F4C45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
    transition: all 0.4s ease;
    z-index: 1;
}

.value-icon i {
    color: #ffffff;
    font-size: 36px;
}

/* Icono destacado (Visión) */
.single_pricing.active .value-icon {
    background: linear-gradient(135deg, #0F4C45, #1a7c70);
}

/* Hover efecto sobre icono */
.single_pricing:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Títulos */
#values .pricing_title {
    margin-top: 15px;
    color: #0A1A2F;
    font-size: 22px;
    font-weight: 700;
}

/* Texto */
#values p {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* Título de sección */
#values .section_title h4 {
    font-size: 28px;
    font-weight: 700;
    color: #0A1A2F;
}

/* Responsivo */
@media (max-width: 1200px) {
    #values .single_pricing {
        flex: 0 0 300px;
    }
}

@media (max-width: 992px) {
    #values .single_pricing {
        flex: 0 0 45%; 
        padding: 70px 25px 30px;
    }
}

@media (max-width: 576px) {
    #values .single_pricing {
        flex: 0 0 90%; 
        padding: 60px 20px 25px;
    }
}



/*===========================
      04.ABOUT css 
===========================*/
.about_area {
  background-color: #F9F9F9;
  position: relative;
}

.about_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_image {
    width: 100%;
    height: 500px;
    position: relative;
  }
}

@media (max-width: 767px) {
  .about_image {
    width: 100%;
    height: 400px;
    position: relative;
  }
}

.about_image .image_content {
  width: 185px;
  height: 185px;
  background-color: #0F4C45;
  display: table;
  text-align: center;
  position: relative;
  left: -92px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content {
    width: 135px;
    height: 135px;
    left: -78px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_image .image_content {
    left: 0;
  }
}

@media (max-width: 767px) {
  .about_image .image_content {
    left: 0;
    width: 135px;
    height: 135px;
  }
}

.about_image .image_content .experience {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content .experience {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about_image .image_content .experience {
    font-size: 18px;
  }
}

.about_image .image_content .experience span {
  font-size: 44px;
  font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content .experience span {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .about_image .image_content .experience span {
    font-size: 36px;
  }
}

.about_content {
  padding-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_content {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .about_content {
    padding-right: 0;
  }
}

.about_content .main-btn {
  margin-top: 30px;
}

/*===========================
      05.PORTFOLIO css 
===========================*/
.single_portfolio {
  position: relative;
  width: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_portfolio {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .single_portfolio {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_portfolio {
    width: 50%;
  }
}

/* Forzar que TODAS las imágenes tengan el mismo tamaño visual */
.single_portfolio img {
  width: 100%;
  height: 280px; /* puedes ajustar: 240px, 260px, 300px */
  object-fit: cover; /* Recorta sin deformar */
  object-position: center; /* Centra la imagen */
  display: block;
}


.single_portfolio::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0F4C45;
  opacity: 0;
  transition: all 0.3s ease-out 0s;
}

.single_portfolio .portfolio_content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

.single_portfolio .portfolio_content .meta li {
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

.single_portfolio .portfolio_content .meta li a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
}

.single_portfolio .portfolio_content .meta li a:hover {
  background-color: #fff;
  color: #0F4C45;
}

.single_portfolio .portfolio_content .meta li:first-child {
  transform: translateX(-100%);
}

.single_portfolio .portfolio_content .meta li:last-child {
  transform: translateX(100%);
}

.single_portfolio .portfolio_content .portfolio_title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 25px;
  transform: translateY(100%);
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_portfolio .portfolio_content .portfolio_title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single_portfolio .portfolio_content .portfolio_title {
    font-size: 20px;
  }
}

.single_portfolio:hover::before {
  opacity: 1;
}

.single_portfolio:hover .portfolio_content .meta li {
  transform: translateX(0);
  transition-delay: 0.2s;
  opacity: 1;
}

.single_portfolio:hover .portfolio_content .portfolio_title {
  transform: translateX(0);
  transition-delay: 0.2s;
  opacity: 1;
}

/*===========================
      06.PRICING css 
===========================*/
.pricing_area {
  background-color: #F9F9F9;
}

.single_pricing {
  background-color: #fff;
  padding: 60px 50px;
}

@media (max-width: 767px) {
  .single_pricing {
    padding: 40px 30px;
  }
}

.single_pricing .pricing_title {
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .single_pricing .pricing_title {
    font-size: 20px;
  }
}

.single_pricing .price {
  color: #0F4C45;
  font-size: 44px;
  margin-top: 25px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .single_pricing .price {
    font-size: 38px;
  }
}

.single_pricing .pricing_list li {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 300;
}

.single_pricing .mian-btn {
  height: 45px;
  border: 1px solid #5A5872;
  line-height: 43px;
  text-align: center;
  padding: 0 25px;
  color: #0F4C45;
  transition: all 0.3s ease-out 0s;
  margin-top: 30px;
}

.single_pricing .mian-btn:hover {
  background-color: rgba(90, 88, 114, 0.2);
}

.single_pricing.active {
  background-color: #0F4C45;
}

.single_pricing.active .pricing_title {
  color: #fff;
}

.single_pricing.active .price {
  color: #fff;
}

.single_pricing.active .pricing_list li {
  color: #fff;
}

.single_pricing.active .mian-btn {
  background-color: #fff;
  border-color: #fff;
}

/*===========================
   TEAM - Estilo Premium
===========================*/

/* Contenedor del miembro */
.team .member,
.single_team {
  position: relative;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.team .member:hover,
.single_team:hover {
  transform: translateY(-10px);
}

/* Imagen circular con margen */
.team .member .member-img,
.single_team img {
  margin: 0 auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.team .member .member-img img,
.single_team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Capa social overlay */
.team .member .member-img .social,
.single_team .team_content .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.team .member:hover .member-img .social,
.single_team:hover .team_content .social {
  opacity: 1;
  visibility: visible;
}

.team .member .member-img .social a,
.single_team .team_content .social a {
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.team .member .member-img .social a:hover,
.single_team .team_content .social a:hover {
  color: #0F4C45;
  transform: scale(1.2);
}

/* Información del miembro */
.team .member .member-info,
.single_team .team_content {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team .member .member-info h4,
.single_team .team_content .team_name a {
  font-weight: 700;
  font-size: 18px;
  color: #0A1A2F;
  margin-bottom: 5px;
}

.team .member .member-info span,
.single_team .team_content span {
  font-style: italic;
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 10px;
}

.team .member .member-info p,
.single_team .team_content p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .team .member .member-img,
  .single_team img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .team .member .member-img,
  .single_team img {
    width: 150px;
    height: 150px;
  }
}

/**/
/*===========================
   Team Section - Imágenes Cuadradas
===========================*/
.team_area {
    background: #f8f9fb;
}

/* Tarjeta de equipo */
.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Imagen cuadrada */
.team-img-square {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Mantiene proporción cuadrada */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.team-img-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-img-square:hover img {
    transform: scale(1.05);
}

/* Social overlay */
.team-social {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.team-img-square:hover .team-social {
    opacity: 1;
    visibility: visible;
}

.team-social a {
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: #0F4C45;
    transform: scale(1.2);
}

/* Información debajo de la imagen */
.team-info {
    background: #fff;
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.team-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0A1A2F;
}

.team-info span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

.team-info p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-img-square {
        padding-top: 100%;
    }
}

@media (max-width: 768px) {
    .team-img-square {
        padding-top: 100%;
    }
    .team-info p {
        font-size: 13px;
    }
}

/**/
/*===========================
   ISO Certifications Section
===========================*/

.team-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

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

/* CONTENEDOR CUADRADO */
.team-img-square {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fb;
    border-radius: 14px;
    padding: 20px;
}

/* IMAGEN COMPLETA (SIN CORTES) */
.team-img-square img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* INFO */
.team-info {
    margin-top: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0A1A2F;
    margin-bottom: 6px;
}

.team-info span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0F4C45;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .team-img-square {
        height: 220px;
    }
}
/*===========================
   LIGHTBOX ISO
===========================*/

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
}

/* Cerrar */
.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

/* Cursor zoom */
.lightbox-img {
    cursor: zoom-in;
}
/**/
/* =====================================
   SECCIÓN SERVICIOS – AJUSTES VISUALES
===================================== */

#services .single_features {
  padding: 35px 25px;
  border-radius: 12px;
  height: 100%;
}

/* Espacio ENTRE FILAS */
#services .col-lg-4,
#services .col-md-6 {
  margin-bottom: 40px;
}

/* ICONOS CENTRADOS */
#services .single_features i {
  font-size: 42px;
  color: #0F4C45;              /* verde corporativo */
  display: block;
  margin: 0 auto 20px auto;   /* centra horizontal */
}

/* TITULOS */
#services .features_title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* TEXTO */
#services .single_features p {
  font-size: 14.5px;
  line-height: 1.8;           /* más aire */
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #services .col-lg-4,
  #services .col-md-6 {
    margin-bottom: 30px;
  }
}

/**/


/*===========================
     08.TESTIMONIAL css 
===========================*/
.testimonial_area {
  position: relative;
}

.testimonial_area::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(43, 42, 61, 0.9);
}

.testimonial_active_wrapper {
  position: relative;
  padding-bottom: 60px;
}

.testimonial_active_wrapper .tns-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: 35px;
}

.testimonial_active_wrapper .tns-nav button {
  margin: 0 5px;
  width: 18px;
  height: 5px;
  background-color: transparent;
  border-radius: 50px;
  font-size: 0;
  transition: all 0.3s ease-out 0s;
  border: 0;
  background-color: #ECECEC;
}

.testimonial_active_wrapper .tns-nav button.tns-nav-active {
  background-color: #0F4C45;
}

.single_testimonial img {
  display: inline-block;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .single_testimonial img {
    width: 120px;
  }
}

.single_testimonial .author_name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 25px;
}

.single_testimonial span {
  font-size: 14px;
  color: #fff;
}

.single_testimonial p {
  color: #fff;
  margin-top: 15px;
}
/**/

.single_testimonial img {
  display: inline-block;
  border-radius: 70%;
  width: 220px;   /* desktop */
  height: 220px;  /* desktop */
  object-fit: cover;
}

@media (max-width: 767px) {
  .single_testimonial img {
    width: 120px;   /* tamaño cómodo en celular */
    height: 120px;
  }
}


/*===========================
    09.BLOG css 
===========================*/
.single_blog .blog_image img {
  width: 100%;
}

.single_blog .blog_content {
  margin-top: 25px;
}

.single_blog .blog_content .blog_title a {
  font-size: 24px;
  font-weight: 600;
  color: #2B2A3D;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .single_blog .blog_content .blog_title a {
    font-size: 20px;
  }
}

.single_blog .blog_content .blog_title a:hover {
  color: #0F4C45;
}

.single_blog .blog_content p {
  margin-top: 15px;
}

.single_blog .blog_content .more {
  font-size: 16px;
  font-weight: 500;
  color: #5A5872;
  margin-top: 15px;
  transition: all 0.3s ease-out 0s;
}

.single_blog .blog_content .more:hover {
  color: #0F4C45;
}

.single_blog.blog_2 .blog_content {
  margin-top: 0;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .single_blog.blog_2 .blog_content {
    padding-left: 0;
    padding-top: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_blog.blog_2 .blog_content {
    padding-left: 20px;
    padding-top: 0;
  }
}
/*===========================
    10.CONTACT css 
===========================*/
.contact_area {
  position: relative;
  z-index: 5;
}

.contact_area::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 42, 61, 0.9);
  z-index: -1;
}

p.form-message.success, p.form-message.error {
  font-size: 16px;
  color: #2B2A3D;
  background: #F9F9F9;
  padding: 10px 15px;
  margin-top: 30px;
  background-color: #fff;
  margin-left: 15px;
}

p.form-message.success.form-message.error, p.form-message.error.form-message.error {
  color: #f00;
}

.single_form {
  margin-top: 30px;
}

.single_form input,
.single_form textarea {
  width: 100%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0 25px;
  font-size: 16px;
  color: #fff;
  background: none;
  transition: all 0.3s ease-out 0s;
}

.single_form input:focus,
.single_form textarea:focus {
  border-color: #fff;
}

.single_form textarea {
  height: 170px;
  resize: none;
  padding-top: 15px;
}

/*===========================
    11.FOOTER css 
===========================*/
.footer_area {
  background-color: #0F4C45;
  padding-top: 15px;
  padding-bottom: 30px;
}

.footer_menu ul li {
  display: inline-block;
  padding-top: 5px;
}

.footer_menu ul li + li {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .footer_menu ul li + li {
    margin-left: 15px;
  }
}

.footer_menu ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-out 0s;
}

.footer_menu ul li a:hover {
  color: #fff;
}

.credit {
  font-size: 16px;
  color: #fff;
  padding-top: 15px;
}

.credit a {
  color: #fff;
}

.footer_social ul li {
  display: inline-block;
}

.footer_social ul li + li {
  margin-left: 30px;
}

.footer_social ul li a {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-out 0s;
}

.footer_social ul li a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer_social ul li a {
    font-size: 20px;
  }
}

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background-color: #0F4C45;
  text-align: center;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
}

.back-to-top:hover {
  color: #fff;
  background-color: #0F4C45;
}

html, body {
  overflow-x: hidden !important;
}

/**/
/* ===========================
  productos 
=========================== */

.energy-saving-section img {
    max-width: 100%;
    height: auto;
}

/* Mobile styles */
@media (max-width: 767px) {

    .energy-saving-section {
        padding: 35px 0 !important;
    }

    .energy-saving-section h2 {
        font-size: 24px !important;
        text-align: center;
    }

    .energy-saving-section h4 {
        font-size: 18px !important;
        text-align: center;
    }

    .energy-saving-section p {
        font-size: 15px !important;
        text-align: center;
        padding: 0 10px;
    }

    /* Centrar imágenes */
    .energy-saving-section .col-lg-4 {
        text-align: center;
        margin-bottom: 15px;
    }

    /* Separación entre bloques */
    .energy-saving-section .col-lg-8 {
        margin-bottom: 35px;
    }

    /* Título principal */
    .energy-saving-section .row.justify-content-center h2 {
        font-size: 28px !important;
    }

    .energy-saving-section .row.justify-content-center p {
        font-size: 16px !important;
        padding: 0 15px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {

    .energy-saving-section h2 {
        font-size: 28px !important;
    }

    .energy-saving-section h4 {
        font-size: 20px !important;
    }

    .energy-saving-section p {
        font-size: 15px !important;
    }
}
/**/
/* ===========================
   PRODUCTOS DE CONFIANZA
=========================== */

.energy-saving-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 80px 0;
}

.energy-saving-section img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.energy-saving-section img:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* TÍTULO PRINCIPAL */
.energy-saving-section .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.energy-saving-section .section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 50px;
}

/* TÍTULO DE CADA PRODUCTO */
.energy-saving-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
}

.energy-saving-section h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 8px;
}

/* TEXTO */
.energy-saving-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #4B5563;
    margin-top: 15px;
}

/* Separación entre bloques */
.energy-saving-section .row.align-items-center > div {
    margin-bottom: 60px;
}

/* ===========================
   MOBILE OPTIMIZADO
=========================== */
@media (max-width: 767px) {

    .energy-saving-section {
        padding: 45px 0;
    }

    .energy-saving-section h2 {
        font-size: 24px;
        text-align: center;
    }

    .energy-saving-section h4 {
        font-size: 17px;
        text-align: center;
    }

    .energy-saving-section p {
        font-size: 15px;
        text-align: center;
        padding: 0 15px;
    }

    .energy-saving-section img {
        max-width: 85%;
        margin: 0 auto 20px;
        display: block;
    }

    .energy-saving-section .row.align-items-center > div {
        margin-bottom: 40px;
    }
}
/* ===== PRODUCTOS DE CONFIANZA ===== */
.products-section {
  padding: 70px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0A1A2F;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.product-item {
  margin-bottom: 70px;
}

.product-img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-title {
  font-size: 28px;
  font-weight: 600;
  color: #0F4C45;
  margin-bottom: 15px;
}

.product-text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .product-title {
    font-size: 22px;
    text-align: center;
  }

  .product-text {
    text-align: center;
  }

  .product-item {
    text-align: center;
  }

  .product-img {
    max-width: 300px;
    margin-bottom: 25px;
  }
}
/**/
/* ===== TECNOLOGÍA INTELIGENTE ===== */

.tech-section {
  background: #f9fafc;
}

.tech-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2d3d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 700px;
  margin: 15px auto 0;
}

.tech-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMÁGENES */
.tech-card .blog_image img {
  max-width: 160px;
  margin-bottom: 20px;
}

.tech-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #0b3c5d; /* YA NO BLANCO */
  margin-bottom: 12px;
}

.tech-card p {
  font-size: 15.5px;
  color: #666;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .tech-title {
    font-size: 28px;
  }

  .tech-card {
    padding: 25px;
    text-align: center;
  }

  .tech-card .blog_image img {
    max-width: 120px;
  }
}
/*IMAGENES 3*/

/* =========================================
   ESTILO ELEGANTE Y FORMAL – SOLO CELULAR
   SECCIÓN ACABADOS DE CABINA (#blog)
========================================= */
@media (max-width: 767px) {

    /* CONTENEDOR GENERAL */
    #blog {
        padding-top: 70px;
        padding-bottom: 70px;
        background-color: #f8f9fa;
    }

    /* TARJETAS */
    #blog .single_blog {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        padding: 15px;
        margin-top: 25px;
    }

    /* IMÁGENES COMPLETAS (SIN RECORTE) */
    #blog .blog_image img {
        width: 100% !important;
        height: auto !important;          /* 🔑 altura automática */
        max-height: 260px;                /* límite elegante */
        object-fit: contain !important;   /* 🔑 imagen completa */
        background-color: #f2f2f2;        /* fondo limpio */
        border-radius: 10px;
        padding: 8px;
        display: block;
        margin: 0 auto 15px;
    }

    /* BLOG TIPO COLUMNA (MELAMINA, SUBTECHO, PISOS) */
    #blog .blog_2 {
        flex-direction: column;
        text-align: center;
    }

    /* TÍTULOS */
    #blog .blog_title a {
        font-size: 17px;
        font-weight: 600;
        color: #0F4C45;
        margin-bottom: 10px;
        display: block;
    }

    /* TEXTO */
    #blog .blog_content p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        text-align: justify;
    }

    #blog .blog_content {
        padding: 0;
    }
}
/* ================================
   CENTRAR ICONOS EN VALORES
   ================================ */

#VALORES .single_features {
  text-align: center;
}

#VALORES .single_features i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto; /* REDUCE espacio debajo del icono */
  font-size: 42px;
  line-height: 1;
}

/* Reduce espacio entre icono y título */
#VALORES .features_title {
  margin-top: 10px;
}

/* Reduce separación general en móviles */
@media (max-width: 768px) {
  #VALORES .single_features {
    margin-top: 30px !important;
  }
}
/**/
