	@import url('https://fonts.cdnfonts.com/css/texta');  
body, html {
        overflow-x: hidden !important;
        
        font-family: 'Texta', sans-serif;
    }

/********************************************************
 * MODAL DE LA LISTA DE MATERIALES
 ********************************************************/

.titulo-destacado {
  color: #2c3e50;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0 0 24px 0;
  padding-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}

.titulo-destacado::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(255,59,59,0) 0%,
    #000000 30%,
    #000000 70%,
    rgba(0,102,255,0) 100%);
  border-radius: 2px;
}

.item {
  position: relative;
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos se ajusten en pantallas pequeñas */
  align-items: center;
  padding: 12px 0 !important;
  gap: 15px;
  font-size: 13px !important;
}

.item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.1px;
  background: linear-gradient(to right, #000000, #000000);
}

li {
  padding: 8px !important;
}

/* Estilo del modal */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 10px; /* Espaciado para evitar que el modal toque los bordes en pantallas pequeñas */
  overflow-y: auto;
}

/* Contenido del modal */
.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 50px 10px 50px 10px;
  width: 90%;
  max-width: 580px;
  text-align: center;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
  display: none; /* Oculta la barra de desplazamiento */
}
	  
/* Botón para cerrar */
.close {
  position: absolute;
  top: 7px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  z-index: 2;
}
	  
@media (max-width: 1180px) {
	
  .total-box {
	  padding: 8px 20px !important;
  }
	
  .btn-calcular {
      padding: 7px 15px !important;
      font-size: 14px !important;
      cursor: pointer !important;
      text-transform: uppercase !important;
      font-weight: bold !important;
  }
	
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .titulo-destacado {
    font-size: 1.5em;
  }
	
  .modal-content {
    width: 95%;
    padding: 15px;
  }

  .item {
    flex-direction: column; /* Apila los elementos en pantallas pequeñas */
    text-align: center;
  }
}

@media (max-width: 480px) {
  .titulo-destacado {
    font-size: 1.3em;
  }

  .modal-content {
    border-radius: 20px;
    padding: 10px;
  }

  .close {
    font-size: 20px;
  }
}
    /********************************************************
     * Imagen de vistas exteriores e interiores
     ********************************************************/
	  
	  
    #imagen-seleccionada {
        max-width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 8px;
        display: none; /* Ocultar inicialmente */
    }
	  
    /********************************************************
     * RESETEO Y FUENTE
     ********************************************************/
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #fff;
      color: #2c3e50;
    }

    /********************************************************
     * CONTENEDOR PRINCIPAL
     ********************************************************/
    .container {
      max-width: 1000px; /* Ajusta según el ancho que desees */
      margin: 0 auto;
      padding: 0 20px 60px 20px;
    }

    /********************************************************
     * HEADER (LOGO + TÍTULO PRINCIPAL)
     ********************************************************/
  .logo75 {
    max-height: 150px; /* o ajustalo según tu preferencia */
    height: auto;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
  }

	  
	.header {
      text-align: center;
      padding: 0 !important;
    }
    .header .logo {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 5px;
      text-transform: uppercase;
    }
    .header .logo span {
      font-size: 16px;
      font-weight: normal;
      margin-left: 5px;
    }
    .header .titulo-principal {
    color: #000000b0;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 40px 0px 70px 0px;
    padding-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
}
	  
