/* Reformas en Torrox Construction and Home Renovation HTML5 Template */

/************ TABLE OF CONTENTS ***************
1. Reset
2. Global Settings
3. Scroll To Top style
4. Main Header
5. Section Title
6. Services Style One
7. Default Intro Section
8. Latest work - Index
9. Section - Vídeos
10. Default Two Column
11. General Information
12. Galeria
13. Main Footer
14. Page Title Section
15. Information Doors
16. Projects Section
17. Error Section
18. Page-specific backgrounds
19. Breadcrumb styles

**********************************************/

/***

====================================================================
	1.Reset
====================================================================

 ***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* Consistent margins and centering */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  text-align: center;
}

img {
  margin-bottom: 1rem;
}

/* Padding for image and text divs */
.image-column,
.text-column {
  padding: 12px;
}

:root {
  --primary-black: #000000;
  --charcoal: #333333;
  --dark-gray: #555555;
  --medium-gray: #777777;
  --light-gray: #cccccc;
  --very-light-gray: #f5f5f5;
  --white: #ffffff;

  /* Font sizes */
  --font-size-small: 12px;
  --font-size-medium: 14px;
  --font-size-large: 16px;
  --font-size-xl: 20px;
  --font-size-xxl: 24px;
  --font-size-xxxl: 32px;

  /* Spacing */
  --spacing-small: 10px;
  --spacing-medium: 15px;
  --spacing-large: 20px;
  --spacing-xl: 30px;

  /* Border radius */
  --border-radius: 8px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-slow: 0.5s ease;
}
/***

====================================================================
	2. Global Settings
====================================================================

 ***/

body {
  font-family: "Merriweather Sans", Sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.8em;
  font-weight: 400;
  background: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #434343;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6em;
}

h2.text-center {
  color: #565656;
  font-size: 22px;
  margin: 30px 0 10px;
}

h1 {
  font-size: 26px;
}

p {
  position: relative;
  line-height: 1.8em;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.auto-container img {
  width: 82px;
  margin-left: 5px;
  margin-top: 9px;
}

.auto-container h3 {
  color: #ffffff;
}

.page-wrapper {
  position: relative;
  margin: -9px auto 0;
  width: 100%;
  min-width: 300px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.theme-btn {
  display: inline-block;
  transition: all 0.3s ease;
  min-height: 44px;
}

.btn-style-two {
  position: relative;
  padding: 15px 32px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  outline: 2px solid #ffffff;
  outline-offset: -6px;
}

.btn-style-two:hover {
  border-color: #ffffff !important;
  background: #202e31;
  outline: 2px solid #ffffff;
  outline-offset: -6px;
}

.theme-btn .fa {
  font-size: 16px;
}

.theme-btn .icon-left {
  padding-right: 10px;
  font-weight: normal;
}

.theme_color {
  color: #000000;
}

.padd-top-20 {
  padding-top: 20px !important;
}

.padd-bott-50 {
  padding-bottom: 50px !important;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-out;
}

.preloader::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #cccccc;
  border-top: 4px solid #333333;
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
  will-change: transform;
}

.preloader::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid #cccccc;
  border-radius: 50%;
  animation: pulse 1s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.5);
    opacity: 1;
  }
}

/***

====================================================================
	Informacion importante
====================================================================
***/

section {
  text-align: center;
  padding: 10px;
}

.gray-section {
  background-color: #f5f5f5;
  padding: 10px;
}

h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  color: #000000;
  font-family: "Merriweather Sans", Sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 35px;
  padding: 7px;
  margin-bottom: -7px;
}
.section-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #202e31;
  padding: 0 5px;
}

.section-content em {
  font-style: italic;
  color: #444;
}

.highlight {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

/***
====================================================================
	3. Scroll To Top style
====================================================================

***/

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 48px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  display: none;
}

.scroll-to-top:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  background: #2e2e2e;
  border: 1px solid #6d6d6d;
  border-radius: 20px 0px 20px 20px;
  transform: rotate(135deg);
}

