/* Fuente */
@font-face {
  font-family: 'F';
  src: url('../fonts/Roman\ SD.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


body {
    margin: 0;
    font-family: F;
    background-color: #f8f8f8;
    color: #333;
  }
  
  /* ciruclos carousel */
  .dots-container {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 5;
  }
  
  .dot {
    height: 14px;
    width: 14px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: #fff;
  }
  
  /* CAROUSEL */
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    color: white;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.6);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  .hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
  }
  
  .hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1.2s ease;
  }
  
  .hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  
  
  
  .hero-slider .caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  
  .hero-slider .slide.active .caption {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  .hero-slider .caption h2 {
    font-size: 2.5rem;
    margin: 0 0 10px;
  }
  
  .hero-slider .caption p {
    font-size: 1.2rem;
    margin: 0;
  }
  
  .hero-slider .prev,
  .hero-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.4);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
  }
  
  .hero-slider .prev:hover,
  .hero-slider .next:hover {
    background: rgba(0,0,0,0.6);
  }
  
  .hero-slider .prev {
    left: 20px;
  }
  
  .hero-slider .next {
    right: 20px;
  }
  
  

  .hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, ); /* Cambiá el 0.35 para más o menos opacidad */
    z-index: 0;
  }

  .hero-slider .caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    z-index: 2;
  }
  



  /* --- NAVBAR --- */

