@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Teko:wght@300..700&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #f9f9ff;
    font-family: "Questrial", sans-serif;
    overflow-x:hidden;
    min-height: 900vh;
    font-family: "Poppins", sans-serif;
}

#pag5 {
    background: url('https://preview.colorlib.com/theme/bitmap/img/banner/home-banner.jpg');
    background-blend-mode: multiply; 
    background-size: cover;
    height: 60vh;
}

nav {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 45%);
    padding: 15px 50px;
}
nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav li {
    height: 50px;
}
nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 500;
}
nav a.active { 
    color: #ffd700; 
} 
nav a:hover {
    color: #ffd700;
}
nav svg {
    cursor: pointer;
    margin-right: 50px;
    fill: #fff;
}

.blog-toggle {
    position: relative;
}

.blog-label {
    cursor: pointer;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-label:hover {
    color: #ffd700;
}

.blog-dropdown a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.blog-dropdown a:hover {
    background-color: #ffd700;
    color: #000;
}

.blog-dropdown {
    max-height: 0;
    width: 200px;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 50px;
    left: 0;
    background: white;
    color: black;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
    pointer-events: none;
}
.blog-toggle:hover .blog-dropdown {
    max-height: 200px;
    opacity: 1;
    padding: 20px;
    transform: translateY(0);
    pointer-events: auto;
}

h1 {    
    display: flex;
    padding-top: 10vh;
    font-size: 3em;
    color: #fff;
    justify-content: center;
}
.page-link {
    padding-top: 2vh;
    display: block;
    justify-content: center;
    text-align: center;
}
.page-link a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}
.page-link a:hover {
    color: #ffd700;
}

/* TEXT SAMPLE */

.text-sample {
    margin-top: 30vh;
    margin-left: 10%;
    font-size: 0.9em;
    color: #777777;
    padding-bottom: 30vh;
}
.text-sample h1 {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 30px;
    color: #000;
    font-size: 2em;
    font-weight: 600;
}

.bold {
    font-weight: bold;
    color: #ffd700;
}

.italic {
    font-style: italic;
    color: #ffd700;
}

.superscript {
    vertical-align: super;
    font-size: 0.75em;
    color: #ffd700;
    font-style: italic;
}

.subscript {
    vertical-align: sub;
    font-size: 0.75em;
    color: #ffd700;
    font-style: italic;
}

.strike {
    text-decoration: line-through;
    color: #ffd700;
}

.underline {
    text-decoration: underline;
    color: #ffd700;
}

/* SAMPLE BUTTONS */

h2 {
    display: flex;
    margin-top: -10vh;
    margin-left: 10%;
    color: #000;
    font-size: 2em;
    font-weight: 600;
}

