<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;700&amp;family=Quicksand:wght@400;700&amp;display=swap');

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: #333;
    background-color: #070707; /* Color de fondo */
    overflow-x: hidden; /* Evita el desplazamiento horizontal */
}

.hidden {
    display: none;
}

header {
    background-color: rgba(0, 0, 0, 0.1); /* Tinte oscuro con transparencia */
    padding: 20px 45px; /* Ajusta el padding para que sea similar al de la imagen y reduce espacio en un 5% */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Fija el header en la parte superior */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Asegura que el header estÃ© por encima del contenido */
    box-sizing: border-box; /* Asegura que el padding estÃ© incluido en el tamaÃ±o del header */
}

header .logo {
    color: #fff; /* Color del logo */
    font-size: 24px;
    text-decoration: none;
    font-family: 'Muli', sans-serif;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 38px; /* Mayor separaciÃ³n entre los elementos del menÃº */
}

header nav ul li a {
    color: #fff; /* Color del texto del menÃº */
    text-decoration: none;
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    text-transform: uppercase; /* Texto en mayÃºsculas */
}

header nav ul li a:hover {
    text-decoration: underline; /* Subraya el enlace al pasar el mouse */
}

.hero {
    height: 100vh;
    background-image: url('/mnt/data/image.png'); /* Ruta de tu imagen de fondo */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(31, 31, 31, 0.7); /* Fondo semitransparente */
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Oscurece un poco la imagen de fondo para mayor contraste */
    z-index: 1;
}

.intro, .gallery, .contact, .services-content, .portfolio-content {
    padding: 60px 20px;
    text-align: center;
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-images img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-images img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #1F1F1F; /* Color del fondo del footer */
    color: #F0F1EC; /* Color del texto del footer */
    text-align: center;
    padding: 20px 0;
}

/* Estilos especÃ­ficos para la pÃ¡gina About Us */
.about-hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #F0F1EC;
    background-color: #1F1F1F;
    position: relative;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(31, 31, 31, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.about-hero h1 {
    font-size: 48px;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    text-align: left;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-text h2 {
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
    color: #89847E;
}

.about-text p {
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #333;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos especÃ­ficos para la pÃ¡gina Services */
.services-hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #F0F1EC;
    background-color: #1F1F1F;
    position: relative;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(31, 31, 31, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.services-hero h1 {
    font-size: 48px;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.service-item {
    max-width: 800px;
    margin-bottom: 40px;
}

.service-item h2 {
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
    color: #89847E;
}

.service-item p {
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Estilos especÃ­ficos para la pÃ¡gina Portfolio */
.portfolio-hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #F0F1EC;
    background-color: #1F1F1F;
    position: relative;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(31, 31, 31, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.portfolio-hero h1 {
    font-size: 48px;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.portfolio-content {
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, 0.7);
    color: #F0F1EC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h2 {
    font-size: 24px;
    margin: 10px 0;
    font-family: 'Quicksand', sans-serif;
}

.portfolio-overlay p {
    font-size: 16px;
    font-family: 'Muli', sans-serif;
    margin: 0;
}

/* Estilos especÃ­ficos para la pÃ¡gina Contact */
.contact-hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #F0F1EC;
    background-color: #1F1F1F;
    position: relative;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(31, 31, 31, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.contact-hero h1 {
    font-size: 48px;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    text-align: left;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-info h2 {
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
    color: #89847E;
}

.contact-info p {
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #333;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-form h2 {
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
    color: #89847E;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-family: 'Muli', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

.contact-form button.cta-button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #E91E63; /* Color del botÃ³n */
    color: #F0F1EC;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Muli', sans-serif;
}

.contact-form button.cta-button:hover {
    background-color: #d81b60; /* Color del botÃ³n al pasar el ratÃ³n */
}
</pre></body></html>