*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

:root{
    --color-pri: #000;
    --color-s: #12f1;
    --color-tri: #ffffff;
    --botao: #f12;
    --botao-h: #bc483e;
}

html{
    scroll-behavior: smooth;
}
body{
    background-color: #000000;
    min-height: 100vh;
}

.cabecalho{
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
    box-shadow: 3px 4px 9px rgba(255, 227, 227, 0.35);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-pri);
    z-index: 100;
}

.nav-bar{
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    height: 68px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.82);
}

.nav-links-wrapper{
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-actions{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    margin-left: auto;
}

.nav-toggle span{
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-open .nav-toggle span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2){
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

.account-dropdown{
    position: relative;
}

.account-menu{
    display: none;
    position: fixed;
    top: 90px;
    right: 28px;
    background: rgba(10,10,20,0.98);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 0.5rem 0;
    width: 240px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    z-index: 220;
}

.account-menu::before{
    content: '';
    position: absolute;
    top: -10px;
    right: 18px;
    width: 16px;
    height: 16px;
    background: rgba(10,10,20,0.98);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255,255,255,0.12);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.account-dropdown.open .account-menu{
    display: flex;
    flex-direction: column;
}

.account-menu-item{
    display: block;
    width: 100%;
    padding: 0.95rem 1.2rem;
    color: #d6dde7;
    text-align: left;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.account-menu-item:hover{
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.account-settings-modal{
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.78);
    padding: 1.5rem;
}

.account-settings-modal.open{
    display: flex;
}

.modal-panel{
    width: min(560px, 100%);
    background: rgba(12,12,20,0.98);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}

.modal-close{
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-text{
    color: #b8c3d0;
    margin-top: 0.5rem;
    margin-bottom: 1.6rem;
}

.settings-form{
    display: grid;
    gap: 1rem;
}

.settings-form label{
    color: #9bb4ce;
    font-size: 0.95rem;
}

.settings-form input{
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(20,20,30,0.96);
    color: #fff;
}

.modal-feedback{
    min-height: 1.35rem;
    color: #8af2aa;
    margin-top: 1rem;
}

.lista{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-left: auto;
    white-space: nowrap;
}

.item-lista{
    display: flex;
    justify-content: center;
}
.item-lista a{
    color: var(--color-tri);
    transition: .3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
}
.item-lista a:hover{
    color: #fff;
    background-color: rgba(255,255,255,0.08);
}

.btn-open{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: var(--botao);
    color: #fff;
    border-radius: 12px;
    transition: background-color .3s ease, transform .3s ease;
}

.btn-open:hover{
    background-color: var(--botao-h);
    transform: translateY(-1px);
}

.account-icon{
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,18,18,0.95), rgba(30,30,130,0.9));
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(255,18,18,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-icon:hover{
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255,18,18,0.35);
}

.account-icon{
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,18,18,0.95), rgba(30,30,130,0.9));
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(255,18,18,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-icon:hover{
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255,18,18,0.35);
}

.logo{
    font-size: 1.45rem;
    font-weight: 900;
}

.main{
    padding-top: 100px;
}

.section-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.section-container{
    padding: 6rem 1.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-titulo{
    color: rgb(18, 31, 211);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitulo{
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.05;
}
.section-subtitulo span{
    color: #5a5353;
}

.section-subtitulo .cursor{
    display: inline-block;
    margin-left: 0.25rem;
    color: #5a5353;
    animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor{
    0%, 100%{ opacity: 1; }
    50%{ opacity: 0; }
}

.section-descrital{
    margin-top: 1rem;
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d6dde7;
}

.section-btn{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.section-btn-1,
.section-btn-2{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 600;
}

.section-btn-1{
    background-color: var(--botao);
    border: none;
    color: #fff;
}

.section-btn-1:hover{
    background-color: var(--botao-h);
}

.section-btn-2{
    background-color: transparent;
    color: var(--botao);
    border: 2px solid var(--botao);
}

.section-btn-2:hover{
    background-color: var(--botao);
    color: #fff;
}

.section-image img{
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
}

.section-image,
.section-image-2{
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-texto{
    margin-left: 0;
}

.secondary-section .section-texto{
    order: 2;
}

.secondary-section .section-image-2{
    order: 1;
}

.section-subtitulos{
    color: #d6dde7;
    font-size: clamp(2rem, 3vw, 3rem);
}

.imagem-2{
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
}

.Thema{
    margin-bottom: 2rem;
}

.section-intro{
    color: #d6dde7;
    font-size: 1.2rem;
    margin-top: 0.75rem;
}

.cards{
    display: grid;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.card{
    background-color: #121212;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    border: 2px solid var(--botao);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.card img{
    width: 70px;
    margin-bottom: 1rem;
}

.card h2{
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 1.4rem;
}

.card p{
    line-height: 1.8;
    color: #d6dde7;
}

/* Estilos para os FEATURE CARDS (Porque escolher a AirNet) */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(20, 120, 200, 0.1), rgba(40, 150, 220, 0.06));
    border: 1px solid rgba(79, 200, 255, 0.2);
    padding: 2.2rem 2rem;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, rgba(20, 140, 220, 0.15), rgba(40, 170, 240, 0.1));
    border: 1px solid rgba(79, 200, 255, 0.4);
    box-shadow: 0 12px 32px rgba(79, 200, 255, 0.15);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #b8e0ff;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #d6e6f5;
    line-height: 1.6;
}

.highlight-section{
    margin-top: 2rem;
}

.highlight-cards{
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}


.overlay-card{
    width: 400px;
    position: relative;
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;

}

.overlay-card::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}

.overlay-card-text{
    position: relative;
    padding: 1.5rem;
    color: #fff;
    z-index: 1;
}

.overlay-card-text h3{
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.overlay-card-text p{
    line-height: 1.7;
    color: #e8e8e8;
}

.footer{
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-column h2,
.footer-column h3{
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p,
.footer-column a{
    display: block;
    margin-bottom: 0.65rem;
    color: #d6dde7;
    font-size: 0.95rem;
}

.footer-column a:hover{
    color: #fff;
}

.social-links{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: transform 0.2s ease, background 0.2s ease;
    color: #fff;
}

.social-links a:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.18);
}

.social-links svg{
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.form-card{
    background: rgba(24, 24, 24, 0.95);
    padding: 2rem;
    border-radius: 24px;
    max-width: 520px;
    margin: 2rem auto 0;
    border: 1px solid rgba(255,255,255,0.08);
}

.form-box{
    display: grid;
    gap: 1rem;
}

.form-box label{
    font-size: 0.95rem;
    color: #d6dde7;
}

.form-box input{
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background-color: #121212;
    color: #fff;
}

.form-box input:focus{
    outline: 2px solid var(--botao);
}

.profile-header{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.profile-status{
    align-self: center;
}

.status-badge{
    display: inline-block;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(23, 190, 210, 0.16);
    border: 1px solid rgba(23, 190, 210, 0.35);
    color: #b8f6ff;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.profile-grid{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
}

.profile-card{
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.profile-avatar{
    display: flex;
    justify-content: center;
    padding: 2rem 0 0;
}

.profile-avatar img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.16);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.profile-actions{
    margin-top: 2rem;
    text-align: center;
}

.upload-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background-color: rgba(255,18,18,0.95);
    color: #fff;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.upload-label:hover{
    transform: translateY(-2px);
}

.profile-upload{
    display: none;
}

.small-text{
    margin-top: 1rem;
    color: #b8c3d0;
}

.settings-card h2{
    margin-bottom: 1.4rem;
    color: #fff;
}

.field-row{
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.field-row label{
    color: #9bb4ce;
    font-size: 0.95rem;
}

.field-row input{
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(20,20,30,0.96);
    color: #fff;
}

.profile-btns{
    margin-top: 1rem;
}

.section-container{
    position: relative;
    overflow: hidden;
}

.section-container::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 800px;
    height: 100%;
    transform: translateX(-50%);
    background: radial-gradient(circle at top, rgba(23, 190, 210, 0.12), transparent 40%);
    pointer-events: none;
}

.footer{
    background: rgba(8, 8, 10, 0.9);
    backdrop-filter: blur(10px);
}

    #airia-chatbot{
        position: fixed;
        right: 2rem;
        bottom: 2rem;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-end;
        pointer-events: none;
    }

    .airia-button{
        pointer-events: auto;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        border: 1px solid rgba(79, 223, 255, 0.35);
        background: radial-gradient(circle at 30% 30%, rgba(79, 255, 255, 0.18), rgba(7, 18, 44, 0.95));
        color: #e9fbff;
        font-weight: 700;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 0 28px rgba(25, 255, 255, 0.12), inset 0 0 0 1px rgba(255,255,255,0.05);
        transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .airia-button:hover{
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 0 36px rgba(23, 255, 255, 0.22), inset 0 0 0 1px rgba(255,255,255,0.08);
    }

    .airia-logo{
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #ccf7ff;
    }

    .airia-chat-window{
        pointer-events: auto;
        width: min(380px, calc(100vw - 2rem));
        max-height: 520px;
        border-radius: 28px;
        overflow: hidden;
        background: rgba(6, 12, 28, 0.96);
        border: 1px solid rgba(86, 255, 255, 0.16);
        box-shadow: 0 35px 80px rgba(1, 12, 30, 0.55);
        backdrop-filter: blur(18px);
    }

    .airia-header{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.2rem;
        background: linear-gradient(180deg, rgba(18, 163, 243, 0.16), rgba(4, 12, 34, 0.92));
        border-bottom: 1px solid rgba(79, 255, 255, 0.12);
        color: #e8faff;
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .airia-header button{
        border: none;
        background: rgba(255,255,255,0.08);
        color: #f4ffff;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        cursor: pointer;
        display: grid;
        place-items: center;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .airia-header button:hover{
        background: rgba(79, 255, 255, 0.18);
        transform: scale(1.05);
    }

    .airia-messages{
        max-height: 340px;
        overflow-y: auto;
        padding: 1rem 1rem 0.75rem;
        display: grid;
        gap: 1rem;
        background: linear-gradient(180deg, rgba(1, 7, 18, 0.15), rgba(7, 14, 32, 0.96));
    }

    .airia-message{
        display: flex;
        gap: 0.85rem;
        align-items: flex-start;
    }

    .airia-bot .airia-bubble,
    .airia-user .airia-bubble{
        max-width: 100%;
    }

    .airia-bot .airia-bubble{
        background: rgba(4, 18, 40, 0.92);
        border: 1px solid rgba(79, 255, 255, 0.12);
    }

    .airia-user{
        justify-content: flex-end;
    }

    .airia-user .airia-bubble{
        background: rgba(27, 62, 108, 0.95);
        border: 1px solid rgba(57, 148, 224, 0.22);
        margin-left: auto;
    }

    .airia-avatar{
        min-width: 42px;
        min-height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: radial-gradient(circle at top left, #6ef3ff, #0e6bff 65%);
        color: #04182c;
        font-weight: 800;
        letter-spacing: 0.07em;
        box-shadow: 0 0 14px rgba(74, 235, 255, 0.22);
        flex-shrink: 0;
    }

    .airia-bubble{
        padding: 1rem 1.1rem;
        border-radius: 20px;
        color: #e9f8ff;
        line-height: 1.6;
        font-size: 0.96rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    }

    /* loading visual para bolhas sem texto — não é uma mensagem textual */
    .airia-bubble:empty{
        min-height: 28px;
        position: relative;
    }

    .airia-bubble:empty::after {
        content: none;
    }

    .airia-input-area{
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        padding: 1rem;
        background: rgba(6, 12, 24, 0.9);
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .airia-input-area input{
        width: 100%;
        min-height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(79, 255, 255, 0.16);
        background: rgba(10, 18, 34, 0.96);
        color: #e9f9ff;
        padding: 0 1rem;
        font-size: 0.97rem;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .airia-input-area input:focus{
        border-color: rgba(79, 255, 255, 0.35);
        box-shadow: 0 0 24px rgba(79, 255, 255, 0.12);
    }

    .airia-input-area button{
        border: none;
        border-radius: 16px;
        padding: 0 1.2rem;
        background: linear-gradient(135deg, #48f0ff, #2c8cf8);
        color: #04182c;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease, filter 0.2s ease;
    }

    .airia-input-area button:hover{
        transform: translateY(-1px);
        filter: brightness(1.05);
    }

    .nota-flutuante{
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        z-index: 980;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
        background: rgba(7, 15, 28, 0.95);
        border: 1px solid rgba(79, 255, 255, 0.18);
        border-radius: 999px;
        box-shadow: 0 18px 60px rgba(8, 19, 40, 0.55);
        backdrop-filter: blur(12px);
        color: #d6f5ff;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: calc(100vw - 4rem);
        pointer-events: auto;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nota-flutuante.hidden{
        opacity: 0;
        transform: translateY(8px);
        pointer-events: none;
    }

    .nota-flutuante .nota-icone{
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(76, 241, 255, 0.28), rgba(10, 41, 75, 0.92));
        border: 1px solid rgba(79, 255, 255, 0.22);
        display: grid;
        place-items: center;
        color: #d9f9ff;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 0 18px rgba(46, 238, 255, 0.12);
    }

    .nota-flutuante .nota-icone::before{
        content: '⚡';
    }

    .nota-flutuante span{
        display: block;
        max-width: 220px;
    }

.process-card h3,
.feature-card h3,
.benefit-card h3{
    margin-bottom: 1rem;
    color: #fff;
}

.process-card p,
.feature-card p,
.benefit-card p{
    color: #c6d1e0;
    line-height: 1.75;
}

.account-benefits{
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-links-wrapper{
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

@media (max-width: 1200px) {
    .card {
        width: auto;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-card {
        padding: 1.8rem 1.5rem;
    }
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
    }
    .feature-card {
        padding: 1.8rem 1.5rem;
        min-height: 180px;
    }
}

@media (max-width: 820px) {
    .cards {
        grid-template-columns: 1fr;
    }
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cards,
    .highlight-cards {
        grid-template-columns: 1fr;
    }
    .process-card {
        padding: 1.8rem 1.5rem;
        width: 100%;
    }
    .process-card h3 {
        font-size: 1.15rem;
    }
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .feature-card {
        padding: 1.8rem 1.5rem;
        min-height: 160px;
    }
    .feature-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .cards,
    .highlight-cards {
    .cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .cards,
    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .card {
        padding: 1.8rem 1.3rem;
    }
    .card h2 {
        font-size: 1.25rem;
    }
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .profile-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cards,
    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .card {
        padding: 1.6rem 1.2rem;
    }
    .card h2 {
        font-size: 1.15rem;
        margin-bottom: 0.6rem;
    }
    .card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .profile-avatar img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 820px) {
    .nav-bar{
        flex-direction: column;
        align-items: stretch;
    }
    .nav-toggle{
        display: inline-flex;
    }

    .footer-column{
        align-items: center;
        text-align: center;
    }

    .social-links a{
        align-items: center;
    }
    .nav-links-wrapper{
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 1.5rem 1.25rem;
        background: rgba(0,0,0,0.97);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
    }
    .nav-open .nav-links-wrapper{
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }
    .lista{
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }
    .item-lista{
        width: 100%;
    }
    .item-lista a{
        width: 100%;
        padding: 14px 16px;
        border-radius: 18px;
    }
    .nav-actions{
        width: 100%;
        flex-direction: column;
    }
    .nav-actions .btn-open{
        width: 100%;
    }
    .account-icon{
        width: 44px;
        height: 44px;
    }
    .section-grid,
    .footer{
        grid-template-columns: 1fr;
    }
    .section-container{
        padding-top: 7rem;
    }
    .cards,
    .highlight-cards{
        grid-template-columns: 1fr;
    }
    .process-grid,
    .feature-cards,
    .account-benefits{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cards,
    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .card {
        padding: 1.4rem 1rem;
    }
    .card h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .card:hover {
        transform: translateY(-3px);
    }
    .process-card {
        padding: 1.5rem 1.2rem;
        min-height: auto;
        width: 100%;
    }
    .process-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    .process-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem 1.2rem;
        min-height: 140px;
    }
    .feature-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 520px) {
    .section-subtitulo{
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .btn-open,
    .section-btn-1,
    .section-btn-2{
        width: 100%;
        justify-content: center;
    }
    .cards,
    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .card {
        padding: 1.2rem 0.9rem;
        border-radius: 14px;
    }
    .process-card {
        padding: 1.3rem 1rem;
        border-radius: 12px;
        width: 100%;
    }
    .process-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .process-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .feature-card {
        padding: 1.3rem 1rem;
        min-height: 120px;
        border-radius: 12px;
    }
    .feature-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    .card h2 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    .card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }
}


.card p{
    margin-bottom: 0.9rem;
    line-height: 1.75;
    color: #ffffff;
    font-size: 1rem;
}

.card p:last-child{
    margin-bottom: 0;
}
.card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}
.card:hover::after{
    opacity: 1;
}

.card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

section{
    margin-left: 15px;
    margin-right: 16px;
}

/* Estilos para os ÚLTIMOS cards (4º e 5º) */
.cards .card:nth-child(4),
.cards .card:nth-child(5) {
    background: linear-gradient(135deg, rgba(241, 18, 18, 0.15), rgba(30, 30, 130, 0.12));
    border: 2px solid rgba(241, 18, 18, 0.5);
    box-shadow: 0 0 20px rgba(241, 18, 18, 0.15);
    transform: scale(1.02);
}

.cards .card:nth-child(4):hover,
.cards .card:nth-child(5):hover {
    background: linear-gradient(135deg, rgba(241, 18, 18, 0.25), rgba(30, 30, 130, 0.18));
    border: 2px solid rgba(241, 18, 18, 0.7);
    box-shadow: 0 12px 32px rgba(241, 18, 18, 0.25);
    transform: scale(1.05) translateY(-8px);
}

.cards .card:nth-child(4) h2,
.cards .card:nth-child(5) h2 {
    color: #ffa8a8;
    text-shadow: 0 0 16px rgba(241, 18, 18, 0.3);
}

.cards .card:nth-child(4) p,
.cards .card:nth-child(5) p {
    color: #f0d0d0;
}

/* Estilos para os PROCESS CARDS (Como trabalhamos) */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-card {
    background: linear-gradient(135deg, rgba(12, 80, 160, 0.12), rgba(50, 100, 200, 0.08));
    border: 2px solid rgba(79, 190, 255, 0.3);
    padding: 2rem 1.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.process-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(12, 100, 180, 0.18), rgba(50, 120, 220, 0.12));
    border: 2px solid rgba(79, 190, 255, 0.6);
    box-shadow: 0 16px 48px rgba(79, 190, 255, 0.18);
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #a8d8ff;
    text-shadow: 0 0 12px rgba(79, 190, 255, 0.2);
}

.process-card p {
    color: #d6e8f7;
    line-height: 1.8;
    font-size: 1rem;
}

/* Layout para ecrãs maiores: três colunas com largura máxima centralizada */
@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        justify-items: stretch;
        align-items: start;
    }
    .process-card {
        padding: 2.2rem 2rem;
        border-radius: 18px;
    }
}

@media (min-width: 1440px) {
    .process-grid {
        max-width: 1400px;
        gap: 3rem;
    }
    .process-card h3 {
        font-size: 1.45rem;
    }
    .process-card p {
        font-size: 1.05rem;
    }
}



}