:root {
    --font-heading: 'Inria Serif', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --nav-bg: #0F2A33;
    --transition-smooth: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.font-secondary{
  font-family: var(--font-heading)!important;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Navigation --- */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition-smooth);
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo {
    height: 80px;
    width: 300px;
     display: flex;
  align-items: center;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--white-70);
    transition: color var(--transition-smooth), opacity var(--transition-smooth);
}



.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-smooth);
}

.btn-nav {
  background-color: #880808;
  color: #FFFFFF!important;
  padding: 8px 16px;
  border-radius: 15px;
  font-weight: 400 !important;
}

.btn-nav:hover {
  background-color: #720808; /* opcional hover */
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown button:hover {
  color: #e2e2e2;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #880808;
  list-style: none;
  padding: 10px px;
  margin: 0;
  min-width: 100px;
  border-radius: 8px;
  display: none; /* oculto por defecto */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.dropdown-menu.open {
  display: block;
}


.dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300!important;
}

.dropdown-menu li a:hover {
  background-color: #720808; /* opcional hover */
}

.dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  font-size: 16px!important;
  padding: 2px 0;
}

.dropdown-toggle::after {
  content: "▼";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active::after {
  transform: rotate(180deg);
}


@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    margin: 0 auto;
    text-align: center;
  }

  .dropdown-menu.open {
    max-height: 200px; /* ajusta según contenido */
  }

  .dropdown-menu li {
    display: flex;
    justify-content: center; /* 👈 centra cada item */
  }

  .dropdown-toggle {
    display: inline-block;
    margin: 0 auto;          /* 👈 centra real */
    padding: 6px 12px;       /* uniforme */
    text-align: center;
  }

  .dropdown-menu li a {
    text-align: center;
    width: 100%;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center; /* 👈 todo centrado */
  }

  #navLinks {
    z-index: 1000;    /* menor que el botón */
  }

  .section-content {
    margin-left: 0px!important;
  }
}

@media (max-width: 810px) {
  .nav-toggle {
    display: flex;
    position: fixed;  /* 👈 clave */
    top: 20px;
    right: 20px;
    z-index: 2000;    /* 👈 más alto que el menú */
  }
}





/* --- design Sections --- */
.design-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 👈 clave */
    overflow: hidden;
}

.design-section-histories {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 👈 clave */
    overflow: hidden;
}

/* design Background Image Layer
   Height is 200% and starts at top: -50% to give
   maximum room for large vertical translations */
.design-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;

    z-index: 0;
}

.design-bg-historie-02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

.design-bg-historie-05 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark Overlay */
.design-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 51, 0.8);
    z-index: 1;
}

.design-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.55);
}

.design-overlay.overlay-medium {
    background: rgba(0, 0, 0, 0.50);
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 700px;   
    width: auto;       
    padding: 100px 30px;
    text-align: left;
    margin-left: 100px;
}

.section-content-historie {
    position: relative;
    z-index: 2;
    max-width: 650px;   
    width: auto;       
    padding: 100px 30px;
    text-align: left;
    margin-left: 100px;
    margin-top: 50px;
}

.historie{
  max-width: 50%;
}


