<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-color: #000c77;
    padding: 10px 0;
}


.logo {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

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

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

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


.container {
    width: 100%;
    height: 15vh;
    background-color: #000c77;
    display: flex;
    flex-direction: column;
}

.franja {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000c77;
    overflow: hidden;
}

.animated-text {
    font-size: 2rem;
    color: white;
    position: relative;
    animation: fadeIn 2s;
}

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

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

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

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

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

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

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

    .franja {
        height: 20vh;
    }
}

.call-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    background-color: #000c77;
}

.call-button {
    background-color: #24e250;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #f0f32f;
}

@media (max-width: 768px) {
    .call-button {
        padding: 12px 25px;
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .call-button {
        padding: 11px 23px;
        font-size: 1,9rem;
    }
}

.bounce-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-color: #000c77;
}

.bounce-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: #d1ff02;
    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.3rem;
    line-height: 1.6;
    color: #555;
}

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

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

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

#responsive-section h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

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

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

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

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

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

.banner {
    position: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #25D366; 
    color: white;
    text-align: center;
    z-index: 1000;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.whatsapp-button {
    background-color: white;
    color: #25D366;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #f5f10a;
}

@media (min-width: 768px) {
    .banner {
        padding: 20px;
    }

    .banner h2 {
        font-size: 1.5rem;
    }

    .whatsapp-button {
        font-size: 1.2rem;
        padding: 15px 25px;
    }
}

.elegant-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

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

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: #3258ff;
    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: 1rem;
    }

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
.seccion-cerrajero-moraira {
    padding: 16px;
    background-color: #f7f7f7;
    color: #333;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  
.seccion-cerrajero-titulo {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: bold;
}
  
.contenedor-cerrajero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
  
.imagen-animada {
    max-width: 100%;
    height: auto;
    animation: fadeIn 3s ease-in-out infinite;
    border-radius: 8px;
}
  
.descripcion {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
  
@keyframes fadeIn {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 0.5;
    }

    100% {
      opacity: 1;
    }
}
  
@media (min-width: 768px) {
    .seccion-cerrajero-moraira {
      padding: 10px 10px;
    }
  
    .seccion-cerrajero-titulo {
      font-size: 2rem;
    }
  
    .descripcion {
      font-size: 1.3rem;
    }
}
  
@media (min-width: 1024px) {
    .contenedor-cerrajero {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
  
    .imagen-animada {
      max-width: 45%;
    }
  
    .descripcion {
      max-width: 50%;
    }
}

.section-morairaurg {
    text-align: center;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto; /* Centrado de la secciÃ³n */
}
  
.section-title-morairaurg {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}
  
.section-text-morairaurg {
    font-size: 1.2em;
    color: #555;
    margin-top: 0;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
}
  
@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
  
@media (max-width: 600px) {
    .section-title-morairaurg {
      font-size: 1.5em;
    }
  
    .section-text-morairaurg {
      font-size: 1em;
    }
}
  
@media (min-width: 601px) {
    .section-title-morairaurg {
      font-size: 2em;
    }
  
    .section-text-morairaurg {
      font-size: 1.2em;
    }
}

.section {
    text-align: center;
    padding: 20px;
    max-width: 90%;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}
  
.section-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
    animation: titleAnimation 2s ease-in-out infinite;
}
  
@keyframes titleAnimation {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    50% {
      transform: scale(1.1);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0.8;
    }
}
  
.section-text {
    font-size: 1.2em;
    color: #555;
    margin-top: 0;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
}
  
@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
  
@media (max-width: 600px) {
    .section-title {
      font-size: 1.5em;
    }
  
    .section-text {
      font-size: 1em;
    }
}
  
@media (min-width: 601px) {
    .section-title {
      font-size: 2em;
    }
  
    .section-text {
      font-size: 1.2em;
    }
}
  </pre></body></html>