   * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Open Sans', sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
      }

      /* Contenedor principal */
      .main-container {
        width: 100vw;
        min-height: 100vh;
        background: none;
        background-attachment: fixed;
        position: relative;
      }

      /* NAVBAR FIJO - IGUAL QUE LAS OTRAS PÁGINAS */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background:rgba(251,202,10,0.7);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 20px;
        transition: all 0.3s ease;
      }

      .nav-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
      }

      .logo {
        display: flex;
        align-items: center;
      }

      .logo-img {
        height: 80px;
        width: auto;
        transition: transform 0.3s ease;
      }

      .logo-img:hover {
        transform: scale(1.1);
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
      }

      .nav-links li a {
        text-decoration: none;
        color: #333;
        font-weight: 600;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-links li a:hover {
        color: #555;
      }

      .nav-links li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #666;
        transition: width 0.3s ease;
      }

      .nav-links li a:hover::after {
        width: 100%;
      }

      /* Hamburger menu */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.3s;
      }

      .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }

      /* Hero Section con imagen de fondo */
      .contact-hero {
        height: 50vh;
        min-height: 400px;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('assets/contacto.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        margin-top: 117px; /* Espacio para el navbar */
      }

      .contact-hero h1 {
        font-family: 'Archivo', serif;
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: bold;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
        animation: fadeInUp 1s ease;
      }

      /* Sección de contacto */
      .contact-section {
        padding: 80px 0;
        background: #f8f9fa;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
      }

      .contact-card {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

      .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #fbca0a, #f57f17);
        transition: left 0.3s ease;
      }

      .contact-card:hover::before {
        left: 0;
      }

      .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .contact-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px;
        display: block;
        transition: transform 0.3s ease;
      }

      .contact-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .contact-card:hover .contact-icon {
        transform: scale(1.1);
      }

      .contact-title {
        font-size: 1.4rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
        font-family: 'Archivo', serif;
      }

      .contact-info {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
      }

      .contact-info a {
        color: #fbca0a;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
      }

      .contact-info a:hover {
        color: #f57f17;
        text-decoration: underline;
      }

      /* Estilos para redes sociales */
      .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
      }

      .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
      }

   

      .social-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }

      /* Footer - IGUAL QUE LAS OTRAS PÁGINAS */
      .footer {
        background: #333;
        color: white;
        padding: 40px 0 20px;
        margin-top: 60px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .footer-section h3,
      .footer-section h4 {
        margin-bottom: 15px;
        color: #fbca0a;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 8px;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #555;
        color: #ccc;
      }

      /* Animaciones */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* RESPONSIVE */
      @media (max-width: 768px) {
        .hamburger {
          display: flex;
        }
        
        .nav-links {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: rgba(251,202,10,0.98);
          flex-direction: column;
          padding: 20px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          transform: translateY(-100%);
          opacity: 0;
          visibility: hidden;
          transition: all 0.3s ease;
        }
        
        .nav-links.active {
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
        }
        
        .nav-links li {
          margin: 10px 0;
        }
        
        .nav-links li a {
          font-size: 1.2rem;
        }

        .contact-hero {
          margin-top: 80px;
          height: 40vh;
          min-height: 300px;
        }

        .contact-hero h1 {
          font-size: 2.5rem;
        }

        .contact-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }

        .contact-card {
          padding: 30px 20px;
        }

        .contact-icon {
          width: 48px;
          height: 48px;
          margin-bottom: 15px;
        }

        .contact-title {
          font-size: 1.2rem;
        }
      }

      @media (max-width: 480px) {
        .contact-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .contact-hero h1 {
          font-size: 2rem;
        }

        .contact-section {
          padding: 60px 0;
        }

        .contact-card {
          padding: 25px 15px;
        }

        .contact-icon {
          font-size: 2.5rem;
          margin-bottom: 15px;
        }

        .contact-title {
          font-size: 1.1rem;
          margin-bottom: 10px;
        }

        .contact-info {
          font-size: 0.9rem;
        }
      }