<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* pcss/pcss.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family:arial;
}
.navbar .dice img {
   height: 30px!important;
}
#dice {
    display: none; /* Ocultar por defecto */
}
header {
    opacity: 95%;
    position: fixed;
    width: 100%;
    z-index: 500; /* Asegura que el navbar estÃ© por encima del carrusel */
}

.carousel {
    margin-top:58px;
    position: relative;
   max-width: 100%;
    height: 40vw; /* Altura fija para el carrusel: 50% de la altura de la pantalla */
    z-index: 1; /* Asegura que el carrusel estÃ© detrÃ¡s del navbar */
    overflow: hidden;
}

.carousel img {
    width: 100%;
    height: 40vw;

    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
}

.carousel img.active {
    opacity: 1;
}

.carousel img.next {
    opacity: 0;
}
.cartita,
.ubicacion{
   
  
    animation: fadeUp 2s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
}

@keyframes fadeUp {
    from{
        opacity: 0;
        transform: translateY(300px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

nav {
    background-color: rgb(255, 255, 255);
    margin: 0 3%;
    display: flex;
    border-radius: 15px;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.884);
    align-items: center;
    font-family: sans-serif;
    z-index: 10000; /* Asegura que el navbar estÃ© por encima del carrusel */
}

nav img {
    border-radius: 15px;
    height: 50px;
    padding: 2px;
}

#menu-hd {
    margin-right: 100px;
}

#menu-hd a {
   
    text-decoration: none;
    margin: 10px 10px 10px 10px;
}

#login {
    display: none;
}


#radiadores {
    font-size: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: arial;
}
#radiadores h2{
    margin-top:10px;
}
#radiadores a{

    font-size: 20px;
  
    font-family: arial;

}

#ubicacion{

    font-size: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* Boton */

.cta {
    margin-top: 30px;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 7px;
    padding-left: 2px;
    letter-spacing: 4px;
    font-size: 24px;
    text-transform: uppercase;
    margin-right: 10px;
    position: relative;
  }
  
  .cta::before {
    content: "\21DD";
    font-size: 48px;
    position: absolute;
    top: -12px;
    right: -10px;
    transform: translateX(100%);
  }
  
  
  .cta:active {
    transform: scale(0.9);
  }
  
  .cta {
    position: relative;
    color: black;
    padding-bottom: 10px;
  }
  
  .cta::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .cta:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .estilo {
        font-family: "Permanent Marker", cursive;
        font-weight: 22px;
        font-style: normal;
    color: #000;
    position: relative;
    padding-bottom: 7px; /* Asegura que el pseudo-elemento ::after se posicione correctamente */
}
.estilo:hover{
    color: rgb(190, 7, 7);
   
}
.estilo:hover:nth-child(5){
    color: rgb(146, 146, 4);
}

.estilo::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #550a0a;
    transform-origin: bottom right;
    transition: transform .15s ease-out;
    margin-top: 10px;
    border-radius: 30px;
}

.estilo:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

  
/* footer */
footer{
    background-color: #111;
}
.footerContainer{
    width: 100%;
    padding: 70px 30px 20px ;
}
.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding:  10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}

.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    color:white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;

}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 3px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}

/*chaaaatttboooooot*/
#chatBubble {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background-color: #e22626;
    color: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

#chatContainer {
    position: fixed;
    bottom: 5px;
    right: 30px;
    width: 350px;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
    transition: bottom 0.3s; /* AÃ±ade una transiciÃ³n suave */
}




/* Resto del CSS permanece igual */


#header {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.884);
    background-color: #c20f0f;
    color: #ffffff;
    padding-right: 10px;
    padding-left: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
    font-family: arial;
}

#exitButton {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

#chatbox {
    flex: 1;
    padding: 15px;
    overflow-y: scroll;
    width: 100%;
    margin-top: 10px;
}

.message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.user-message {
    background-color: #e0e3e6;
    color: #3a3838;
    align-self: flex-end;
    text-align: end;
}

.bot-message-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.consecutive-bot-message {
    margin: 2px 0;
}

.bot-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.bot-message {
    background-color: #e9ecef;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

#inputArea {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}

#userInput {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

#sendButton {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f8f4f4;
    color: #837c7c;
    cursor: pointer;
}

