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

      :root {
        --primary-dark: #0f0f1a;
        --secondary-dark: #1a1a2e;
        --accent-dark: #16213e;
        --microsoft-blue: #0078d4;
        --azure-blue: #008ad7;
        --tech-purple: #6a4c93;
        --success-green: #00d4aa;
        --text-primary: #ffffff;
        --text-secondary: #b8c5d1;
        --text-muted: #7a8794;
        --gradient-main: linear-gradient(
          135deg,
          #0f0f1a 0%,
          #1a1a2e 50%,
          #16213e 100%
        );
        --gradient-card: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        --gradient-accent: linear-gradient(135deg, #0078d4 0%, #6a4c93 100%);
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background: var(--gradient-main);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* Navegación */
      .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(15, 15, 26, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(120, 135, 148, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
      }

      .navbar.scrolled {
        background: rgba(15, 15, 26, 0.98);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      }

      .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .logo:hover {
        transform: scale(1.05);
      }



      .logo-text {
        color: var(--text-primary);
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.5px;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 40px;
        align-items: center;
      }

      .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--microsoft-blue);
        transition: width 0.3s ease;
      }

      .nav-links a:hover {
        color: var(--text-primary);
      }

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

      .cta-button {
        background: var(--gradient-accent);
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
      }

      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 120, 212, 0.3);
      }

      /* Hero Section */
      .hero {
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
      }

      .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #ffffff 0%, #b8c5d1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
      }

      .hero .subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--microsoft-blue);
        font-weight: 600;
        margin-bottom: 15px;
      }

      .hero p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Secciones principales */
      .section {
        padding: 60px 0;
        position: relative;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-primary);
      }

      .section-header p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto;
      }

      /* Contenido del aviso */
      .privacy-content {
        background: var(--gradient-card);
        border: 1px solid rgba(120, 135, 148, 0.1);
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 40px;
        transition: all 0.3s ease;
      }

      .privacy-content:hover {
        border-color: var(--microsoft-blue);
        box-shadow: 0 10px 30px rgba(0, 120, 212, 0.1);
      }

      .privacy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(120, 135, 148, 0.1);
      }

      .privacy-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
      }

      .privacy-section h3 {
        color: var(--microsoft-blue);
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .privacy-section h3::before {
        content: "🔒";
        font-size: 1.2rem;
      }

      .privacy-section h4 {
        color: var(--text-primary);
        font-size: 1.2rem;
        font-weight: 600;
        margin: 25px 0 15px 0;
      }

      .privacy-section p {
        color: var(--text-secondary);
        margin-bottom: 15px;
        line-height: 1.7;
      }

      .privacy-section ul {
        margin-left: 20px;
        margin-bottom: 20px;
      }

      .privacy-section li {
        color: var(--text-secondary);
        margin-bottom: 8px;
        line-height: 1.6;
      }

      .highlight-box {
        background: var(--secondary-dark);
        border: 1px solid var(--microsoft-blue);
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
        border-left: 4px solid var(--microsoft-blue);
      }

      .highlight-box p {
        color: var(--text-primary);
        margin-bottom: 10px;
        font-weight: 500;
      }

      .contact-info {
        background: var(--gradient-accent);
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        margin: 40px 0;
      }

      .contact-info h3 {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 15px;
      }

      .contact-info p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 10px;
      }

      /* Footer */
      .footer {
        background: var(--primary-dark);
        padding: 60px 0 30px;
        border-top: 1px solid rgba(120, 135, 148, 0.1);
      }

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

      .footer-section h3 {
        color: var(--text-primary);
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 20px;
      }

      .footer-section p,
      .footer-section a {
        color: var(--text-secondary);
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
        transition: color 0.3s ease;
      }

      .footer-section a:hover {
        color: var(--microsoft-blue);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(120, 135, 148, 0.1);
        color: var(--text-muted);
      }

      /* Responsive */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

        .privacy-content {
          padding: 30px 20px;
          margin: 20px;
        }

        .contact-info {
          padding: 25px 20px;
          margin: 30px 20px;
        }

        .footer-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }
      }

      /* Animaciones */
      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Breadcrumb */
      .breadcrumb {
        background: var(--secondary-dark);
        padding: 15px 0;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(120, 135, 148, 0.1);
      }

      .breadcrumb-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--text-secondary);
      }

      .breadcrumb a {
        color: var(--microsoft-blue);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .breadcrumb a:hover {
        color: var(--text-primary);
      }

      .breadcrumb span {
        color: var(--text-muted);
      }

.footer-section .contact-heading {
  margin-top: 20px;
}