 * {
            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:hover {
            background-color: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(116, 172, 223, 0.3);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            color: var(--blue-dark);
            cursor: pointer;
        }

        /* Container do formulário */
        .form-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .form-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--blue-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .form-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;
        }

        .form-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
        }

        .proposal-form {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .form-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--blue-dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .form-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--blue-light);
            border-radius: 2px;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1 1 300px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--blue-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blue-light);
            box-shadow: 0 0 0 3px rgba(116, 172, 223, 0.2);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .radio-group {
            margin-bottom: 15px;
        }

        .radio-group p {
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--blue-dark);
        }

        .radio-options {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .radio-option input {
            width: auto;
        }

        .submit-btn {
            background-color: var(--blue-light);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 30px auto 0;
            min-width: 200px;
        }

        .submit-btn:hover {
            background-color: var(--blue-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(116, 172, 223, 0.4);
        }

        .form-footer {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background: rgba(116, 172, 223, 0.1);
            border-radius: 10px;
        }

        .form-footer p {
            color: var(--blue-dark);
            font-size: 0.9rem;
        }

        /* Modal de confirmação */
        .confirmation-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background-color: var(--white);
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            padding: 40px;
            text-align: center;
            position: relative;
        }

        .modal-icon {
            font-size: 3rem;
            color: var(--blue-light);
            margin-bottom: 20px;
        }

        .modal-content h2 {
            font-family: 'Playfair Display', serif;
            color: var(--blue-dark);
            margin-bottom: 15px;
        }

        .modal-content p {
            color: var(--gray);
            margin-bottom: 25px;
        }

        .modal-close {
            background-color: var(--blue-light);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background-color: var(--blue-dark);
        }

        /* Responsividade */
        @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;
            }
            
            .form-header h1 {
                font-size: 2.2rem;
            }
            
            .proposal-form {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .form-header h1 {
                font-size: 1.8rem;
            }
            
            .form-section h2 {
                font-size: 1.3rem;
            }
            
            .radio-options {
                flex-direction: column;
                gap: 10px;
            }
        }