.header .titulo-principal::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 6%;
    width: 85%;
    height: 3px;
    background: linear-gradient(90deg, 
    rgba(255,59,59,0) 0%,
    #000000 30%,
    #000000 70%,
    rgba(0,102,255,0) 100%);
    border-radius: 2px;
    text-align: center;
}

    /********************************************************
     * IMAGEN PRINCIPAL
     ********************************************************/
    .imagen-principal {
      display: block;
      height: auto;
	  max-width: 800px; /* Mismo ancho máximo que el contenedor principal */
      margin: 20px auto;
      text-align: center;
      /* Ajusta la altura/anchura si lo deseas */
    }

    /********************************************************
     * TÍTULOS CON LÍNEAS (SECCIONES)
     * Para lograr la línea horizontal con el texto en medio
     ********************************************************/
    .titulo-seccion {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
      text-align: center;
      margin-top: 10px;
    }
    .titulo-seccion::before,
    .titulo-seccion::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #ccc;
    }
    .titulo-seccion::before {
      margin-right: 10px;
    }
    .titulo-seccion::after {
      margin-left: 10px;
    }
    .titulo-seccion h2 {
      font-size: 20px;
      font-weight: normal;
      white-space: nowrap;
    }

    /********************************************************
     * BLOQUES DE CONTENIDO (FONDO BLANCO, SOMBRA)
     ********************************************************/
    .bloque {
      background-color: #fff;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* sombra suave */
    }

    /********************************************************
     * SECCIÓN: ¿QUÉ NECESITAS COTIZAR?
     ********************************************************/
    .doble-select {
      display: flex;
      gap: 20px;
      margin-top: 15px;
    }
    .select-group {
      flex: 1;
    }
    select {
      width: 100%;
      padding: 12px;
      border: 2px solid #ebebeb;
      border-radius: 6px;
      font-size: 16px;
      background: #fff;
      cursor: pointer;
	    margin: 10px !important;
      color: #757575;
    }

    /********************************************************
     * SECCIÓN: ¿CÓMO NECESITAS TUS CIELORRASOS?
     ********************************************************/
    .tipo-cielorraso {
      display: flex;
      flex-direction: column;
      max-width: 300px; 
      margin-top: 15px;
    }
    .tipo-cielorraso label {
      margin-bottom: 5px;
      font-size: 14px;
      color: #555;
    }

    /********************************************************
     * SECCIÓN: INGRESÁ LAS MEDIDAS
     ********************************************************/
    .bloque-medidas h3 {
      font-size: 18px;
      font-weight: normal;
      margin-bottom: 15px;
    }
    .medidas-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 15px;
    }
    .medidas-table thead th {
      text-align: left;
      font-weight: normal;
      color: #7f8c8d;
      padding-bottom: 10px;
    }
    .medidas-table td, .medidas-table th {
      padding: 8px 5px;
    }
    .medidas-table input {
      width: 100%;
      padding: 10px;
      border: 1px solid #bdc3c7;
      border-radius: 4px;
    }
    .eliminar-fila {
      background: none;
      border: none;
      font-size: 20px;
      color: #e74c3c;
      cursor: pointer;
      font-weight: bold;
      line-height: 1;
    }
    .agregar-medida {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: #3498db;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      cursor: pointer;
    }
    .agregar-medida span {
      font-size: 20px;
      line-height: 1;
    }

    /********************************************************
     * SECCIÓN: CALCULAR
     ********************************************************/
    .bloque-calcular {
      display: flex;
      justify-content: space-between; 
      align-items: center;
      margin-top: 25px;
    }
    .btn-calcular {
      background: #000; 
      color: #fff;
      padding: 12px 40px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: bold;
    }
    .btn-calcular:hover {
      opacity: 0.9;
    }
    .total-box {
      border: 2px solid #3498db;
      border-radius: 6px;
      padding: 12px 20px;
      font-weight: bold;
      font-size: 16px;
      color: #2c3e50;
      min-width: 120px;
      text-align: center;
    }

    /********************************************************
     * TRIÁNGULO INVERTIDO ANTES DEL FOOTER
     ********************************************************/
	.enlace{
	  color: #2c3e50 !important;
	  text-decoration: none !important;
	}

    /********************************************************
     * FOOTER
     ********************************************************/
    footer {
      text-align: center;
      font-size: 14px;
      color: #7f8c8d;
    }
    .footer-columns {
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    .footer-columns p {
      line-height: 1.6;
      text-align: left; /* Para alinear el texto dentro de la columna */
    }
    .contacto {
      margin-top: 10px;
    }
    .marca-final {
      font-size: 22px;
      font-weight: bold;
      margin: 15px 0 10px 0;
      color: #2c3e50;
      letter-spacing: 1px;
    }
    .copy {
      font-size: 12px;
      color: #7f8c8d;
    }

    /********************************************************
     * RESPONSIVE
     ********************************************************/
    @media (max-width: 768px) {
      .doble-select {
        flex-direction: column;
      }
      .bloque-calcular {
        flex-direction: column;
        gap: 15px;
      }
      .footer-columns {
        flex-direction: column;
        align-items: center;
      }
      .footer-columns p {
        text-align: center;
      }
      .triangle-inverted {
        border-left: 50% solid transparent;
        border-right: 50% solid transparent;
      }
    }
/****************************************************************************************************/
  .footer-section {
    text-align: center;   /* Centra todo el contenido */
    font-size: 12px;      /* Ajusta el tamaño de fuente si lo deseas */
    color: #2c3e50;
    margin: 50px 0;       /* Espacio vertical antes y después del footer */
  }

  /* Aplica una altura de línea mayor a cada párrafo */
  .footer-section p {
    line-height: 2;       /* Incrementa este valor si quieres más separación vertical */
    margin: 8px 0;        /* Espacio extra entre párrafos */
  }

  /* Cada "span" se comporta como un bloque en línea y le damos espacio horizontal */
  .footer-section p span {
    display: inline-block;
    margin: 0 15px;       /* Aumenta o disminuye para más/menos espacio horizontal */
  }
	  
.btn-text {
    display: inline-block;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre el input y el botón */
    margin-top: 20px;
}

.mail-direc {
    flex: 1; /* Para que el input ocupe el espacio disponible */
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
	font-weight: bold;
	text-align: center;
}
	  
.btn-enviar-mail {
    background: #000;
    color: #fff;
    width: 140px;
    height: 33.75px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.btn-text, .loader, .check {
    position: absolute;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    display: none;
}

.check {
    color: #2ecc71;
    font-weight: bold;
    display: none;
    font-size: 18px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.cantidad{
  padding-right: 45px;
}

/*.tabla-materiales {
  width: 100%;
  border-collapse: collapse;
}
.tabla-materiales th,
.tabla-materiales td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
  font-size: 13px;
}
.tabla-materiales th {
  background-color: #000000;
  color: white;
}*/

.lista-materiales {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.fila-material {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 6px 0;
}

.fila-material.encabezado {
    font-weight: bold;
    border-bottom: 2px solid #333;
}

.columna {
    flex: 1;
    padding: 0 10px;
    word-break: break-word;
}

.columna.cantidad {
    max-width: 80px;
    font-size: 13px;
}

.columna.unidad {
    max-width: 100px;
    font-size: 13px;
}

.columna.material {
    flex: 3;
    font-size: 13px;
}

.columna.codigo {
    font-size: 13px;
}

