/* ALOMA PASTELARIA - STYLES */

:root {
    --gold: #D4A574;
    --light-gold: #E5C9A1;
    --green: #8B9D83;
    --dark-green: #5A6B5E;
    --white: #FFFFFF;
    --cream: #FAFAFA;
    --text-dark: #1A1A1A;
    --text-gray: #6B6B6B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

*{
  background-repeat: no-repeat;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAVEGAÃƒâ€¡ÃƒÆ’O */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-links a:hover { opacity: 0.6; }

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* MOBILE MENU */
.mobile-menu {
    display: none; /* Escondido por padrÃƒÂ£o */
    position: fixed;
    top: 100px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 100px);
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    padding: 0.5rem 0;
    transition: opacity 0.3s ease;
}

.mobile-menu ul li a:hover {
    opacity: 0.6;
}

/* HERO */
.hero {
    width:100%;
    height: auto;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
    padding: 7rem 0 6rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: 100vw auto !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 700px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4.9vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
     text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 2rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* BOTÃƒâ€¢ES CTA COM EFEITO SLIDE */
.cta-button {
    display: inline-block;
    position: relative;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-button::before {
    content: attr(data-hover-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    border: 1px solid var(--green);
}

.cta-button:hover::before {
    transform: translateY(0);
}

.cta-button:hover {
    border-color: var(--green);
}

/* BotÃƒÂ£o Gold (para secÃƒÂ§ÃƒÂ£o Quem Somos) */
.cta-button-gold {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.cta-button-gold::before {
    background: var(--green);
    border: 1px solid var(--green);
}

.cta-button-gold:hover {
    border-color: var(--green);
}

/* SECÃƒâ€¡Ãƒâ€¢ES */
.section-white {
    background: var(--white);
    padding: 8rem 5%;
    position: relative;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-title-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3.5vw, 3.15rem);
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 700px;
    position: relative;
}

.section-title-script {
    font-family: 'Sacramento', cursive;
    font-style: normal;
    font-weight: 100;
    color: #8B9D83;
    transform: skewX(-5deg);
    text-transform: none;
    font-size: 2em;
    position: absolute;
    bottom: -0.5em;
    right: 0.2em;
    line-height: 1;
    z-index: 2;
}

/* Script dentro de tÃƒÂ­tulos de imagem grande - posiÃƒÂ§ÃƒÂ£o inline sobreposta */
.full-image-title .section-title-script {
    position: absolute;
    bottom: 0.1em;
    right: 0.5em;
    top: auto;
    color: var(--gold);
 
}
/* Primeiro texto... quem somos */ 
.section-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
  
    max-width: 550px;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* LOJAS - Info com fonte 20% menor */
.loja-info {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin: 0 0 1rem 0;
    font-weight: 300;
}

.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.image-box {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
}

/* RENDADO LATERAL DIREITO - PadrÃƒÂ£o GeomÃƒÂ©trico Bege */
.rendado-vertical {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: url('lateral_bege.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 180px auto;
    opacity: 1;
}

/* RENDADO HORIZONTAL VERDE */
.rendado-horizontal {
    display: none;
}

/* RENDADO FOOTER TOP - PadrÃƒÂ£o Verde */
.rendado-footer-top {
    height: 80px;
    width: 100%;
    background-image: url('topo_verde.png');
    background-repeat: repeat-x;
    background-position: left center;
    background-size: 1360px 80px;
}

/* RENDADO LINE - Linha decorativa */
.rendado-line {
    height: 60px;
    width: 100%;
    background-image: url('rendado_line.png');
    background-repeat: repeat-x;
    background-position: center center;
    background-size: auto 60px;
}

/* FULL IMAGE */
.full-image-section {
    width: 100%;
    min-height: 420px;          
    position: relative;
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.full-image-content {
    text-align: center;
    color: var(--white);
     text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
    max-width: 900px;
    padding: 2rem;
}

.full-image-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
    position: relative;
}

/* FULL IMAGE: corrigir desalinhamento causado por .hero-text */
.full-image-section .hero-text{
  max-width: 900px;     /* ou 700px se quiseres mais curto */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* PRÃƒâ€°MIOS */


/* LINHA 2: PRÃƒâ€°MIOS OURO */
.awards-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.award-badge {
    width: 110px;
    height: 110px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.award-badge:hover {
    transform: scale(2) rotate(15deg);
}

.award-laurel {
    position: absolute;
    width: 100%;
    height: 100%;
}

.award-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.award-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.award-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-top: 0.3rem;
}

/* LINHA 1: MEDALHAS PASTÃƒâ€°IS DE NATA */
.awards-row-medals {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.medal-award {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.medal-award:hover {
    transform: scale(1.5);
}

/* Ambas as medalhas (ouro e prata) visual diferente */
.gold-medal{
    width: 150px;
    height: 150px;
}
.silver-medal {
    width: 120px;
    height: 120px;
    transform: translateY(10px);
}

.medal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 4px 10px rgba(212, 165, 116, 0.3));
}

.medal-year {
    position: relative;
    z-index: 2;
    top: -19px;
    left: 0px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}


/* LINHA 3: BOLO-REI */
.awards-row-bolorei {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* BADGE BOLO-REI */
.badge-special {
    width: 140px;
    height: 170px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 1rem;
    transition: transform 0.3s ease;
}

.badge-special:hover {
    transform: translateY(-5px);
       transform: scale(1.2);
}

.badge-ribbon {
    position: absolute;
    top: 0;
    width: 50px;
    height: 20px;
    background: linear-gradient(180deg, #C41E3A 0%, #8B0000 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 50% 80%, 10% 100%);
}

.badge-seal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--light-gold) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
    border: 3px solid var(--gold);
    position: relative;
    margin-top: 15px;
}

.badge-seal::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px dashed rgba(139, 77, 0, 0.3);
}

.badge-text {
    text-align: center;
    z-index: 2;
}

.badge-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #5A3A1A;
}

.badge-subtitle {
    font-size: 0.55rem;
    margin: 0.2rem 0;
    color: #5A3A1A;
    font-weight: 400;
}

.badge-award {
    font-size: 1rem;
    font-weight: 700;
    color: #5A3A1A;
    margin-top: 0.1rem;
}

/* GALLERY */
.icon-gallery {
    background: var(--white);
    padding: 6rem 0 8rem 0;
}

.gallery-label {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.gallery-item {
    text-align: center;
}

.gallery-image {
    width: 100%;
    height: 300px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* NOTÃƒÂCIAS */
.noticias-section {
    background: var(--cream);
    padding: 8rem 5%;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.noticia-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.noticia-image {
    width: 100%;
    height: 250px;
    background: var(--gold);
    background-size: cover;
    background-position: center;
}

.noticia-content {
    padding: 2rem;
}

.noticia-date {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.noticia-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.noticia-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.noticia-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.noticia-link:hover {
    opacity: 0.7;
}

/* REDES SOCIAIS */
.social-section {
    background: var(--green);
    padding: 3rem 5%;
    text-align: center;
    border-top: 3px solid var(--dark-green);
    border-bottom: 3px solid var(--dark-green);
}

.social-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

/* FOOTER */
footer{
    background: #F9FBF8;
    color: #1A1A1A;
    padding: 4rem 5% 2rem;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-text{
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 300;
    color: #1A1A1A;
    opacity: 0.95;
}

.footer-link{
    color: #1A1A1A;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, color 0.3s ease;
    display: block;
    margin: 0.5rem 0;
}

.footer-link:hover{
    opacity: 1;
    color: var(--gold);
}

/* 2 riscas horizontais */
.footer-sep{
    width: 100vw;
    height: 1px;
    background: #BBCDAF;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* linha com logos Ãƒ  esquerda e links legais Ãƒ  direita */
.footer-legal-row{
    max-width: 1400px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logos{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-logos img{
    height: 34px;
    width: auto;
    display: block;
}

.footer-legal-links{
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal-links a{
    color: #1A1A1A;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.footer-legal-links a:hover{
    opacity: 1;
    color: var(--gold);
}

/* copyright final */
.footer-bottom{
    max-width: 1400px;
    margin: 1rem auto 0;
    text-align: center;
    opacity: 0.85;
    font-size: 0.75rem;
    font-weight: 300;
    color: #1A1A1A;
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 3rem;
    border: none;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    color: var(--gold);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 0.6;
}

.modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.modal-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    white-space: pre-line;
}

.modal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body ul, .modal-body ol {
    margin: 1rem 0 1rem 2rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-body a {
    color: var(--gold);
    text-decoration: underline;
}

.modal-body a:hover {
    opacity: 0.7;
}


/* MODAL NOTÃƒÂCIA - ESTILO JORNAL ALOMA */
.modal-noticia-header {
    margin-bottom: 0;
}

.modal-noticia-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.modal-noticia-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.8rem;
}

/* Data estilo jornal: linha fina + texto em caps espaÃƒÂ§ados */
.modal-noticia-data {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    color: var(--text-dark);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.55rem 0;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.35);
}

.modal-noticia-data::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

/* Lead / Resumo: bold, maior, itÃƒÂ¡lico Ã¢â‚¬â€ destaque jornalÃƒÂ­stico */
.modal-noticia-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 1.6rem;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

.modal-noticia-corpo {
    overflow: hidden;
}

.modal-noticia-img-lateral {
    float: left;
    width: 42%;
    aspect-ratio: 4 / 3;
    margin: 0.2rem 2rem 1rem 0;
    background-size: cover;
    background-position: center;
    background-color: var(--light-gold);
}

.modal-noticia-body-texto {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
    hyphens: auto;
}

.modal-noticia-body-texto p {
    margin-bottom: 1rem;
}


@media (max-width: 640px) {
    .modal-noticia-img-lateral {
        float: none;
        width: 100%;
        aspect-ratio: 16 / 9;
        margin: 0 0 1.5rem 0;
    }
    .modal-noticia-body-texto {
        text-align: left;
    }
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; } /* Mostrar apenas em mobile */
    
    .full-image-section {
       background-size: cover !important;
        min-height: 280px;
    }
    
    .grid-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content { max-width: 100%; }
    
    .noticias-grid {
        grid-template-columns: 1fr;
    }
    
    .rendado-vertical {
        width: 80px;
        background-size: 80px auto;
        opacity: 0.3;
    }
    
    .hero {
        height: auto;
        min-height: 300px;
        padding: 3rem 0;
    }

    .hero-bg {
        background-position: center center !important;
        background-size: cover !important;
    }
    
    /* Imagem decorativa mobile */
    .image-decorativa {
        max-width: 100%;
        height: 200px;
    }
    
    /* Footer mobile - IMAGENS MENORES */
    .footer-logos img {
        height: 20px;
        max-width: 100%;
    }
    
    .footer-legal-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-legal-links a {
        font-size: 0.7rem;
    }
    
    /* Modal mobile */
    .modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }
    
    .modal-content h2 {
        font-size: 2rem;
        padding-right: 2rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
    
    /* PrÃƒÂ©mios responsive */
    .medal-award {
        width: 120px;
        height: 120px;
    }
    .gold-medal {
        width: 120px;
        height: 120px;
    }
    .silver-medal {
        width: 90px;
        height: 90px;
        transform: translateY(4px); /* menos offset no mobile */
    }
    
    .medal-year {
        font-size: 0.9rem;
    line-height: 1;
     top: -5px;
    left: 0px;
    }
    
    .awards-row-medals {
        gap: 1.5rem;
    }
    
    .awards-row-bolorei {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .awards-row-medals {
        gap: 1.2rem;
        align-items: center;
    }
    .gold-medal {
        width: 110px;
        height: 110px;
    }
    .silver-medal {
        width: 90px;
        height: 90px;
        transform: translateY(3px); /* menos offset no mobile */
    }
    
     .medal-year {
        font-size: 0.9rem;
    line-height: 1;
     top: -5px;
    left: 0px;
    }
}