.row {
    margin-left: 10%;
    display: flex;
    padding-top: 5vh;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.btn {
    padding: 15px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-rounded {
    border-radius: 50px;
}
.btn-outline {
    background: none;
    border: 2px solid currentColor;
    color: inherit;
}
.btn-link {
    background: none;
    border: none;
    color: #000;
    text-decoration: underline;
    padding: 0;
}
.btn-disabled {
    color: #007bff;
    background: none;
    border: none;
    cursor: not-allowed;
}

.btn-default {
    cursor: pointer;
    color: #000;
    font-size: 0.8em;
}
.btn-default-blue {
    cursor: pointer;
    color: #007bff;
    font-size: 0.8em;
    transition: all 0.3s ease;
}
.btn-default-blue:hover {
    color: #000;
}
.btn-primary { 
    background-color: #ffc107; 
    color: #fff;
}
.btn-primary:hover {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}
.btn-success { 
    background-color: #17e0e0; 
    color: #fff; 
}
.btn-success:hover {
    background-color: transparent;
    color: #17e0e0;
    border: 2px solid #17e0e0;
}
.btn-info { 
    background-color: #339dff; 
    color: #fff; 
}
.btn-info:hover {
    background: transparent;
    color: #339dff;
    border: 2px solid #339dff;
}
.btn-warning { 
    background-color: #ffd700; 
    color: #fff; 
}
.btn-warning:hover {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}
.btn-danger { 
    background-color: #f44336; 
    color: #fff; 
}
.btn-danger:hover {
    background: transparent;
    color: #f44336;
    border: 2px solid #f44336;
}
.btn-outline.btn-primary { 
    background: transparent; 
    color: #ffc107; 
}
.btn-outline.btn-primary:hover {
    background: #ffc107;
    color: #fff;
}
.btn-outline.btn-success { 
    background: transparent; 
    color: #17e0e0; 
}
.btn-outline.btn-success:hover {
    background: #17e0e0;
    color: #fff;
}
.btn-outline.btn-info { 
    background: transparent; 
    color: #339dff; 
}
.btn-outline.btn-info:hover {
    background: #339dff;
    color: #fff;
}
.btn-outline.btn-warning { 
    background: transparent; 
    color: #ffd700; 
}
.btn-outline.btn-warning:hover { 
    background: #ffd700;
    color: #fff;
}
.btn-outline.btn-danger { 
    background: transparent; 
    color: #f44336; 
}
.btn-outline.btn-danger { 
    background: #f44336;
    color: #fff;
}
.btn-rounded-transparent{
    border-radius: 50px;
}
.btn-rounded-transparent.btn-primary{
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}
.btn-rounded-transparent.btn-success{
    background: transparent;
    color: #17e0e0;
    border: 2px solid #17e0e0;
}
.btn-rounded-transparent.btn-info{
    background: transparent;
    color: #339dff;
    border: 2px solid #339dff;
}
.btn-rounded-transparent.btn-warning{
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}
.btn-rounded-transparent.btn-danger{
    background: transparent;
    color: #f44336;
    border: 2px solid #f44336;
}
.btn-rounded-transparent.btn-primary:hover{
    background: #ffc107;
    color: #fff;
}  
.btn-rounded-transparent.btn-success:hover{
    color: #fff;
    background: #17e0e0;
}
.btn-rounded-transparent.btn-info:hover{
    color: #fff;
    background: #339dff;
}
.btn-rounded-transparent.btn-warning:hover{
    color: #fff;
    background: #ffc107;
}
.btn-rounded-transparent.btn-danger:hover{
    color: #fff;
    background: #f44336;
}
.arrow {
        display: inline-block;
        margin-left: 10px;
        font-weight: bold;
}

/* Botões por tamanho */
.btn-xl {
    font-size: 18px;
    padding: 18px 40px;
}
.btn-lg {
    font-size: 16px;
    padding: 14px 30px;
}
.btn-md {
    font-size: 14px;
    padding: 10px 22px;
}
.btn-sm {
    font-size: 12px;
    padding: 8px 16px;
}

/* Left and Right Aligned */
h3 {
    display: flex;
    margin-top: 20vh;
    margin-left: 10%;
    color: #000;
    font-size: 1.7em;
    font-weight: 600;
    padding-bottom: 30px;
}
.section-left img {
    margin-left: 10%;
}
.section-left p {
    display: flex;
    margin-top: -25vh;
    margin-left: 32%;
    font-size: 1em;
    color: #777777;
}

h4 {
    padding-top: 30px;
    display: flex;
    justify-content: end;
    color: #000;
    margin-right: 10%;
    font-size: 1.7em;
    font-weight: 600;
    padding-bottom: 30px;
}
.section-right img {
    margin-left: 70%;
}
.section-right p {
    font-size: 1em;
    color: #777777;
    margin-top: -25vh;
    margin-right: 32%;
    text-align: right;
}

/* Definition */

.definition-container {
    padding: 40px;
    color: #000;
}
.main-title {
    margin-top: 5vh;
    margin-left: 3%;
    font-size: 28px;
    font-weight: bold;
}

.definition-columns {
    margin-top: -10vh;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.definition-box {
    flex: 1;
}

.definition-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.definition-box p {
    font-size: 16px;
    text-align: left;
    color: #555;
}

/* BLOCKQUOTE */

.blockquote-container {
    margin-top: 10vh;
    background-color: #f9f9ff;
    padding: 40px 20px;
    color: #fff;
}
.blockquote-container h2 {
    margin-left: 3%;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.blockquote-container p {
    background-color: #fff;
    padding: 30px;
    margin: 0;
    color: #777777;
    border-left: 5px solid #ffc107;
    font-size: 1em;
    line-height: 1.6;
}

.table-section {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 40px 20px;
    color: #fff;
}
.table-section h2 {
    margin-left: 3%;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    color: #333;
}
thead {
    background-color: #f9f9f9;
}
th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.flag {
    width: 32px;
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
}
.progress {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    width: 100px;
}
.progress-bar {
    height: 100%;
    display: block;
    border-radius: 5px;
}
.blue { background-color: #5a6ff0; width: 80%; }
.pink { background-color: #ef6e9f; width: 40%; }
.orange { background-color: #ea9953; width: 60%; }
.green { background-color: #57ef9b; width: 70%; }
.lightgreen { background-color: #57ef9b; width: 50%; }
.purple { background-color: #b568ef; width: 30%; }

h6 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-left: 12%;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    }

.gallery-row img {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
}

.typography h1 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-right: 70%;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000;
}
.typography h2 {
    color: #777777;
    margin-top: 5vh;
}
.typography h3 {
    color: #777777;
    margin-top: 2vh;
}
.typography h4 {
    color: #777777;
    font-size: 1.5em;
    margin-top: -7vh;
    margin-right: 76.5%;
}
.typography h5 {
    color: #777777;
    font-size: 1.2em;
    margin-top: -2vh;
    margin-left: 10%;
}
.typography h6 {
    color: #777777;
    font-size: 1em;
    margin-top: 2vh;
    margin-left: 10%;
}
.typography p {
    font-weight: 700;
    color: #777777;
    font-size: 0.8em;
    margin-top: -3vh;
    margin-left: 10%;
}

.unordered-list h2 {
    font-size: 1.5em;
    margin-top: -45vh;
    margin-left: 35%;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000;
}

ul.custom-list {
    margin-left: 35%;
    list-style: none;
    padding-left: 0;
    color: #333;
}

ul.custom-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Bolinha dourada */
ul.custom-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #fbc02d;
    border-radius: 50%;
}

/* Segundo nível */
ul.custom-list ul {
    list-style: none;
    padding-left: 20px;
}

ul.custom-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
}

/* Terceiro nível - quadrado cinza */
ul.custom-list ul ul li::before {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background-color: #666;
}

.ordered-list {
    padding: 20px;
    background-color: #f9f9ff;
    border-radius: 8px;
    max-width: 600px;
    margin-top: -38vh;
    margin-left: 65%;
}

.ordered-list h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111827;
}

.custom-ordered-list {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

.custom-ordered-list li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
    color: #4b5563;
    line-height: 1.5;
}

.custom-ordered-list li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #facc15; /* gold/yellow color */
    font-weight: bold;
}

.custom-ordered-list ol {
    counter-reset: list-counter;
    margin-top: 8px;
    margin-bottom: 8px;
}

.custom-ordered-list ol li::before {
  color: #0ea5e9; /* a lighter blue for nested numbers */
}

.form-wrapper {
    margin-top: 20vh;
    margin-left: 2%;
    display: flex;
    gap: 32px;
    font-family: "Segoe UI", sans-serif;
    padding: 20px;
    background-color: #f9f9ff;
}

.form-left,
.form-right {
    flex: 1;
}

h2, h3 {
    color: #111827;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 2em;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 6px 10px;
    margin-bottom: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 13px;
    color: #111827;
}

form textarea {
    min-height: 80px;
    resize: vertical;
}

.form-right label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #374151;
}

.form-right input[type="checkbox"],
.form-right input[type="radio"] {
    accent-color: #d1d5db;
    width: 14px;
    height: 14px;
}

label.primary input {
    accent-color: #f59e0b;
}

label.confirm input {
    accent-color: #0ea5e9;
}

select {
    width: 100px;
    padding: 5px 8px;
    font-size: 13px;
}

.follow-instagram {
    color: #222222;
    font-weight: 600;
    background: #ffd700;
    padding: 25px 30px;
    margin-top: 20vh;
    white-space: nowrap;
    text-align: center;
    font-size: 15px;
    border: none;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.images-container {
    margin-top: 15vh;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.image-item{
    flex: 1;
    overflow: hidden;
}
.image-item img {
    width: 80%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.image-item:hover img {
    transform: scale(1.05);
}

.footer {
    background-color: #0c0c22;
    color: #888;
    padding: 60px 40px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-copy {
    font-size: 14px;
}
.footer-copy span {
    color: #ccc;
}
.footer-copy a {
    color: #f4d60d;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: #f2f2f2;
    color: #444;
}

.newsletter-form button {
    background-color: #f4d60d;
    border: none;
    padding: 12px 20px;
    color: #000;
    font-size: 20px;
    cursor: pointer;
}

.social-icons a {
    margin-right: 12px;
    fill: #ccc;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    fill: #f4d60d;
}