body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #011520 0%, #04253d 30%, #085c8a 65%, #0d85c2 100%);
    color: white;
    min-height: 100vh;
}

h1 {
    letter-spacing: 10px;
    font-size: 90px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 100;
}

h2 {
    margin-bottom: 20px;
}

.conteudo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.texto h2 {
    max-width: 500px;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #7bd4ff;
    font-size: 35px;
    font-family: 'Courier New', Courier, monospace;
}

.texto p,
li {
    padding-left: 20px;
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.6;
}

section {
    position: relative;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(to bottom, rgba(2,19,31,0.55), rgba(192,213,228,0.74));
    border: 2px solid #7bd4ff;
    width: 50%;
    margin: 30px;
}

section,
ul {
    list-style: none;
}

section,
li {
    margin-bottom: 10px;
}

p,
li {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 17px;
}

li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #98a2f5;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    border: 2px solid #7bd4ff;
    padding: 15px;
    text-align: center;
}

th {
    background-color: #0b4b73;
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    section {
        width: 95% !important;
        margin: 15px auto !important;
        flex-direction: column;
    }

    body {
        background: linear-gradient(135deg, #011520 0%, #04253d 40%, #085c8a 100%);
    }

    table {
        font-size: 14px;
    }
}

/* ===== MEDIA QUERY TABLET (601px – 1024px) ===== */
@media (min-width: 601px) and (max-width: 1024px) {
    section {
        width: 75% !important;
        margin: 20px auto !important;
    }

    h1 {
        font-size: 60px;
    }

    .texto h2 {
        font-size: 28px;
    }
}

/* ===== DESKTOP (>= 1025px) — fundo com personagem + quadros à direita ===== */
@media (min-width: 1025px) {
    body {
        background: linear-gradient(135deg, #011520 0%, #04253d 30%, #085c8a 65%, #0d85c2 100%);
        background-image: url('../img/azuldeitado.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        
    }

    section {
        margin-left: auto !important;
        margin-right: 40px !important;
    }
}

/* ===== TABLET GRANDE / LANDSCAPE (1025px – 1280px) ===== */
@media (min-width: 1025px) and (max-width: 1280px) {
    section { width: 65% !important; margin-top: 20px !important; margin-bottom: 20px !important; }
    h1 { font-size: 70px; }
    .texto h2 { font-size: 30px; }
}

/* ===== DESKTOP PEQUENO (1281px – 1440px) ===== */
@media (min-width: 1281px) and (max-width: 1440px) {
    section { width: 55% !important; margin-top: 25px !important; margin-bottom: 25px !important; }
    h1 { font-size: 80px; }
}

/* ===== DESKTOP GRANDE / TV (> 1440px) ===== */
@media (min-width: 1441px) {
    section { width: 50% !important; margin-top: 30px !important; margin-bottom: 30px !important; }
    h1 { font-size: 90px; }
    p, li { font-size: 19px; }
}