#sendButton:hover {
    background-color: red;
    color: white;
}

#Nosotros{
 font-size: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: arial;
}



.Noso,
.ofre{
        text-align: center;
    font-size: 58px;
    animation: appear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}
#Nosotros h2{
    animation: appear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}


/*prueba*/
#imasrad{
    width: 180px;
    height: 180px;
    margin-right: 10px;
    border-radius: 50%;
}
#imasrad:hover{
    transform: scale(1.2);
    transition:linear 0.5s;
}
#Pruebas{
    width: 100%;
    
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
 display: flex;
 justify-content: center;
}
 h3{
    font-size: 28px;
}
@keyframes appear {
    from {
      opacity: 0;
      clip-path: inset(100% 100% 0 0);
    }
    to {
      opacity: 1;
      clip-path: inset(0 0 0 0);
    }
  }
  
  
  
  .block {
   
    align-items: center;
    margin: 50px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(121, 20, 20, 0.89);
    padding: 20px;
    width: 300px;
    text-align: center;
  }
  .block {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  .contenedorp{
   font-family:arial;
width: 100%;
justify-content: center;
    display: flex;
    align-items: center;
  }
  /*.ofre{
    font-size: 34px;
    font-family: arial;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: center;
   
}
prueba*/
.ofrecemos{
    font-family:arial;
}
  

@keyframes appear2 {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
    transform: scale(1);
    }
  }
 .back{
     
 }
 
.ofre,
  .ubica,
  .Noso {
    font-size: 38px;
    font-family: arial;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: center;
    animation: appear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }

/*pruebas*/
/* Estilos existentes */
.grid-container {
       display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
       justify-items: center;
    background: url(/pimag/nosotros.png); /* Imagen de fondo */
    background-size: cover; /* Asegura que la imagen cubra todo el fondo */
    background-position: center; /* Centra la imagen */
    
    }
.grid-container .cartas:nth-child(1) {
    grid-column: span 2;
    justify-self: center;
}

.cartas {
    font-family:arial;
    width: 300px;
    height: 300px;
    perspective: 800px;
        
    }
.cartas:hover &gt; .card {
    cursor: pointer;
    transform: rotateY(180deg);
}
.card {
    height: 100%;
    width: 100%;
    position: relative;
    transition: transform 1500ms;
    transform-style: preserve-3d;
}
.classuno{
    
    margin-top: -10% ;
    margin-bottom:5px;
   
}
.classdos{
    margin-bottom: -10%;
    margin-top: 7%;
}
.front,
.back {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgb(54, 6, 6);
    position: absolute;
    backface-visibility: hidden;
     background-color: #ffffffab;
}
.front h1 {
    text-align: center;
    justify-content: center;
    padding-top: 35%;
    font-size: 30px;
}
.back h1 {
    color: #e22626;
}
.back {
       transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.back p {
    margin-right: 10px;
    padding-right: 10px;
    padding-left: 15px;
    padding-bottom: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    margin-left: 10px;
    text-align: center;
}

/* Media query para pantallas pequeÃ±as */
@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .grid-container .cartas:nth-child(1) {
        grid-column: span 1;
    }
    .front,
    .back {
        border-radius: 0; /* Convertir a rectÃ¡ngulos en pantallas pequeÃ±as */
    }
    .front h1{
        padding: 0;
    }
    .back p{
        margin: 0;
        padding: 0;
        font-size: 11px;
    }
    .back li{
        margin: 0;
        padding: 0;
        font-size: 11px;
    }
    .back h1{
        margin: 0;
        margin-bottom: 4px;
        padding: 0;
        font-size: 15px;
    }
    
    .cartas {
        width: 90%;
        height: 100px;
        perspective: 800px;
        margin-top: 10px;
    margin-bottom:10px;
    }
}


/*mas pruebas*/

.slider {
    width: 75vw;
    height: 80px;
    margin: 2px;
    
}

.slider .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 14);
    height: 10vw;

}

.slider .slide {
    width: 200px;
}

