        * {
           margin: 0; 
           padding: 0; 
           box-sizing: border-box;
        }

        :root {
          --blue-light: #74ACDF;
          --blue-dark: #1E3E6B;
          --white: #FFFFFF;
          --gold: #F9B234;
          --gray-light: #f2f5f7;
          --gray: #6c757d;
          --gray-dark: #343a40;
        }

        body {
          font-family: 'Montserrat', sans-serif;
          background-color: var(--gray-light);
          color: var(--gray-dark);
          line-height: 1.6;
          overflow-x: hidden;
        }

        /* Padrão argentino de fundo */
        .argentine-pattern {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: 
            linear-gradient(90deg, transparent 95%, rgba(116, 172, 223, 0.1) 95%),
            linear-gradient(transparent 95%, rgba(116, 172, 223, 0.1) 95%);
          background-size: 30px 30px;
          z-index: -1;
          opacity: 0.3;
        }

        .navbar {
          background-color: var(--white);
          padding: 15px 0;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          position: sticky;
          top: 0;
          z-index: 100;
        }

        .nav-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0 20px;
        }

        .logo {
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .logo-text {
          font-family: 'Playfair Display', serif;
          font-weight: 700;
          font-size: 1.5rem;
          color: var(--blue-dark);
        }

        .logo-imagem-top, img {
          margin-left: 4px;
          width: 80px;
        }
        
        .argentine-flag {
          width: 24px;
          height: 24px;
          display: flex;
          flex-direction: column;
          border-radius: 2px;
          overflow: hidden;
          box-shadow: 0 0 2px rgba(0,0,0,0.2);
        }

        .flag-line {
          height: 8px;
          width: 100%;
        }

        .flag-line.blue {
          background-color: var(--blue-light);
        }

        .flag-line.white {
          background-color: var(--white);
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .flag-line.white i {
          color: var(--gold);
          font-size: 6px;
        }

        .navbar ul {
          list-style: none;
          display: flex;
          gap: 30px;
          align-items: center;
        }

        .navbar li {
          position: relative;
        }

        .navbar a {
          text-decoration: none;
          color: var(--gray-dark);
          font-weight: 500;
          font-size: 1rem;
          transition: all 0.3s ease;
          padding: 5px 0;
          position: relative;
        }

        .navbar a:not(.cta-button):hover {
          color: var(--blue-light);
        }

        .navbar a:not(.cta-button)::after {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          bottom: 0;
          left: 0;
          background-color: var(--blue-light);
          transition: width 0.3s ease;
        }

        .navbar a:not(.cta-button):hover::after {
          width: 100%;
        }

        .cta-button {
            background-color: var(--blue-light);
            color: white !important;
            padding: 18px 45px;
            border-radius: 999px;
            font-size: 18px;
            font-weight: 600;
            box-shadow: 0 2px 6px rgba(116, 172, 223, 0.4);
            transition: all 0.3s ease;
        }

        .cta-button::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          transition: opacity 0.3s ease;
          z-index: -1;
        }

        .cta-button:hover {
        background-color: var(--blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(116, 172, 223, 0.3);
        }

        .cta-button:hover::before {
          opacity: 1;
        }

        .cta-button:active {
          transform: translateY(1px);
          box-shadow: 0 2px 0 rgba(30, 62, 107, 0.3);
        }

        .cta-button::after {
          display: none;
        }

        .mobile-menu {
          display: none;
          font-size: 1.5rem;
          color: var(--blue-dark);
          cursor: pointer;
        }

        /* Estilos da página de contato */
        .contact-container {
          max-width: 1200px;
          margin: 80px auto;
          padding: 0 20px;
        }

        .contact-header {
          text-align: center;
          margin-bottom: 60px;
        }

        .contact-header h1 {
          font-family: 'Playfair Display', serif;
          font-size: 2.8rem;
          color: var(--blue-dark);
          margin-bottom: 15px;
          position: relative;
          display: inline-block;
        }

        .contact-header h1::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: linear-gradient(90deg, var(--blue-light), var(--blue-dark));
          border-radius: 2px;
        }

        .contact-header p {
          font-size: 1.2rem;
          color: var(--gray);
          max-width: 600px;
          margin: 30px auto 0;
        }

        .contact-content {
          display: flex;
          flex-wrap: wrap;
          gap: 50px;
          align-items: center;
          justify-content: center;
        }

        .profile-section {
          flex: 1;
          min-width: 300px;
          max-width: 450px;
          text-align: center;
          background: var(--white);
          padding: 40px;
          border-radius: 20px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease;
        }

        .profile-section:hover {
          transform: translateY(-5px);
        }

        .profile-image {
          width: 200px;
          height: 200px;
          border-radius: 50%;
          object-fit: cover;
          margin: 0 auto 25px;
          border: 5px solid var(--blue-light);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .profile-section h2 {
          font-family: 'Playfair Display', serif;
          font-size: 1.8rem;
          color: var(--blue-dark);
          margin-bottom: 10px;
        }

        .profile-section h3 {
          font-size: 1.1rem;
          color: var(--blue-light);
          font-weight: 500;
          margin-bottom: 20px;
        }

        .profile-section p {
          color: var(--gray);
          margin-bottom: 30px;
          line-height: 1.8;
        }

        .social-links {
          display: flex;
          justify-content: center;
          gap: 15px;
          margin-top: 25px;
        }

        .social-link {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: var(--gray-light);
          color: var(--blue-dark);
          font-size: 1.2rem;
          transition: all 0.3s ease;
          text-decoration: none;
        }

        .social-link:hover {
          background: var(--blue-light);
          color: var(--white);
          transform: translateY(-3px);
        }

        .contact-info {
          flex: 1;
          min-width: 300px;
          max-width: 500px;
        }

        .contact-card {
          background: var(--white);
          padding: 40px;
          border-radius: 20px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          margin-bottom: 30px;
        }

        .contact-card h2 {
          font-family: 'Playfair Display', serif;
          font-size: 1.8rem;
          color: var(--blue-dark);
          margin-bottom: 25px;
          position: relative;
          padding-bottom: 10px;
        }

        .contact-card h2::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 50px;
          height: 3px;
          background: var(--blue-light);
          border-radius: 2px;
        }

        .contact-details {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }

        .contact-item {
          display: flex;
          align-items: flex-start;
          gap: 15px;
        }

        .contact-icon {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: var(--gray-light);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--blue-light);
          font-size: 1.2rem;
          flex-shrink: 0;
        }

        .contact-text {
          flex: 1;
        }

        .contact-text h3 {
          font-size: 1.1rem;
          color: var(--blue-dark);
          margin-bottom: 5px;
        }

        .contact-text p, .contact-text a {
          color: var(--gray);
          text-decoration: none;
          transition: color 0.3s ease;
        }

        .contact-text a:hover {
          color: var(--blue-light);
        }

        /* Responsividade */
        @media (max-width: 992px) {
          .contact-content {
            flex-direction: column;
          }
          
          .profile-section, .contact-info {
            max-width: 100%;
          }
        }

        @media (max-width: 768px) {
          .navbar ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            gap: 15px;
          }
          
          .navbar ul.show {
            display: flex;
          }
          
          .mobile-menu {
            display: block;
          }
          
          .contact-header h1 {
            font-size: 2.2rem;
          }
        }

        @media (max-width: 480px) {
          .contact-header h1 {
            font-size: 1.8rem;
          }
          
          .profile-section, .contact-card {
            padding: 25px;
          }
          
          .profile-image {
            width: 150px;
            height: 150px;
          }
        }