.icono-nav {
    width: 60px;
    height: 60px;
    margin-right: 8px;
    vertical-align: middle;
  }

  .icono-nav1 {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
  }
  

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
  }
  
  .menu a {
    margin-left: 30px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .menu a:hover {
    color: #000;
    /* border-bottom: 2px solid #000; */
  }
  

  /* -- Tipos de Marmol -- */

  .icono-texto {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
  }
  

  .selector-piedras {
    position: relative;
    padding: 60px 40px;
    color: white;
    text-align: center;
    overflow: hidden; /* importante para que el fondo no se desborde */
    z-index: 1;
  }
  
  /* Fondo con opacidad usando ::before */
  .selector-piedras::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
   background-color: #000; /* 🔥 Esta línea es clave para evitar que el fondo se mezcle con blanco */
    opacity: 0.5; /* 🔥 controlá la intensidad */
    --s: 200px;
    --c1: #1d1d1d;
    --c2: #4e4f51;
    --c3: #3c3c3c;
    background: repeating-conic-gradient(
          from 30deg,
          #0000 0 120deg,
          var(--c3) 0 180deg
        )
        calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
      repeating-conic-gradient(
        from 30deg,
        var(--c1) 0 60deg,
        var(--c2) 0 120deg,
        var(--c3) 0 180deg
      );
    background-size: var(--s) calc(var(--s) * 0.577);
  }
  
  
  /* Asegurá que el contenido esté arriba del fondo */
  .selector-piedras > * {
    position: relative;
    z-index: 1;
  }
  
  
  
  .contenedor-texto {
    margin-bottom: 30px;
  }
  
  .subtitulo {
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .selector-piedras h2 {
    font-size: 2rem;
    font-weight: bold;
  }
  
  
  .selector-piedras h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #000000;
    margin: 25px auto 0;
    border-radius: 2px;
  }

 .slider-piedras {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
    scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

  
  .piedra {
  min-width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

  
  .piedra img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  
  /* Escala sutil al pasar */
  .piedra:hover img {
    transform: scale(1.02);
  }
  
  /* Overlay visual + texto */
  .nombre-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 1.2;
    padding: 5px;
  }
  
  .piedra:hover .nombre-overlay {
    opacity: 1;
  }

  @media (max-width: 768px) {
  .slider-piedras {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
  }

  .piedra {
    width: 90px;
    height: 90px;
  }

  .nombre-overlay {
    font-size: 0.7rem;
  }

  .subtitulo {
    font-size: 1rem;
  }

  .selector-piedras h2 {
    font-size: 1.3rem;
  }

  .selector-piedras h2::after {
    width: 30px;
    height: 2px;
  }
}
@media (max-width: 768px) {
  .slider-piedras {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .piedra {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    scroll-snap-align: start;
  }

  .nombre-overlay {
    font-size: 0.75rem;
    padding: 4px;
  }

  .subtitulo {
    font-size: 1.2rem;
  }

  .selector-piedras h2 {
    font-size: 1.5rem;
  }

  .selector-piedras h2::after {
    width: 40px;
    height: 2px;
  }
}

  
  /* From Uiverse.io by csemszepp */ 
.container {
  width: 100%;
  height: 100%;
  --s: 200px; /* control the size */
  --c1: #1d1d1d;
  --c2: #4e4f51;
  --c3: #3c3c3c;

  background: repeating-conic-gradient(
        from 30deg,
        #0000 0 120deg,
        var(--c3) 0 180deg
      )
      calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
    repeating-conic-gradient(
      from 30deg,
      var(--c1) 0 60deg,
      var(--c2) 0 120deg,
      var(--c3) 0 180deg
    );
  background-size: var(--s) calc(var(--s) * 0.577);
}





  
  /* reseñas */
  .testimonios {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
  }
  
  .testimonios .supertitulo {
    text-transform: uppercase;
    color: #070707;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .testimonios .titulo {
    font-size: 2rem;
    color: #3a3a3a;
    margin-bottom: 20px;
  }
  
  .testimonios .descripcion {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .contenedor-testimonios {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .testimonio {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 300px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    position: relative;
    font-size: 0.95rem;
  }
  
  .comillas {
    font-size: 2.5rem;
    color: #000000;
    margin: 0;
    line-height: 0.5;
  }
  
  .texto {
    font-style: italic;
    margin: 15px 0;
    color: #333;
  }
  
  .cliente .nombre {
    font-weight: bold;
    color: #2c2c2c;
    margin: 0;
  }
  
  .cliente .cargo {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  
  
  
  
  


  /* footer */
  .footer-modern {
    background: #f9f9f9;
    color: #1a1a1a;
    padding: 60px 40px 20px;
    border-radius: 40px 40px 0 0;
    font-family: F;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  
  .footer-brand {
    flex: 1 1 300px;
  }
  
  .logo-footer {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 15px;
    border: 2px solid #ccc;
    border-radius: 50px;
    overflow: hidden;
    max-width: 320px;
  }
  
  .newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
  }
  
  .newsletter-form button {
    background: #2d0c5e;
    color: white;
    border: none;
    width: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background: #585858;
  }
  
  .footer-links {
    display: flex;
    justify-content: flex-end; /* ← mueve las columnas hacia la derecha */
    flex: 2 1 600px;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  
  .footer-section h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #474747;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .footer-bottom a {
    color: #353535;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }
  
  
  
  
  
  
  


  .separador-sombra {
    height: 5px;
    background: linear-gradient(to bottom, rgba(5, 3, 3, 0.5), transparent);
  }
  
  


  /* contacto */
  .seccion-contacto {
    padding: 80px 20px;
    background-color: #fff;
    font-family: F;
    color: #333;
  }
  
  .contacto-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  .contacto-info {
    flex: 1 1 350px;
  }
  
  .contacto-info .etiqueta {
    text-transform: uppercase;
    color: #dba14a;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .contacto-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .contacto-info .descripcion {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .info-bloque {
    margin-bottom: 25px;
  }
  
  .info-bloque h4 {
    font-family: F;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: #2e2e2e;
  }
  
  .icono {
    width: 18px;
    height: 18px;
  }
  
  .contacto-derecha {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .form-contacto {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-contacto h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
  }
  
  .form-contacto input,
  .form-contacto textarea {
    font-family: F;
    flex: 1;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .form-contacto textarea {
    font-family: F;
    resize: vertical;
    min-height: 100px;
  }
  
  .form-contacto button {
    font-family: F;
    width: fit-content;
    padding: 12px 30px;
    background-color: #a1a1a1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .form-contacto button:hover {
    font-family: F;
    background-color: #555555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contacto-container {
      flex-direction: column;
    }
  
    .form-row {
      flex-direction: column;
    }
  
    .form-contacto button {
      width: 100%;
    }
  }
  
  











  /* Catalogo */
  /* From Uiverse.io by gharsh11032000 */ 
.card {
  position: relative;
  width: 300px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px #ffffff80;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card svg {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2; /* para que quede sobre la imagen */
}


.card:hover .card__content {
  transform: rotateX(0deg);
}


.card__title {
  margin: 0;
  font-size: 24px;
  color: #df9a5a;
  font-weight: 700;
}

.card:hover svg {
  scale: 0;
}

.card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #ff0000;
  line-height: 1.4;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 15px; /* ← este es el espacio entre tarjetas */
  margin-top: 30px;
  justify-items: center;
}


.seccion-catalogo {
  padding: 60px 0;
  background-color: #fff;
}

.seccion-catalogo-con-sidebar {
  display: flex;
  gap: 40px;
  padding: 60px 40px;
  background-color: #fff;
  flex-wrap: wrap;
}

.sidebar-catalogo {
  flex: 0 0 200px;
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sidebar-catalogo h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #333;
}

.sidebar-catalogo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-catalogo li {
  margin-bottom: 10px;
}

.sidebar-catalogo a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s;
}

.sidebar-catalogo a:hover {
  color: #dba14a;
}

.contenido-catalogo {
  flex: 1;
  min-height: 60vh; /* asegura que el contenido tenga una altura mínima */
  display: flex;
  flex-direction: column;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* máximo 3 por fila */
  gap: 25px;
  margin-top: 30px;
  justify-items: center;
}


.sidebar-catalogo a.activo {
  color: #dba14a;
  font-weight: bold;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.6s ease;
}






.card:hover svg {
  display: none; /* por si hay SVGs mezclados */
}

@media (max-width: 1024px) {
  .catalogo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .catalogo-grid {
    grid-template-columns: 1fr;
  }
}

/* TAMAÑO IMAGEN DEL CATALOGO DEL INICIO PURASTONE */


.piedra img.ajustar-logo {
  object-fit: contain !important;
  padding: 10px;
  transform: scale(1.4); /* ajustá este valor según el tamaño que quieras */
}



.piedra img.ajustar-logo2 {
  object-fit: contain !important;
  padding: 10px;
  transform: scale(0.9); /* ajustá este valor según el tamaño que quieras */
}


.piedra img.ajustar-logo3 {
  object-fit: contain !important;
  padding: 10px;
  transform: scale(1car); /* ajustá este valor según el tamaño que quieras */
}