.scroll-to-top span {
  position: relative;
  display: block;
  z-index: 1;
}

.scroll-to-top:hover {
  color: #242424;
}

.scroll-to-top:hover:before {
  background: #ffffff;
}

/***

====================================================================
	4. Main Header
====================================================================

***/

.main-header {
  position: relative;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
}

.main-header .header-top {
  position: relative;
  background: #555555;
  color: #fff;
  z-index: 5;
  font-family: "Merriweather Sans", Sans-serif;
}

.main-header .header-top .top-left {
  position: relative;
  float: left;
  padding: 5px 0;
  color: #c9c9c9;
  font-size: 12px;
}

.main-header .header-top .top-left::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1200px;
  height: 100%;
  background: #555555;
  transform: skewX(-25deg);
}

.main-header .header-top ul {
  position: relative;
  z-index: 1;
}

.main-header .header-top ul li {
  position: relative;
  float: left;
  margin-right: 30px;
}

.main-header .header-top .top-right ul li {
  margin-right: 0;
  padding: 0 15px;
}

.main-header .header-top .top-right ul li::before {
  content: "|";
  position: absolute;
  right: -1px;
  top: -3px;
  color: #fff;
  font-size: 10px;
}

.main-header .header-top .top-right ul li:last-child::before {
  display: none;
}

.main-header .header-top .top-right ul li:last-child {
  padding-right: 0;
}

.main-header .header-top ul li a {
  display: block;
  line-height: 24px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.main-header .header-top ul li .icon {
  position: relative;
  top: 1px;
  font-size: 14px;
  padding-right: 5px;
}

.main-header .header-top .top-left ul li .icon {
  padding-right: 10px;
}

.main-header .header-top ul li a:hover {
  color: #fff !important;
}

.main-header .header-top .top-right {
  position: relative;
  padding: 5px 0;
  float: right;
}

.main-header .header-upper {
  position: relative;
  padding: 13px 0;
  background: #000;
  background-size: cover;
  background-position: center;
  z-index: 5;
  display: list-item;
}

.main-header .header-upper .upper-right {
  position: relative;
}

.main-header .header-upper .upper-column {
  position: relative;
  float: left;
  min-width: 80px;
  margin-left: 40px;
  padding-top: 22px;
}

.main-header .info-box {
  position: relative;
  padding-left: 50px;
}

.main-header .info-box .icon-box {
  position: absolute;
  left: 0;
  top: 12px;
  width: 50px;
  line-height: 60px;
  color: #fff;
  font-size: 36px;
  transition: all 500ms ease;
}

.main-header .info-box:hover .icon-box {
  color: #fff;
}

.main-header .info-box li {
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
}

.main-header .info-box li .small-title {
  font-size: 10px;
  letter-spacing: 1px;
}

.main-header .info-box li a {
  color: #fff;
}

.main-header .info-box strong {
  font-weight: 700;
  color: #ddd;
  font-size: 16px;
  font-family: "Merriweather Sans", Sans-serif;
}

.main-header .header-lower {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  background: none;
  z-index: 5;
}

.main-header .header-lower .auto-container {
  padding: 0 30px;
}

.main-header .nav-outer {
  position: relative;
}

.main-header .nav-outer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 77%;
  height: 100%;
  background: #202e31;
  transform: skewX(-25deg);
}

.main-menu {
  position: relative;
  z-index: 1;
}

.main-menu .navbar-collapse {
  padding: 0;
}

.main-menu .navigation {
  margin: 0;
  font-family: "Merriweather Sans", Sans-serif;
  font-weight: 600;
}

.main-menu .navigation > li {
  float: left;
  position: relative;
}

.main-menu .navigation > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #202e31;
  transform: skewX(-25deg);
  transition: all 500ms ease;
}

