 /* RESET */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

section {  /* para não ter de utilizar <br>, que pode estragar o layout */
    margin-bottom: 60px;
}

/* =========================
   FORMULÁRIO
========================= */

.contacto{
    max-width:700px;
    margin:60px auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.contacto h1{
    text-align:center;
    margin-bottom:30px;
    color:#990011;
}

.contacto form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contacto input,
.contacto textarea{
    width:95%;
    padding:15px;
    border:2px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:Arial, sans-serif;
}

.contacto textarea{
    min-height:180px;
    resize:vertical;
}

.contacto input:focus,
.contacto textarea:focus{
    outline:none;
    border-color:#990011;
}

.contacto button{
    background:#990011;
    color:white;
    border:none;
    padding:15px;
    font-size:18px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.contacto button:hover{
    background-color: #65000c;
}

/* CLAQUETE */
.topo-claquete img {
    width: 100%;
    display: block;
}

/* MENU */
.menu {
    padding: 0 22px;
    background-color: #990011;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* MUDOU */
    position: relative;
    z-index: 1000;
}

.menu-icon {  /* NOVO */
    height: 55px;
    margin-right: 20px;
    margin-left: -10px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.menu-icon:hover {
    transform: scale(1.10);
}

.menu ul {
    display: flex;
    list-style: none;
    margin: 0 auto; /* mantém o menu centrado */
    padding: 0;
    list-style: none;
}

.menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/* MENU LISTA */
.menu li {
    color: white;
    padding: 0 20px;
    border-right: 1px solid white;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: 10px 12px;
}

.menu a:hover,
.menu a:focus {
    color: #F8DE8D;
    text-decoration: underline;
}
.menu li:last-child {
    border-right: none;
}

/* CARROSSEL — COLADO AO MENU */
.carousel {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

/* IMAGENS */
.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

/* BOTÕES */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(153, 0, 17, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(153, 0, 17, 1);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* TEXTO */
.conteudo {
    margin: 30px;
}  

.conteudo h1 {
    color: #990011;
    margin-left: 20px;
}

.conteudo h4 {
    margin-left: 20px;
    text-align: justify;
}    

.conteudo p {
    margin: 0 30px 12px;
    line-height: 1.5;
    text-align: justify;
}

/* BOTÃO HAMBÚRGUER */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* BOTÃO ACESSIBILIDADE */
#accessibility-btn {
    position: fixed;
    left: 20px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #f7cf4d;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 999999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* HOVER */
#accessibility-btn:hover {
    transform: scale(1.08);
    background: #e6b823;
}

/* MENU */
#accessibility-menu {
    position: fixed;
    left: 20px;
    bottom: 115px;
    width: 260px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 999999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* TÍTULO */
#accessibility-menu h3 {
    margin: 0 0 10px 0;
    color: #222;
}

/* BOTÕES */
#accessibility-menu button {
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    background: #f0f0f0;
    transition: 0.2s;
}

#accessibility-menu button:hover {
    background: #dcdcdc;
}

/* ALTO CONTRASTE */
.high-contrast {
    background: black !important;
    color: yellow !important;
}

.high-contrast a {
    color: cyan !important;
}

.high-contrast h1 {
    color: #ddd !important;
}

.high-contrast h2 {
    color: #ddd !important;
}

/* ESCALA CINZENTOS */
.grayscale {
    filter: grayscale(100%);
}

/* FONTE LEGÍVEL */
.readable-font {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* MENU */

    .menu {
        height: auto;
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .menu-icon {
        height: 45px;
        margin-right: 0;
    }

    /* BOTÃO */

    .menu-toggle {
        display: block;
    }

    /* LISTA */

    .menu ul {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 10px;
        gap: 5px;
    }

    .menu ul.active {
        display: flex;
    }

    .menu li {
        border: none;
        padding: 0;
        text-align: center;
    }

    .menu a {
        display: block;
        padding: 12px;
        background-color: rgba(255,255,255,0.08);
        border-radius: 6px;
    }

    /* CARROSSEL */
    
    .carousel {
        height: 220px;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 18px;
    }

    /* TEXTO */

    h1 {
        margin: 20px 15px 10px;
        text-align: center;
        font-size: 28px;
    }

    p,
    h4 {
        margin-left: 15px;
        margin-right: 15px;
        text-align: center;
    }
}

/* =========================
   FOOTER
========================= */

/* FOOTER */
.site-footer {
    background: #111;
    color: white;
    padding-top: 50px;
    margin-top: 80px;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

/* COLUNAS */
.footer-column {
    flex: 1 1 25%;
    min-width: 0;
    max-width: 25%;
}

@media (max-width: 1100px) {
    .footer-column {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 700px) {
    .footer-column {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* TÍTULOS */
.footer-column h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* TEXTO */
.footer-column p {
    line-height: 1.8;
    color: #ddd;
}

/* LINKS */
.footer-column a {
    color: #ffd54f;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER LINKS */
.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

/* PARTE FINAL */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}


.lag {
    color: #cb0018;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.lag:hover {
    color: #4b0009;
}