<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Estilos para domain.com - Servicio de AuditorÃ­a Financiera
 * Paleta de colores:
 * - Fondo: gradiente de indigo (#3f0d75) a violeta (#a844a1)
 * - Acentos: neÃ³n verde (#00f5a0), coral (#ff6f61), grafito (#2e2e2e)
 * - Texto: gris claro (#f1f1f1)
 * - TÃ­tulos: blanco (#ffffff)
 */

/* Reseteo y estilos generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg-start: #3f0d75;
  --color-bg-end: #a844a1;
  --color-accent-1: #00f5a0;
  --color-accent-2: #ff6f61;
  --color-dark: #2e2e2e;
  --color-text: #f1f1f1;
  --color-heading: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.7);
  --transition: all 0.3s ease-in-out;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-accent-1);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

a {
  color: var(--color-accent-1);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent-2);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 6rem 0;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.icon {
  width: 24px;
  height: 24px;
  fill: var(--color-accent-1);
}

/* Botones */
.btn {
  display: inline-block;
  background: var(--color-dark);
  color: var(--color-text);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(to right, var(--color-accent-1), #4adfb8);
  color: var(--color-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--color-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent-1);
  color: var(--color-accent-1);
}

.btn-outline:hover {
  background: var(--color-accent-1);
  color: var(--color-dark);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  background: linear-gradient(135deg, rgba(78, 17, 144, 0.8) 0%, rgba(168, 68, 161, 0.8) 100%);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--color-accent-1);
}

.header.scrolled {
  padding: 0.75rem 0;
  background: linear-gradient(135deg, rgba(46, 9, 87, 0.95) 0%, rgba(128, 52, 122, 0.95) 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo h1 {
  font-size: 1.75rem;
  margin: 0 0 0 0.75rem;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 1rem;
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--color-accent-1);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 1.5rem;
}

/* SecciÃ³n de bienvenida */
.welcome-section {
  padding: 0;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.welcome-background {
  background-image: url('./img/V50wWX.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-background:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(63, 13, 117, 0.85) 0%, rgba(168, 68, 161, 0.85) 100%);
}

.welcome-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
}

.welcome-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.welcome-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.welcome-content .btn {
  font-size: 1.1rem;
  padding: 0.75rem 2.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .welcome-content h1 {
    font-size: 2.5rem;
  }
  
  .welcome-content .lead {
    font-size: 1.25rem;
  }
}

/* SecciÃ³n Sobre Nosotros */
.about-section {
  background-color: rgba(0, 0, 0, 0.15);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-text, .about-image {
  flex: 1 0 100%;
}

.about-text {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-text, .about-image {
    flex: 0 0 48%;
  }
  
  .about-text {
    margin-bottom: 0;
  }
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* SecciÃ³n Ventajas */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
}

.advantage-icon {
  background-color: rgba(0, 245, 160, 0.05);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.advantage-icon .icon {
  width: 40px;
  height: 40px;
}

.advantage-card:hover .advantage-icon {
  background-color: rgba(0, 245, 160, 0.15);
}

/* SecciÃ³n Servicios */
.services-section {
  background-color: rgba(0, 0, 0, 0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
}

.service-icon {
  background-color: rgba(255, 111, 97, 0.05);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-icon .icon {
  width: 40px;
  height: 40px;
  fill: var(--color-accent-2);
}

.service-card:hover .service-icon {
  background-color: rgba(255, 111, 97, 0.15);
}

.service-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* SecciÃ³n GalerÃ­a */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.gallery-item img {
  transition: var(--transition);
  transform: scale(1.01);
  border-radius: 10px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* SecciÃ³n Testimonios */
.testimonials-section {
  background-color: rgba(0, 0, 0, 0.15);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1rem;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--color-accent-1);
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* SecciÃ³n Contacto */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info, .contact-form {
  flex: 1 0 100%;
}

.contact-info {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-info, .contact-form {
    flex: 0 0 48%;
  }
  
  .contact-info {
    margin-bottom: 0;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 245, 160, 0.3);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-column p {
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--color-accent-1);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-dark);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  max-width: 400px;
  z-index: 9999;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-popup.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-popup p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-popup .btn {
  margin-top: 0.5rem;
}

/* Medias Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Animaciones CSS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 245, 160, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 245, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 245, 160, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* PÃ¡ginas legales */
.policy-section {
    padding: 8rem 0;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-content {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.legal-document {
    border: 2px solid var(--color-accent-1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.legal-document:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
}

.legal-document h2 {
    color: var(--color-accent-1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.policy-content h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.policy-content h2:after {
    margin: 0.5rem 0 1.5rem;
    width: 50px;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
    text-align: center;
} </pre></body></html>