.main-menu .navigation > li > a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 13px 25px;
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  text-transform: uppercase;
  transition: all 500ms ease;
  opacity: 1;
}

.main-menu .navigation > li:hover::before {
  background: #9c9c9c;
}

.main-menu .navigation > li:hover > a {
  border-color: #818181;
  opacity: 1;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: -15px;
  top: 110%;
  width: 220px;
  background: #202e31;
  display: none;
  transform: skewX(-25deg);
  transition: all 500ms ease;
  z-index: 100;
  transform-origin: 0 0;
  margin-top: 5px;
  padding: 0;
}

.main-menu .navigation > li > ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 5px;
}

.main-menu .navigation > li > ul > li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > a {
  display: block;
  padding: 10px 20px;
  line-height: 22px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  transition: all 500ms ease;
  transform: skewX(25deg);
}

.main-menu .navigation > li > ul > li:hover > a {
  color: #aaa;
  border-color: #b2b2b2;
}

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.main-header .btn-outer {
  position: absolute;
  right: 12px;
  top: 0;
  width: 210px;
  height: 100%;
}

.main-header .btn-outer .inq-btn {
  display: block;
  text-align: center;
  padding: 13px 0;
  font-family: "Merriweather Sans", Sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  line-height: 24px;
}

.main-header .btn-outer .inq-btn .txt {
  position: relative;
  z-index: 1;
}

.main-header .btn-outer .inq-btn::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 0;
  width: 100%;
  height: 100%;
  background: #a7a7a7;
  transform: skewX(-25deg);
}

#sitemap {
  margin: 50px;
}

/***

====================================================================
	5. Main Slider style
====================================================================

***/

.background-example {
  width: 100%;
  height: 100vh;
  padding: 0;
  background-image: url("../images/background/cierrese-encima-de-la-foto.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/***

====================================================================
	Section  Title
====================================================================

***/

.sec-title {
  position: relative;
  margin-bottom: 60px;
}

.sec-title h2 {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: #202e31;
  margin-bottom: 5px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: 2px;
  text-shadow: 5px 5px 1px #f5f5f5;
}

.sec-title h3 {
  position: relative;
  font-size: 20px;
  color: #999999;
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  color: #202e31;
  max-width: 800px;
  margin: 0 auto;
}

#important {
  color: white;
}

h2 #important {
  display: inline;
}

/***

====================================================================
	Services Style One
====================================================================

***/

.services-style-one {
  position: relative;
  padding: 90px 0px 70px;
}

.services-style-one .default-service-column {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.default-service-column {
  position: relative;
}

.default-service-column .inner-box {
  position: relative;
  border: 1px solid #e0e0e0;
  max-width: 420px;
  margin: 0 auto;
  transition: all 500ms ease;
}

.default-service-column .inner-box:hover {
  box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.05);
}

.default-service-column .inner-most {
  position: relative;
  overflow: hidden;
}

.default-service-column .image-box {
  position: relative;
}

.default-service-column .image-box img {
  display: block;
  width: 100%;
}

.default-service-column .lower-part {
  position: relative;
  padding-top: 20px;
  margin-top: -20px;
}

.default-service-column .lower-part .left-curve {
  position: absolute;
  left: 0px;
  top: -7px;
  width: 54.2%;
  height: 90px;
  background: #ffffff;
  border-top: 10px solid transparent;
  transform: rotate(-12deg);
  transition: all 500ms ease;
}

.default-service-column .lower-part .right-curve {
  position: absolute;
  right: 0px;
  top: -7px;
  width: 54.2%;
  height: 90px;
  background: #ffffff;
  border-top: 10px solid transparent;
  transform: rotate(12deg);
  transition: all 500ms ease;
}

.default-service-column:hover .lower-part .left-curve,
.default-service-column:hover .lower-part .right-curve {
  border-top-color: #adadad;
}

.lower-part .content .text {
  min-height: 120px;
}