@media (max-width: 900px) {
  .section-content-historie{
    margin-left: 30px;
  }

  .historie{
    max-width: 90%;
  }
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 100;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span{
    font-weight: 1000!important;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 8px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 4px;
    color: #FFFFFF!important;
    margin-bottom: 40px;
    min-width: 100%;
}

.section-subtitle span{
    font-weight: 900!important;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.design-btn{
    font-weight: 800!important;
    font-size: 18px!important;
    letter-spacing: 2px;
}

.design-btn::after {
  content: "→";
  margin-left: 8px;
  font-size: 20px;
  font-weight: 800!important;
}


.design-section-text {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 clave */
    overflow: hidden;
    background: #FFFFFF!important;
}

@media (max-width: 950px) {
  .design-section-text  {
    flex-direction: column; /* apila los elementos uno debajo del otro */
  }

  .section-content-text {
    margin-left: 20px!important;
    padding: 30px 0px!important;
    max-width: 85%!important;  
  }

  .section-subtitle-text {
    font-size: 40px!important;
  }
}

.section-content-text {
    position: relative;
    z-index: 2;
    max-width: 700px;   
    width: auto;       
    padding: 100px 30px;
    text-align: left;
    margin-left: 100px;
}

.section-title-text {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 2px;
    color: #880808;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-text {
    font-size: 60px;
    letter-spacing: 0px;
    font-weight: 900;
    color: #0F2A33!important;
    margin-bottom: 40px;
    min-width: 100%;
}

.section-subtitle-text-two {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 100;
    color: #000000!important;
    margin-bottom: 20px;
    min-width: 100%;
}

.section-subtitle-text-two span{
    color: #a10a0a;
    font-weight: 800;
}

.ul-text{
  list-style-type: disc; 
  list-style-position: inside; 
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.ul-text li{
  color: #000000!important;
} 

.line-cta {
  display: block;
  width: 30%;
  height: 6px;
  background: #880808;
  margin: 40px 0;
  border-radius: 4px;
}

.line-cta-historie {
  display: block;
  width: 30%;
  height: 6px;
  background: rgba(255, 255, 255, 1);
  margin: 40px 0;
  border-radius: 4px;
}


.design-section-info {
    position: relative;
    max-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 clave */
    overflow: hidden;
    background: #0F2A33!important;
}

.section-content-info {
    position: relative;
    z-index: 2;
    max-width: 700px;   
    width: auto;       
    padding: 100px 30px;
    text-align: center;
}

.section-title-info {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-info span {
    color: #880808;
    font-size: 50px;
    letter-spacing: 4px;
}

.section-subtitle-info {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 40px;
    min-width: 100%;
}

.separator {
  width: 2px;               
  background-color: #AAAAAA;  
  align-self: center;      
  height: 25em;             
}

@media (max-width: 900px) {
  .separator {
    width: 70%;
    height: 2px;
    margin: 20px 0; /* espacio opcional */
  }
}

.design-section-text-three {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 clave */
    overflow: hidden;
    background: #FFFFFF!important;
}

@media (max-width: 900px) {
  .design-section-text-three  {
    flex-direction: column; /* apila los elementos uno debajo del otro */
  }

  .section-content-text-three {
    margin-left: 20px!important;
    padding: 30px 30px!important;
  }

  .section-content-info-two {
    margin-left: 20px!important;
  }
}

.section-content-text-three {
    position: relative;
    z-index: 2;
    max-width: 600px;   
    width: auto;       
    padding: 100px 30px;
    text-align: left;
    margin-left: 100px;
}

.section-title-text-three {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: #AAAAAA;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-text-three {
    font-size: 35px;
    letter-spacing: 0px;
    font-weight: 900;
    color: #0F2A33;
    margin-bottom: 20px;
    min-width: 100%;
}

.section-subtitle-text-three span{
    color: #880808!important;
}

.section-text-three {
    font-size: 18px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    min-width: 100%;
}



.design-section-info-two {
    position: relative;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 clave */
    overflow: hidden;
    background: #EDEDED!important;
}

.section-content-info-two {
    position: relative;
    z-index: 2;
    max-width: 900px;   
    width: auto;       
    padding: 100px 30px;
    text-align: center;
}

.section-title-info-two {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 2px;
    color: #0F2A33;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-title-info-two span {
    color: #880808;
    font-size: 60px;
    letter-spacing: 4px;
}

.section-subtitle-info-two {
    font-size: 18px;
    letter-spacing: 0px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 5px;
    min-width: 100%;
    text-align: left;
}

.ul-text-two {
  list-style-type: disc;      
  list-style-position: outside; 
  padding-left: 10px;      
  font-size: 18px;
}

.ul-text-two li {
  color: #000000 !important;
  margin-left: 0; 
  padding-left: 0;
  text-align: left;
}


.design-section-text-four {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column; /* apilar elementos verticalmente */
    align-items: flex-start; /* 👈 alineado a la izquierda */
    justify-content: flex-start; /* mantener elementos desde arriba */
    overflow: hidden;
    background: #FFFFFF !important;
    padding: 0 20px; /* opcional: margen interno a los lados */
}

.section-content-text-four {
    position: relative;
    z-index: 2;
    max-width: 100%;   
    width: auto;       
    padding: 30px 30px;
    text-align: left;
    margin-left: 100px;
}

.section-title-text-four {
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 1px;
    color: #880808;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-text-four {
    font-size: 60px;
    letter-spacing: 0px;
    font-weight: 900;
    color: #0F2A33!important;
    min-width: 100%;
}

.section-text-four {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #0F2A33!important;
    min-width: 100%;
}

@media (max-width: 700px) {
   .section-content-text-four{
    text-align: center;
    margin-left: 5px;
   }

  .section-subtitle-text-four {
    font-size: 40px;
  }

  .four-columns .column {
    margin-top: 20px;
    border-top: 1.5px solid #AAAAAA; /* línea vertical */
    border-bottom: 1.5px solid #AAAAAA; /* línea vertical */
    border-right: 0!important; /* línea vertical */
    border-left: 0!important; /* línea vertical */
  }
}


.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 5px auto 40px auto; /* 👈 esto lo centra */
  gap: 0;
  box-sizing: border-box;
}

/* Estilo de cada columna */
.four-columns .column {
  padding: 20px;
  text-align: left;
  border-right: 1.5px solid #AAAAAA; /* línea vertical */
  border-left: 1.5px solid #AAAAAA; /* línea vertical */
  box-sizing: border-box;
}

/* Responsive: columnas se ajustan */
@media (max-width: 1000px) {
  .four-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .four-columns {
    grid-template-columns: 1fr;
  }
  .four-columns .column {
    border-bottom: none; /* quitar línea horizontal en mobile */
  }
}


.design-section-carrusel {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column; /* apilar elementos verticalmente */
    align-items: center; /* 👈 alineado a la izquierda */
    justify-content: center; /* mantener elementos desde arriba */
    overflow: hidden;
    background: #F5F4F1 !important;
    padding: 0 20px; /* opcional: margen interno a los lados */
}

.section-content-carrusel {
    position: relative;
    z-index: 2;
    max-width: 100%;   
    width: auto;       
    padding: 30px 30px;
    text-align: center;
}
.section-title-carrusel {
    font-weight: 800;
    font-size: 60px;
    letter-spacing: 1px;
    color: #880808;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-carrusel {
    font-size: 60px;
    letter-spacing: 0px;
    font-weight: 900;
    color: #0F2A33!important;
    min-width: 100%;
}

.section-carrusel {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #0F2A33!important;
    max-width: 900px;
    text-align: center;
}


.mySwiper {
  width: 85%;
  margin: 0 auto;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #8b0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  top: 45%;
  transform: translateY(-50%);
}

/* quitar icono default */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-wrapper{
    width: 5%;
}

.swiper-slide {
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.swiper-slide-company {
  display: flex;
  justify-content: center; /* centro horizontal */
  align-items: center;     /* centro vertical */
  height: 120px;           /* IMPORTANTE: da altura al slide */
}

.swiper-slide-company img {
  width: 280px;      /* ajusta si quieres */
  height: 140px;
  object-fit: contain;
}


/* Contenedor de la tarjeta */
.card-slide {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 460px;
  width: 352px;
}

/* Imagen y label */
.card-image {
  position: relative;
}

.card-image img {
  width: 95%;
  height: 200px;
  display: block;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin: 10px 10px 10px 10px;
  object-fit: cover;    /* 👈 clave: cubre sin deformar */
  display: block;
  object-position: center 20%;
}

.card-label {
  position: absolute;
  top: 20px;
  left: 0px;
  background: #880808; /* color burdeos como tu ejemplo */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 2px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Contenido de la tarjeta */
.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.card-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
}

.card-content p {
  font-size: 14px;
  color: #333;
  flex-grow: 1;
}

.card-content button {
  background: #880808;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 12px;
  width: 250px
}

.card-content button:hover {
  background: #a00000;
}

.swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #880808;
  opacity: 0.3;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}


.design-section-company {
    position: relative;
    max-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 clave */
    overflow: hidden;
    background: #ffffff!important;
}

.section-content-company {
    position: relative;
    max-width: 100%;         
    padding: 100px 0px;
    text-align: center;
}

.section-title-company img{
    height: 150px;
    width: 100%;
}

.section-title-company span {
    color: #880808;
    font-size: 50px;
    letter-spacing: 4px;
}

.section-subtitle-company {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 40px;
    min-width: 100%;
}

@media (max-width: 800px) {

  .section-title-company img{
    height: 100px;
    width: 100%;
    }

    .section-content-company {       
    padding: 10px 0px;
    text-align: center;
    }
}


.design-section-contact {
    position: relative;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 clave */
    overflow: hidden;
    background: #ffffff!important;
    margin-bottom: 50px;
}

.section-content-contact {
    position: relative;
    z-index: 2;
    max-width: 100%;   
    width: auto;       
    padding: 30px 30px;
    text-align: center;
}

.section-title-contact {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 2px;
    color: #0F2A33;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-contact span {
    color: #880808;
    font-size: 60px;
    letter-spacing: 4px;
}

.section-subtitle-contact {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
    min-width: 100%;
}


@media (max-width: 800px) {

   .section-content-contact {
    padding: 20px 10px;
   }

  .section-title-contact {
        font-size: 40px;
    }

    .section-title-contact span {
        font-size: 40px;
    }

    .section-content-company {       
    padding: 10px 0px;
    text-align: center;
    }
}




.design-section-footer {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFFFFF!important;
  margin-bottom: 60px;
}

.design-section-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;          /* 👈 aquí controlas el tamaño */
  height: 2px;
  background: #AAAAAA;
  left: 50%;
  transform: translateX(-50%);
}

.section-content-footer {
    position: relative;
    z-index: 2;
    max-width: 33%;   
    width: auto;       
    padding: 80px 30px;
    text-align: left;
    margin-left: 100px;
}

.section-title-footer {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: #AAAAAA;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-footer {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 900;
    color: #880808;
    margin-bottom: 20px;
    min-width: 100%;
}

.section-subtitle-footer span{
    color: #880808!important;
}

.section-footer {
    font-size: 18px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    min-width: 100%;
}

.section-footer-img {
    font-size: 18px;
    font-weight: 400;
    color: #AAAAAA;
    text-align: center;

}

.section-title-footer img{
    width: 300px;
    height: 100px;
}


.section-content-footer a:hover{
    color: #880808;
}

.section-content-footer .footer-dropdown button:hover{
    color: #880808;
}


.footer-dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.footer-dropdown-toggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.footer-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #880808;
  list-style: none;
  padding: 10px px;
  margin: 0;
  min-width: 100px;
  border-radius: 8px;
  display: none; /* oculto por defecto */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.footer-dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300!important;
}



.footer-dropdown-toggle::after {
  content: "▼";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-dropdown-toggle.active::after {
  transform: rotate(180deg);
}

.footer-dropdown-menu li a:hover {
  background-color: #720808;
  color: #FFFFFF!important;
}



.four-columns-icons {
  display: grid;
  grid-template-columns: repeat(2, auto); /* ya no ocupa todo */
  justify-content: center; /* centra el grupo */
  gap: 50px; /* espacio entre iconos */
  width: 100%;
  margin-bottom: 20px;
}

/* Estilo de cada columna */
.four-columns-icons .column {
  padding: 0px;
  text-align: center;
  box-sizing: border-box;
  font-size: 50px!important;
}

.four-columns-icons .column p a {
    font-size: 30px;
}

@media (max-width: 1100px) {
  .section-title-footer img{
    width: 300px;
    height: 60px;
  }
  

}


@media (max-width: 900px) {

  .design-section-footer  {
    flex-direction: column; /* apila los elementos uno debajo del otro */
  }

  .section-content-footer {
    margin-left: 00px!important;
    padding: 30px 0px!important;
    text-align: center;
  }

  .section-title-footer img{
    width: 300px;
    height: 60px;
  }
  

}


.design-section-historie {
    position: relative;
    max-height: auto;
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 clave */
    overflow: hidden;
    background: #ffffff!important;
}

.section-title-historie {
    font-weight: 200;
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-historie span {
    color: rgba(0, 0, 0, 1);
    font-weight: 800;
}

.section-subtitle-historie {
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 800;
    color: #880808;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 1500px) {
  .section-content-historie {
    max-width: 70%;  
  }
}

@media (max-width: 1000px) {
  .section-content-historie {
    max-width: 90%;  
  }
}

@media (max-width: 800px) {
  .section-content-historie {
    max-width: 95%;  
  }
}


/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-row {
        gap: 40px;
    }
}

@media (max-width: 810px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 42, 51, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding: 100px 30px 60px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Disable design on mobile — static bg */
    .design-bg {
        top: 0;
        height: 100%;
    }

    .section-title {
        letter-spacing: 4px;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-cols {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .section-content {
        padding: 80px 20px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }
}
