<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: rgb(4, 11, 111);
    padding: auto;
    width: 100%;
}

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

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

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

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

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

.franja {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

@keyframes fadeIn {
    0% {
        transform: translateY(200%);
        opacity: 0;
    }
    25% {
        transform: translateY(100%);
        opacity: 1;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        transform: translateY(-100%);
        opacity: 1;
    }
    100% {
        transform: translateY(-200%);
        opacity: 0;
    }
}

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

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

.call-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-color: rgb(4, 11, 111);
}

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

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

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


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

.independent-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 20px;
    background-color: #f57539;
    color: #fff; 
}

.independent-container {
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}

.independent-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #3A86FF;
}

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

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

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

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

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

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

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

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

.banner {
    position: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    color: rgb(0, 0, 0);
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
}

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

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

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

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

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

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

.elegant-footer {
    background-color: rgb(4, 11, 111);
    color: #ecf0f1;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

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

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

.footer-link {
    color: #dcca09;
    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.3rem;
    }
    .footer-link {
        display: block;
        margin: 5px 0;
    }
}

.mapa {
    display: flex;
    justify-content: center;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: Arial, sans-serif;
}
  
.animated-section-denia {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
  
.section-title-denia {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}
  
.animated-text-denia {
    font-size: 1.2rem;
    color: #555;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
}
  
@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
  
@media (min-width: 600px) {
    .section-title-denia {
      font-size: 1.8rem;
    }
  
    .animated-text-denia {
      font-size: 1.3rem;
    }
}
  
@media (min-width: 1024px) {
    .section-title-denia {
      font-size: 2rem;
    }
  
    .animated-text-denia {
      font-size: 1.6rem;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: Arial, sans-serif;
}
  
.image-text-section-denia {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
  
.section-title-denia {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
}
  
.image-container-denia {
    margin-bottom: 20px;
}
  
.animated-image-denia {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: floatImage 5s ease-in-out infinite;
}
  
@keyframes floatImage {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0);
    }
}
  
.description-text-denia {
    font-size: 1.2rem;
    color: #555;
}
  
@media (min-width: 600px) {
    .section-title-denia {
      font-size: 1.8rem;
    }
  
    .description-text-denia {
      font-size: 1.3rem;
    }
}
  
@media (min-width: 1024px) {
    .section-title-denia {
      font-size: 1.9rem;
    }
  
    .description-text-denia {
      font-size: 1.4rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
  
.image-description-section-denia-urgente {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
  
.section-title-denia-urgente {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}
  
  .image-container-denia-urgente {
    margin-bottom: 20px;
}
  
  .responsive-image-denia-urgente {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
  
.description-text-denia-urgente {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}
  
@media (min-width: 600px) {
    .section-title-denia-urgente {
      font-size: 1.9rem;
    }
  
    .description-text-denia-urgente {
      font-size: 1.2rem;
    }
}
  
@media (min-width: 1024px) {
    .section-title-denia-urgente {
      font-size: 2rem;
    }
  
    .description-text-denia-urgente {
      font-size: 1.6rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
}
  
.animated-section-urgedenia {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
  
.animated-title-urgedenia {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInUp 1.5s ease-out forwards;
}
  
.animated-text-urgedenia {
    font-size: 1.2rem;
    color: #555;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s ease-out 0.5s forwards;
}
  
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
  
@media (min-width: 600px) {
    .animated-title-urgedenia {
      font-size: 2.5rem;
    }
  
    .animated-text-urgedenia {
      font-size: 1.5rem;
    }
}
  
@media (min-width: 1024px) {
    .animated-title-urgedenia {
      font-size: 2rem;
    }
  
    .animated-text-urgedenia {
      font-size: 1.6rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}
  
.animated-section-urgentedenia {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
  
.section-title-urgentedenia {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInUp 1.2s ease-out forwards;
}
  
.section-text-urgentedenia {
    font-size: 1.2rem;
    color: #555;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}
  
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
  
@media (min-width: 600px) {
    .section-title-urgentedenia {
      font-size: 2rem;
    }
  
    .section-text-urgentedenia {
      font-size: 1.3rem;
    }
}
  
@media (min-width: 1024px) {
    .section-title-urgentedenia {
      font-size: 2.4rem;
    }
  
    .section-text-urgentedenia {
      font-size: 1.5rem;
    }
}
  </pre></body></html>