.default-service-column .content {
  position: relative;
  padding: 0px 40px 20px;
  z-index: 1;
}

.default-service-column .content h3 {
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 5px;
  color: #202e31;
  font-weight: 700;
}

.default-service-column .content .text {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: -12px;
  color: #202e31;
}

.default-service-column .content .more-link {
  position: relative;
}

.default-service-column .content .read-more {
  position: relative;
  display: inline-block;
  line-height: 20px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  color: #202e31;
  transition: all 500ms ease;
}

.default-service-column .content .read-more:hover,
.default-service-column:hover .content .read-more {
  border-color: #b4b4b4;
}

/***

====================================================================
	Default Intro Section
====================================================================

***/

.default-intro-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.default-intro-section:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #202e31;
}

.default-intro-section .content-box {
  position: relative;
  padding: 45px 70px 40px 70px;
  color: #ffffff;
}

.default-intro-section .content-box:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1500px;
  height: 101%;
  background: #202e31;
  transform: skewX(-25deg);
}

.default-intro-section h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.default-intro-section .text {
  font-size: 16px;
}

/***

====================================================================
Latest work - Index
====================================================================

/***

/* ----------------------------------------
   GENERAL STYLES FOR CAROUSEL
---------------------------------------- */

.work-carousel .slide-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-carousel .slide-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image styles */
.image-box img {
  width: 100%;
  height: 380px;
  display: block;
}

/***

====================================================================
	Section - Vídeos
====================================================================

***/

#video-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 1 columna en móvil */
  gap: 20px;
}

/***


====================================================================
	Default Two Column
====================================================================

***/

/* Contenedor principal */

.default-two-column .auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px; /* padding lateral opcional */
}

/* Fila como flex para centrar columnas */
.default-two-column .row {
  display: flex;
  flex-wrap: wrap; /* permite que las columnas bajen en móvil */
  justify-content: center; /* centra horizontalmente las columnas */
  align-items: flex-start; /* opcional: alinea arriba */
}

/* Columnas: por defecto 50% en desktop */
.default-two-column .column {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 12px; /* opcional */
}

/* Imagen y texto responsive */
.default-two-column .image-column img {
  width: 100%;
  height: auto;
  display: block;
}

/***

====================================================================
	General Information
====================================================================

***/

.informacion-general {
  margin-bottom: 40px;
  text-align: left;
  padding: 20px;
}

.informacion-general > h2 {
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
}

.informacion-general > h3 {
  color: #ffffff;
}

.informacion-general > p {
  font-size: 16px;
  margin-bottom: 15px;
}

.informacion-general > p strong {
  color: #000000;
  font-weight: 600;
}

.informacion-general .item-informacion h2 {
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Merriweather Sans", Sans-serif;
}

.informacion-general .item-informacion p {
  font-size: 16px;
  color: #454545;
}

.informacion-general .item-informacion p strong {
  font-weight: bold;
  color: #000;
}

/***

====================================================================
	<!--Galeria Puertas-->
====================================================================

***/

.galeria {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.galeria h2 {
  color: #595959;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-family: "Merriweather Sans", Sans-serif;
}

.galeria .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 5px;
}

.galeria .card {
  background: #f9f9f9;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.galeria img {
  width: 100%;
  height: auto;
  display: block;
}

/***

====================================================================
	Main Footer
====================================================================

***/
.main-footer {
  background-color: #111;
  color: #ffffff;
  padding-top: 15px;
  font-family: "Poppins", sans-serif;
}

.main-header .logo img {
  width: 320px;
  height: auto;
}

.footer-upper {
  display: flex;
  justify-content: space-around;
  padding: 0 20px 15px;
}

.upper-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.upper-column > p {
  margin: 0;
  font-size: 14px;
}

.footer-upper .icon-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-upper .icon {
  width: 23px;
  flex-shrink: 0;
}

.footer-upper .icon-box i {
  font-size: 15px;
  width: 15px;
  height: 15px;
  color: #d1d1d1;
  margin-right: 8px;
}

