*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Page-level styles */
html,
body {
    margin: 0;
    padding: 20px;
    font-family: system-ui, -apple-system, sans-serif;
    /* background-color: deepskyblue; */
    color: #333;
}

body {
    background:
        /* Cloud 1 - Bright white with 95% opacity */
        radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.95) 0%, transparent 35%),

        /* Cloud 2 - Large bright white patch with 85% opacity */
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.85) 0%, transparent 45%),

        /* Sky Gradient - Deep sky blue fading into a sharp light ice-blue */
        linear-gradient(to bottom, #1E88E5 0%, #BBDEFB 100%);

    background-attachment: fixed;
    min-height: 100vh;
    /* Ensures the gradient stretches fully on mobile */
    margin: auto;
    max-width: 1200px;
}


/* Styles for elements that appear in content.json */
p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2c3e50;
}

span {
    display: inline-block;
    padding: 4px 8px;
    background: #ecf0f1;
    border-radius: 4px;
}

/* SEÇÕES */
section {
    /* border: 1px solid red; */
    border-radius: 0.5em;
    background-color: transparent;
    padding: 8px;
}

.section-with-header-and-paragraph section {
    background: #eeeeee;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

.section-with-header-and-paragraph section div {
    font-weight: 500;
}

/* GRID */
.grid {
    display: grid;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
img[src=""] {
    display: none;
}

img[src=""] {
    display: none;
}
