/* paleta de cores: Azul: #440BBF, #3B0AA6, #340B8C  | Branco: #F2F2F2  */
        :root {
            --primary-color: #440BBF;
            --secondary-color: #3B0AA6;
            --accent-color: #340B8C;
            --text-color: #F2F2F2;
            --light-gray: #3B0AA6;
            --border-color: #340B8C;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            color: rgb(255, 255, 255) !important; 
            font-family: 'Archivo Black', sans-serif;
            text-shadow: 
            0 0 5px #00f;
        }

        body {
            background-color: black;
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            padding: 20px;
            margin: 0 auto;
            background-color: transparent;
        }

        .entry {
            position: relative;
            margin-bottom: 20px;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 5px;
            border: 1px solid var(--border-color);
            color: black;
        }

        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        h1 {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--text-color);
        }

        h2 {
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--text-color);
        }

        h3 {
            margin-top: 20px;
            font-size: 1.2em;
        }

        .form-group {
            margin-bottom: 15px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: black;
        }

        input, select, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 16px;
            color: white !important;
            background-color: transparent !important;
            backdrop-filter: blur(6px);
            text-shadow: none;
        }
        
        #input_check_education, #input_check_job{
            -webkit-appearance: none;
            width: 5%;
            height: 100%;
            margin-left: 2%;
            border-radius: 5px;
            position: relative;
            background-color: #ffffff !important;
        }

        #input_check_education:checked ,#input_check_job:checked{
            background-color: #340B8C !important;
        }
    
        #input_check_education:checked::after, #input_check_job:checked::after{
            content: "✔"; 
            color:#F2F2F2;
            text-align: center;
            font-size: 15px;
            position: absolute;
            top: 0;
            left: 5px;
        }

        #input_check_education:hover , #input_check_job:hover{
            cursor: pointer;
        }

        .date_going_conc{
            display: flex;
            align-items: center;
        }
        
        @media (orientation: portrait) {
            .date_going_conc{
                align-items: end;
                gap: 0;
            }
            
            .responsive_display{
                display: flex !important;
                align-items: center !important;
                margin-top: 1%;
            }

            .responsive_none{
                display: none;
            }

        }

        #languages_select{
            background-color: var(--primary-color) !important;
            cursor: pointer;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }

        .col {
            flex: 1;
            min-width: 250px;
            padding: 0 10px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: var(--accent-color);
            transform: scale(1.05);
        }

        .btn-secondary {
            background-color: #6c757d;
        }

        .btn-secondary:hover {
            background-color: #5a6268;
        }

        .btn-danger {
            background-color: #dc3545;
        }

        .btn-danger:hover {
            background-color: #c82333;
        }

        .btn-group {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .btn-small {
            padding: 5px 10px;
            font-size: 14px;
        }

        .section-container {
            margin-bottom: 30px;
            padding: 15px;
            border-radius: 5px;
            color: white;
        }

        /* Alternate section colors */
        #resume-form > section {
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 20px;
            color: white;
            background-color: #3f09ac;
        }

        /* #resume-form > section:nth-child(odd) {
            background-color: black;
        }

        #resume-form > section:nth-child(even) {
            background-color: #3f09ac;
        } */

        /* Ensure all inputs and labels are visible */
        #resume-form label {
            color: white;
        }

        #resume-form input,
        #resume-form select,
        #resume-form textarea {
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-color: white;
        }


        .entry {
            position: relative;
            margin-bottom: 20px;
            padding: 15px;
            background-color: transparent !important;
            border: none;
        }

        .remove-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 0 !important;
            background-color: #dc3545;
            color: white;
            border: none;
            border-radius: 25px;
            width: 30px;
            height: 30px;
            font-size: 15px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .remove-btn:hover{
            transform: scale(1.25);
        }

        .add-btn {
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            #navegation_up > div:last-child {
                display: flex;
                align-items: center;
            }

            #up_link {
                display: none;
            }

            #botao_sanduiche {
                display: block;
            }

            #up_link_responsivo {
                display: none;
            }

            .col {
                flex: 100%;
                margin-bottom: 15px;
            }
            
            .btn-group {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

        /* Resume Preview Styles */
        #resume-preview {
            display: none;
            margin-top: 40px;
            padding: 30px;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 5px;
        }

        .resume-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .resume-header h2 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 5px;
            border-bottom: none;
        }

        .resume-contact {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .resume-section {
            margin-bottom: 25px;
        }

        .resume-section h3 {
            border-bottom: 1px solid var(--primary-color);
            text-shadow: 0 0 5px #00f;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }

        .resume-item {
            margin-bottom: 15px;
        }

        .resume-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        .resume-item-title {
            font-weight: bold;
        }

        .resume-item-date {
            color: #666;
        }

        .resume-item-subtitle {
            font-style: italic;
            margin-bottom: 5px;
        }

        /* Header Styles */
         header {
            color: white;
            width: 100%;
            height: 10vh;
            z-index: 1000;
            top: 0;
            left: 0;
            display: flex;
            justify-content: center;
        }

        #navegation_up {
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: none;
            border: none;
            background-color: #3f09ac;
        }

        #navegation_up>a{
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-y: hidden;
        }

        #navegation_up>a>img{
            width: auto;
            padding-top: 15%;
            height: 200%;
            border: none;
            animation: pulse_img 2s infinite linear;
        }

        @keyframes pulse_img {
            0%{
                transform: scale(1);
            }

            50%{
                transform: scale(1.18);
            }

            100%{
                transform: scale(1);
            }
        }

        /* Footer Styles */
        
        #sitemap{
            height: 30vh;
            width: 100% !important;
            text-align: center;
            font-size: 0.4rem ;
            margin-top: 5%;
            border-top: 2px solid white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        #section_final{
            width: 100%;
            height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }

        #section_final>a{
            height: 80%;
            width: 100%;
            border: none;
            margin: 0;
            padding: 0;
        }
        
        #section_final>a>img{
            height: 100%;
            width: auto;
            border: none;
            animation: pulse_img 2s infinite ease-in-out;
        }

        #link_up_logo{
            font-size: 1.2rem !important;
            height: 20%;
            width: 80%;
            text-align: center;
            animation: bottom_link 2s infinite ease-in-out;
        }

        @keyframes bottom_link {
            0%{
                transform: translateY(10px);
            }

            50%{
                transform: translateY(0px);
            }

            100%{
                transform: translateY(10px);
            }

        }

        @media (orientation: portrait) {

            #section_final{
                justify-content: center;

                margin-bottom: 5%;
            }

            #section_final>a{
                height: 50%;
                width: 100%;
                border: none;
            }
             #section_final>a>img{
                height: 100%;
                width: auto;
                border: none;
            }
            
        }

        #direitos_footer{
            width: 100%;
            height: 10%;
            background-color: #3f09ac;
            display: flex;
            font-size: 0.8rem;
            justify-content: center;
            align-items: center;
            padding-bottom: 1%;
            padding-top: 1%;

        }