.footer-upper .small-title {
  color: #ffffff;
  font-size: 14px;
}

.footer-upper .text {
  text-align: left;
}

.footer-upper a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-upper a:hover {
  color: #f28705;
}

/* Enlaces rápidos */
.footer-upper nav a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
  justify-content: center;
  background-color: #1c1c1c;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  color: #cccccc;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom .info-text {
  font-size: 13px;
  color: #ccc;
  text-align: center;
}

.footer-bottom .info-text a {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom .info-text a:hover {
  text-decoration: underline;
}

/* Responsive: centrar en pantallas pequeñas */
@media (max-width: 767px) {
  .footer-bottom .row {
    flex-direction: column;
  }
  .footer-bottom .info-text {
    text-align: center;
    margin-top: 10px;
  }
}

/* Center logo and copyright text vertically */
.footer-bottom .copyright_ranndia .info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.whatsapp-button img {
  width: 55px;
  height: 55px;
}

/***

====================================================================
	Page Title Section
====================================================================

***/

.page-title {
  position: relative;
  padding: 90px 0px 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  margin-top: -50px;
  color: #ffffff;
  text-align: center;
}

.page-title:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(32, 46, 49, 0.47);
}

.page-title:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 13px;
}

.page-title .auto-container {
  position: relative;
  z-index: 1;
}

.page-title h1 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
}

.page-title .text {
  color: #ffffff !important;
  line-height: 2em;
}

.page-title-puertas {
  background-image: url("../images/background/un-conjunto-de-perchas-en-el-armario-en-una-barra-de-suspension-debajo-del-estante-con-puertas-abiertas.jpg");
}

.theme-breadcrumb {
  position: relative;
}

.theme-breadcrumb .breadcrumb {
  background: none;
  padding-left: 0px;
}

.theme-breadcrumb .breadcrumb li,
.theme-breadcrumb .breadcrumb li a {
  color: #b7b7b7;
  font-size: 12px;
  text-transform: uppercase;
}

/***

====================================================================
	Default Two Column
====================================================================

/* ======= Estructura General ======= */
.default-two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -60px;
}

.padd-bott-50 {
  padding-bottom: 50px;
}

.row.clearfix {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px; /* opcional, para ajustar el gutter */
  margin-right: -15px;
  justify-content: center;
  margin-bottom: px-;
}

.default-service-column {
  padding-left: 15px; /* para el gutter */
  padding-right: 15px;
  box-sizing: border-box;
  width: 100%; /* móvil: 1 columna */
}

.row.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ======= Columnas ======= */
.column {
  box-sizing: border-box;
  padding: 15px;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.text-column {
  display: flex;
  align-items: center;
}

.text {
  font-size: 16px;
  line-height: 1.6;
  color: #f9f9f9;
}

/* ======= Títulos y texto ======= */
h2 {
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  text-justify: inter-word; /* Mejora el reparto de espacios */
  line-height: 1.6;
}

#important {
  display: inline-block;
  font-weight: bold;
}

/* ======= Sección Puertas Interior ======= */

/***

====================================================================
	Information Doors
====================================================================

***/

/***

====================================================================
	Projects Section
====================================================================

***/

.default-work-column {
  padding: 30px;
}

/***

====================================================================
	Error Section
====================================================================

***/

.error-section {
  position: relative;
  padding: 0px 0px 100px;
}

.error-section .image-column {
  position: relative;
}

.error-section .image-column img {
  display: inline-block;
  max-width: 100%;
}

.error-section .text-column {
  position: relative;
}

.error-section .text-column h2 {
  font-size: 22px;
  margin: 70px 0px 20px;
  line-height: 90px;
  color: #202e31;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 5px 6px 1px #e7e8e8;
}

.error-section .text-column h4 {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 30px;
  color: #acacac;
  font-weight: 700;
  text-transform: uppercase;
}
