<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background: rgb(8, 1, 102);
    padding: 10px 0;
}


.logo-villajoyosa {
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo-villajoyosa {
        font-size: 1.4rem;
    }
}

@media (min-width: 769px) {
    .logo-villajoyosa {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .logo-villajoyosa {
        font-size: 1.8rem;
    }
}

.container-villajoyosa {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: column;
}

.franja {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: rgb(8, 1, 102);
}

.animated-text {
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    color: rgb(253, 237, 10);
    position: relative;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        transform: translateY(200%);
        opacity: 0;
    }

    25% {
        transform: translateY(100%);
        opacity: 1;
    }

    75% {
        transform: translateY(-100%);
        opacity: 1;
    }

    76% {
        transform: translateY(-100%);
        opacity: 0;
    }

    80% {
        transform: translateY(-100%);
        opacity: 1;
    }

    100% {
        transform: translateY(-200%);
        opacity: 1;
    }
    
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1.6rem;
    }
}

.call-villajoyosa {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12vh;
    background: rgb(8, 1, 102);
}

.call-button {
    background-color: yellow;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .call-button {
        padding: 11px 23px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .call-button {
        padding: 11px 20px;
        font-size: 1.5rem;
    }
}

.bounce-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(8, 1, 102);
    height: 12vh;
}

.bounce-text {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(253, 237, 10);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .bounce-text {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .bounce-text {
        font-size: 1.8rem;
    }
}

.independent-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .independent-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .independent-text {
        font-size: 1.5rem;
    }
}

#responsive-section {
    display: auto;
    background-color: #f4f4f4;
    padding: 20px 10px;
    margin: 10px;
    text-align: center;
    max-width: 100%; 
}

#responsive-section h1 {
    font-size: 2rem;
    color: #333;
}

#responsive-section p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

@media (min-width: 768px) {
    #responsive-section h1 {
        font-size: 2rem;
    }

    #responsive-section p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    #responsive-section h1 {
        font-size: 2rem;
    }

    #responsive-section p {
        font-size: 1.4rem;
    }
}

.sectiontree {
    text-align: center;
    padding: 20px;
    max-width: 90%;
    margin: auto;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 59vh;
}

.treetittle {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.treetext {
    font-size: 1.4rem;
    color: #34495e;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1 forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .treetittle {
        font-size: 2rem;
    }

    .treetext {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .treetittle {
        font-size: 2rem;
    }

    .treetext {
        font-size: 1.3rem;
    }
}

.elegant-footer {
    background-color: rgb(50, 49, 56);
    padding: 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.footer-text {
    margin: 0;
    font-size: 1.3rem;
}


.footer-link {
    color: #ead113;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #f39c12;
    transform: translateY(-3px);
}

@keyframes elegant-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 600px) {
    .footer-text {
        font-size: 1.4rem;
    }

    .footer-link {
        display: block;
        margin: 5px 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

#seccion-image-lavila {
    width: 100%;
    height: 100vh;
    background-image: url('lavila.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
}

#seccion-image-lavila::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contenido {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 90%;
}

.texto-animado {
    font-size: 2.5rem;
    font-weight: bold;
    animation: texto-animado 3s ease-in-out infinite;
    opacity: 0;
    transform: translateY(-30px);
}

@keyframes texto-animado {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

@media (max-width: 768px) {
    .texto-animado {
        font-size: 1.8rem;
    }

    .subtitulo {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .texto-animado {
        font-size: 2rem;
    }

    .subtitulo {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .texto-animado {
        font-size: 3rem;
    }

    .subtitulo {
        font-size: 1.8rem;
    }
}

.seccion-cerrajero-vila {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    color: #333;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}
  
.contenedor-cerrajero {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}
  
.imagen-container {
    text-align: center;
    margin-bottom: 20px;
}
  
.imagen-animada {
    width: 50%;
    max-width: 220px;
    max-height: 250px;
    height: auto;
    animation: animacion-imagen 2s infinite alternate;
}
  
@keyframes animacion-imagen {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.05);
    }
}
  
.texto-container {
    text-align: center;
    max-width: 600px;
}
  
.titulo {
    font-size: 1.5rem;
    font-weight: bold;
}
  
.descripcion {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}
  
@media (max-width: 768px) {
    .seccion-cerrajero-vila {
      flex-direction: column;
      gap: 30px;
    }
  
    .imagen-animada {
      max-width: 350px;
    }
  
    .titulo {
      font-size: 1.4rem;
    }
  
    .descripcion {
      font-size: 1.2rem;
    }
}

.image-description-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    margin: 0 auto;
    max-width: 900px;
    background-color: #fafafa;
}
  
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    overflow: hidden;
}
  
.image-container {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
}
  
.image-animated {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: fadeInEffect 2s ease-in-out;
}
  
@keyframes fadeInEffect {
    0% {
      opacity: 0;
      transform: scale(1.3);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
}
  
.image-description-text {
    font-size: 1rem;
    color: #333;
    margin-top: 15px;
    line-height: 1.5;
    max-width: 100%;
    text-align: center;
}
  
@media (min-width: 768px) {
    .image-description-section {
      flex-direction: row;
      justify-content: center;
      padding: 20px;
    }
  
    .image-container {
      max-width: 45%;
    }
  
    .image-description-text {
      font-size: 1.125rem;
      max-width: 90%;
      margin-left: 20px;
    }
}


.animada-section {
    padding: 20px;
    text-align: center;
    background-color: #f4f4f9;
}
  
.animada-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-out;
}

.animada-section p {
    font-size: 1rem;
    color: #666;
    animation: fadeInText 3s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (min-width: 600px) {
    .animada-section h2 {
      font-size: 2rem;
    }

    .animada-section p {
      font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .animada-section h2 {
      font-size: 2.5rem;
    }

    .animada-section p {
      font-size: 1.5rem;
    }
}
</pre></body></html>