.slider .slide img {
    width: 100%;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-200px * 7));
        transform: translateX(calc(-200px * 7));
    }
}

  .ofre,
  .ubica,
  .Noso {
    font-size: 38px;
    font-family: arial;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: center;
    animation: appear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
 
.contp {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea los elementos a la izquierda */
    padding: 20px;
   
}

.block2 {
    position: relative;
    display: flex;
    flex-direction: column; /* Alinea el tÃ­tulo encima del texto */
    align-items: flex-start; /* Alinea el contenido a la izquierda */
    margin: 20px 0; /* Ajusta el margen superior e inferior */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0 50px 50px 50px;
    box-shadow: 0 11px 11px rgba(121, 20, 20, 0.89);
    padding: 20px 50px; /* Ajusta el padding */
    width: 60vw; /* Ajusta el ancho del bloque */
    height: auto;
    text-align: left;
     animation: appear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
}

.block2 h3 {
    color: #1e6d38;
    margin: 0 0 10px 0;
    text-align: center;
}

.block2 p {
    margin: 10px 0 0;
    padding-right: 60px;
    font-size: 20px;
    font-family: arial;
    text-align: center;
    justify-content: center;
}

.imgcontp {
    position: absolute;
    top: -25px; /* Ajusta para que la imagen quede en el borde superior del bloque */
    right: -75px; /* Ajusta la posiciÃ³n de la imagen */
    height: 150px; /* Ajusta la altura para mantener la forma circular */
    width: 150px; /* Ajusta el ancho para mantener la forma circular */
    object-fit: cover;
    border-radius: 50%; /* Hace la imagen circular */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); /* AÃ±ade una sombra para un mejor efecto visual */
}
@media (max-width: 700px) {
    .block2 {
        flex-direction: row; /* Alinea los elementos en fila */
        align-items: center; /* Centra verticalmente el contenido */
        padding: 20px; /* Ajusta el padding */
        width: 85vw;
        flex-direction: column;
    }
.contp{
    width: 100%;
}
    .block2 p {
        margin-left: 20px; /* AÃ±ade margen izquierdo para separar el texto de la imagen */
        padding: 0; /* Quita el padding del pÃ¡rrafo */
        text-align: left;
       
    }

    .imgcontp {
       top: -30px;
        /* Resetea la posiciÃ³n para que se alinee correctamente */
        left: -10px; /* AÃ±ade margen izquierdo para separar la imagen del contenido */
        height: 70px; /* Ajusta la altura para que se vea bien en pantallas pequeÃ±as */
        width: 70px; /* Ajusta el ancho para mantener la forma circular */
        border-radius: 50%; /* Asegura que la imagen sea circular */
    }
}

@media (max-width: 589px){
    .block2  p{font-size: 16px;
    }
   .block2 h3{
    font-size: 19px;
   }
}

.centered-container {
    text-align: center; /* Centra el texto horizontalmente */
}

.painted-subtitle {
    position: relative;
    display: inline-block;
    font-size: 44px;
    color: #333;
    font-family: Arial;
}

.painted-subtitle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: rgba(211, 21, 21, 0.575); /* Ajusta el color segÃºn tu preferencia */
    z-index: -1;
    transform: rotate(-2deg); /* AÃ±ade un ligero Ã¡ngulo para el efecto de pintura */
    border-radius: 10px; /* Hace los bordes mÃ¡s suaves para parecer una mancha */
    animation: appear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
}


@media (max-width: 853px){
 .menu-hd{
    display: none;
 }
 #menu-hd.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Ajusta segÃºn la altura de tu navbar */
    width: 100%;
    text-align: center;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
}
@media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    } 
    .footerNav ul li{
        width:100%;
        text-align: center;
        margin: 10px;
    }
    .socialIcons a{
        padding: px;
        margin: 4px;
    }
    .footerContainer, .footerNav ul{
        margin-left: 0;
        padding-left: 0;
    }

    #radiadores,
    #Nosotros,
    #ubicacion {
        font-size: 25px;
    }
}


@media (max-width: 589px){
    .contenedorp{
        display: block;
        width: 100%;
    }
    .block{
        width: fit-content;
        margin: 5%;
    }
}


@media (max-width: 395px){
#chatContainer {
 
    width: 300px;
    height: 400px;
   
}
    #sendButton{
   padding: 10px 10px;
    }

    .mapa-c{
        width: 85%;
    }
}
@media (max-height: 499px){
#chatContainer {
 
    width: 300px;
    height: 85%;
   
}
   
}
</pre></body></html>