/* ===== CSS Variables ===== */
:root {
    --primary-color: #323638;
    --secondary-color: #F4EFED;
    --text-dark: #323638;
    --text-light: #5b5e60;
    --bg-white: #ffffff;
    --bg-light: #F4EFED;
    --accent-color: #323638;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Alternative method for sections */
section[id] {
    scroll-margin-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: 0rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.section__number {
    position: absolute;
    top: 4rem;
    left: 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.3;
}

.section__header {
    margin-bottom: 4rem;
}

.section__title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    font-weight: 800;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 4rem;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    fill: var(--text-dark);
    transition: var(--transition);
    width: 168px;
    
}

.logo-svg:hover {
    fill: var(--text-light);
}

/* Mobile logo styles */
@media screen and (max-width: 768px) {
    .logo-svg {
        width: 120px;
        height: 80px;
    }
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    font-weight: 800;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #323638;
    padding-top: 80px;
    position: relative;
    box-sizing: border-box;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url('img/worldmap1.webp') center center / cover no-repeat;
    opacity: 0.4;
    mix-blend-mode: normal;
    z-index: 0;
}

.hero__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 0;
    text-align: left;
    flex: none;
    max-width: 600px;
}

.hero__icon {
    width: 140px;
    height: 90px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero__icon svg {
    width: 100%;
    height: 100%;
}

.hero__line {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.hero__line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero__line:nth-child(3) {
    animation-delay: 0.4s;
}

/* Decorative grid of boxes (lines only) for the hero background */
.hero {
    position: relative;
}

/* ===== Vantagens Section ===== */
.vantagens {
    background: #FFFFFF;
    padding: 0 0 !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.vantagens .section__header {
    margin-bottom: 4rem;
    padding: 0 4rem;
    margin-left: 0;
    margin-right: 0;
}

.vantages__row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    padding: 2.5rem 2rem;
    width: 100%;
    margin: 0;
}

.vantages__row:first-of-type {
    margin-top: 0;
}

/* Row 1 - Color #323638 background, #F1F1F1 text */
.vantages__row--1 {
    background: #F4EFED;
    z-index: 11;
}

/* Row 2 - Color #F1F1F1 background, #323638 text */
.vantages__row--2 {
    background: #323638;
    z-index: 10;
}

/* Row 3 - Color #323638 background, #F1F1F1 text */
.vantages__row--3 {
    background: #F4EFED;
    z-index: 5;
}

.vantagem__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1.25rem 2rem;
}

.vantagem__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.vantagem__icon {
    width: 4.18rem;
    height: 4.18rem;
    border-radius: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transform: translateY(-30%);
}

/* Color and text alignment rules for rows */
.vantages__row--2 .vantagem__title,
.vantages__row--2 .vantagem__text {
    text-align: center;
    color: #F4EFED;
}

.vantages__row--1 .vantagem__title,
.vantages__row--3 .vantagem__title,
.vantages__row--1 .vantagem__text,
.vantages__row--3 .vantagem__text {
    text-align: center;
    color: #323638;
}

/* Icons - no transforms needed */
.vantages__row--1 .vantagem__icon,
.vantages__row--2 .vantagem__icon,
.vantages__row--3 .vantagem__icon {
    transform: none;
}

.icon {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}

.icon--chat::before,
.icon--quality::before,
.icon--search::before {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.icon--chat::before {
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23323638" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 7h8a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H9l-3 3v-3H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Z"/><path d="M14 9h5a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-1v3l-3-3"/></svg>');
}

.vantages__row--2 .icon--chat::before {
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23F4EFED" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 7h8a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H9l-3 3v-3H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Z"/><path d="M14 9h5a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-1v3l-3-3"/></svg>');
}

.icon--quality::before {
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23323638" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="7"/><path d="M9 12.5l2 2 4-4.5"/></svg>');
}

.vantages__row--2 .icon--quality::before {
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23F4EFED" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="7"/><path d="M9 12.5l2 2 4-4.5"/></svg>');
}

.icon--search::before {
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23323638" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="6"/><path d="M16 16l4 4"/></svg>');
}

.vantages__row--2 .icon--search::before {
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23F4EFED" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="6"/><path d="M16 16l4 4"/></svg>');
}

.vantagem__text-wrapper {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Ensure title and text are vertically centered relative to the row */
.vantagem__title,
.vantagem__text-wrapper {
    align-self: center;
}

.vantagem__title {
    font-size: 2rem;
    font-weight: 800; 
    line-height: 1.1;
    margin: 0;
    text-align: center;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vantagem__text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    text-transform: none;
    margin: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    
}

@media screen and (max-width: 1024px) {
    .vantages__row {
        padding: 2rem 2rem;
        min-height: auto;
    }

    .vantagem__content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .vantagem__title-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }

    .vantagem__icon {
        width: 3.2rem;
        height: 3.2rem;
        transform: translateY(-25%);
    }

    .vantagem__title {
        font-size: 1.5rem;
        text-align: center;
    }

    .vantagem__text-wrapper {
        max-width: 500px;
        text-align: center;
    }

    .vantagem__text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 80px;
        box-sizing: border-box;
    }

    section.curadoria::before {
        bottom: 0 !important;
        left: 0 !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        height: 70% !important;
        background: url('img/worldmap-bw.webp') bottom center / cover no-repeat !important;
        opacity: 0.3 !important;
        mix-blend-mode: normal !important;
        z-index: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        content: "" !important;
    }

    .vantages__row {
        padding: 1.5rem 1.5rem;
    }

    .vantagem__content {
        padding: 1.5rem 1rem;
        gap: 0.8rem;
    }

    .vantagem__title-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .vantagem__icon {
        width: 2.8rem;
        height: 2.8rem;
        transform: translateY(0%);
        flex-shrink: 0;
        margin-top: -0.2rem;
    }

    .vantagem__title {
        font-size: 1.25rem;
    }

    .vantagem__text {
        font-size: 0.95rem;
    }
}





/* ===== Marcas Header Section ===== */
.marcas-header {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0 !important;
    margin: 0 !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto !important;
    height: auto;
}

.marcas-header .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.marcas-header__content {
    padding: 1rem 0;
    margin: 0;
}

.marcas-header__title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 2rem;
}

@media screen and (max-width: 768px) {
    .marcas-header__content {
        padding: 0.75rem 0;
    }
    
    .marcas-header__title {
        font-size: 2rem;
    }
    
    .curadoria__marcas {
        padding: 0 0.5rem;
    }
    
    .marcas__section {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .marcas__section-content {
        width: 100%;
    }
    
    .marcas__links {
        width: 100%;
    }
    
    .marca__link {
        white-space: nowrap;
        font-size: 1rem;
    }
}

.curadoria::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 90%;
    background: url('img/worldmap-bw.webp') bottom right / contain no-repeat;
    opacity: 0.3;
    mix-blend-mode: normal;
    z-index: 0;
    pointer-events: none;
}

.curadoria .container {
    position: relative;
    z-index: 1;
}

.curadoria__subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-white);
}

.curadoria__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
}

/* Ajustando o container da seção de curadoria */
#curadoria .container {
    max-width: 100%;
    padding: 0;
}

/* Ajustando o marca__page dentro da curadoria */
#curadoria .marca__page {
    min-height: 100vh;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.marca__link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
    text-align: left;
}

.marca__link:hover,
.marca__link.active {
    background: rgba(255,204,51,0.12);
    color: #FFFFFF;
    transform: translateX(5px);
}

.curadoria__info {
    padding: 0;
    background: transparent;
    border: none;
}

.info__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-align: left;
}

.info__subtitle {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    text-align: left;
}

.info__benefits {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    padding: 0.2rem 0;
    border: none;
    letter-spacing: 0.05em;
    text-align: left;
}

.benefit:last-child {
    border-bottom: none;
}

/* Estilos para as bandeiras */
.flag-icon {
    display: block;
    width: 32px;   /* maior para ficar mais visível */
    height: 20px;
    background-size: cover;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 4px; /* Alinhamento vertical com o primeiro item da lista */
}

/* Curadoria mobile/tablet: empilhar info e lista de marcas */
@media screen and (max-width: 1024px) {
    .curadoria .container {
        padding: 0;
    }

    #curadoria .marca__page {
        padding: 2.5rem 0 1.5rem;
    }

    .curadoria__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 0 2rem;
        max-width: 100%;
    }

    .curadoria__marcas {
        padding: 0 2rem;
        margin-top: 2rem;
    }

    /* Afasta o título 'Curadoria internacional' da borda no mobile/tablet */
    #curadoria .section__header {
        padding: 0 2rem;
        margin-bottom: 2rem;
    }
}

.flag-icon-it {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><path fill="%23009246" d="M0 0h1.67v3H0z"/><path fill="%23fff" d="M1.67 0h1.66v3H1.67z"/><path fill="%23CE2B37" d="M3.33 0H5v3H3.33z"/></svg>');
}

.flag-icon-es {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><path fill="%23C60B1E" d="M0 0h5v3H0z"/><path fill="%23FFC400" d="M0 1h5v1H0z"/></svg>');
}

.flag-icon-pt {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><path fill="%23046A38" d="M0 0h5v3H0z"/><path fill="%23DA291C" d="M2 0h3v3H2z"/><circle cx="2.5" cy="1.5" r="0.5" fill="%23FFD90F"/><path d="M2.5 1.3L2.2 2h0.6z" fill="%23FFD90F"/></svg>');
}

/* Estilo para a seção de marcas */
.curadoria__marcas {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem; /* Padrão desktop/tablet */
}

.marcas__section {
    margin-bottom: 2.5rem;
    width: 100%;
}

.marcas__section-content {
    display: flex;
    align-items: flex-start;
}

.marcas__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.marcas__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
    width: 100%;
}

/* Estilo para os links das marcas - apenas texto */
.marca__link {
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
    line-height: 1.4;
    border: none !important;
    background: none !important;
}

.marca__link:hover {
    color: #FFD700;
    text-decoration: none;
}

/* ===== Seção Curadoria ===== */
.curadoria {
    background: var(--primary-color);
    color: var(--bg-white);
    position: relative;
}



/* ===== Seção de Marcas ===== */
.marcas {
    background: var(--bg-white);
}

.marca__page {
    min-height: 100vh;
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.marca__header {
    margin-bottom: 4rem;
}

.marca__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.marca__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
}

.marca__name {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.marca__country {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marca__tagline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 1rem 0;
}

.marca__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
    text-transform: none;
    max-width: 800px;
}

.marca__formats {
    margin-top: 2rem;
}

.formats__title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.formats__list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.marca__link-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 2rem;
    transition: var(--transition);
}

.marca__link-btn:hover {
    background: var(--text-dark);
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    .marca__page {
        padding: 4rem 2rem;
    }
    
    .marca__content {
        padding: 0;
    }
    
    .marca__name {
        font-size: 2.5rem;
    }
    
    .marca__tagline {
        font-size: 2rem;
    }
}

/* ===== ESTILOS PARA PÁGINAS DE MARCAS ===== */
/* Reset de estilos conflitantes */
#marcas .marca-page {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

/* Container principal - ocupa toda a largura */
#marcas .marca-page .marca-container {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Retângulo com o conteúdo - ocupa 40% da largura */
#marcas .marca-page .marca-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    min-height: 100vh;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

/* Para páginas ímpares, alinha à esquerda */
#marcas .marca-page:nth-child(odd) .marca-content {
    left: 0;
    right: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

/* Estilos de tipografia */
#marcas .marca-page .marca-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: rgba(244, 239, 237, 0.8);
}

#marcas .marca-page .marca-name {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

#marcas .marca-page .marca-country {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(244, 239, 237, 0.8);
    margin-bottom: 2rem;
    display: block;
}

#marcas .marca-page .marca-tagline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 2rem 0;
    color: var(--secondary-color);
}

#marcas .marca-page .marca-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(244, 239, 237, 0.9);
}

#marcas .marca-page .marca-formats {
    margin: 3rem 0;
}

#marcas .marca-page .formats-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(244, 239, 237, 0.7);
    margin-bottom: 0.5rem;
}

#marcas .marca-page .formats-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

#marcas .marca-page .marca-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: var(--transition);
}

#marcas .marca-page .marca-link:hover {
    background: transparent;
    color: var(--secondary-color);
    outline: 2px solid var(--secondary-color);
}

/* Ajustes de responsividade */
@media (max-width: 1024px) {
    #marcas .marca-page .marca-content {
        width: 50%;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    #marcas .marca-page {
        min-height: auto;
    }
    
    #marcas .marca-page .marca-container {
        height: auto;
    }
    
    #marcas .marca-page .marca-content {
        position: relative;
        width: 100%;
        min-height: auto;
        padding: 4rem 2rem;
    }
    
    #marcas .marca-page .marca-name {
        font-size: 2.5rem;
    }
    
    #marcas .marca-page .marca-tagline {
        font-size: 1.75rem;
    }
}

.marca__header {
    margin-bottom: 4rem;
}

/* Movido para cima */

.marca__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.marca__name {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.marca__country {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marca__tagline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 1rem 0;
}

.marca__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
    text-transform: none;
    max-width: 800px;
}

.marca__award {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    text-transform: none;
    font-style: italic;
}

.marca__formats {
    margin: 2rem 0;
}

.formats__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.formats__list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
    text-transform: none;
}

.marca__collab {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 3px solid var(--text-dark);
}

.collab__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.collab__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
    text-transform: none;
    margin-bottom: 1rem;
}

.collab__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.marca__link-btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: 2px solid var(--text-dark);
    transition: var(--transition);
    letter-spacing: 0.1em;
    margin-top: 2rem;
}

.marca__link-btn:hover {
    background: var(--text-dark);
    color: var(--bg-white);
    transform: translateX(5px);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--primary-color);
    min-height: 30vh;
}

.contact__content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact__info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact__social .contact__instagram {
    margin: 0;
    line-height: 40px;
}

.instagram-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
}

.contact__address {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    font-weight: 400;
    text-transform: none;
    margin-bottom: 2rem;
}

.contact__instagram {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact__email {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.contact__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    width: fit-content;
}

.contact__whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.contact__form {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__group label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-dark);
}

.form__group input,
.form__group textarea {
    border: 1px solid var(--border-color);
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.form__group--full {
    grid-column: span 2;
}

.contact__submit {
    grid-column: span 2;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.contact__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Section Dividers ===== */
.section-divider {
    width: 100%;
    height: 40px;
    background: var(--primary-color);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0;
}

.footer__content {
    position: relative;
    text-align: center;
    padding: 0 80px;
}

.footer__center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-white);
    letter-spacing: 0.1em;
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    .footer__content {
        position: static;
        text-align: center;
        padding: 0;
    }
    
    .footer__center {
        margin-bottom: 1rem;
    }
    
    .footer__link {
        position: static;
        transform: none;
        display: block;
        text-align: center;
    }
}

.footer__text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer__content p:not(.footer__text):not(.footer__link) {
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
    color: var(--text-light);
}

.footer__content p:not(.footer__text):not(.footer__link) a {
    color: #8a8d8f;
}

.footer__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-white);
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.footer__link:hover {
    opacity: 0.7;
}



@media screen and (max-width: 1024px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 80px;
        box-sizing: border-box;
    }

    .hero__title {
        font-size: 4.5rem;
    }
    
    .vantagens__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .curadoria__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .marcas__grid {
        grid-template-columns: 1fr;
    }
    
    .marca__name {
        font-size: 3rem;
    }

    .vantagem,
    .vantagem:nth-child(2) {
        margin-left: 0;
        width: 100%;
    }

    .vantagem__content h3 {
        font-size: 1.75rem;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .contact__form {
        grid-template-columns: 1fr;
    }

    .form__group--full,
    .contact__submit {
        grid-column: span 1;
    }
}

/* ===== Brand Sections ===== */
/* Base styles for all brand sections */
.brand-section {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: #F4EFED;
    position: relative;
    overflow: hidden;
    display: flex;
}

/* Desktop layout (>= 1025px):
   - padrão: galeria à ESQUERDA, retângulo à DIREITA
   - alternate: retângulo à ESQUERDA, galeria à DIREITA */
.brand-section .apavisa-gallery {
    width: 70%;
    order: 1;
}

.brand-section .apavisa-rectangle {
    width: 30%;
    order: 2;
}

/* Layout alternado: apenas invertendo a ordem */
.brand-section.alternate .apavisa-gallery {
    order: 2;
}

.brand-section.alternate .apavisa-rectangle {
    order: 1;
}

/* ===== Apavisa Section ===== */
.apavisa-section {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: #F4EFED;
    position: relative;
    overflow: hidden;
    display: flex;
}

/* Apavisa Gallery */
.apavisa-gallery {
    width: 70%;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    max-height: none;
    overflow: visible;
    height: auto;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100% !important;
    max-height: 100% !important;
    padding: 0;
}

/* Coluna 1 - 3 imagens na mesma linha (50%, 25%, 25%) */
.gallery-column-1 {
    display: flex;
    gap: 1rem;
    height: 50%; /* Metade do espaço */
    flex: 1;
}

.gallery-column-1 .gallery-item {
    width: 100%;
}

.gallery-column-1 .item1 {
    flex: 2.2; /* 55% do espaço horizontal */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-column-1 .item2 {
    flex: 1.2; /* 30% do espaço horizontal */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-column-1 .item3 {
    flex: 0.6; /* 15% do espaço horizontal */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-column-1 .item1 img,
.gallery-column-1 .item2 img,
.gallery-column-1 .item3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Variação para seções seguintes (15%, 30%, 55%) */
.gallery-column-1.variant .item1 {
    flex: 0.6; /* 15% */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-column-1.variant .item2 {
    flex: 1.2; /* 30% */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-column-1.variant .item3 {
    flex: 2.2; /* 55% */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-column-1.variant .item1 img,
.gallery-column-1.variant .item2 img,
.gallery-column-1.variant .item3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Coluna 2 - Desktop: img4 40%, img5 15%, img6 45% */
.gallery-column-2 {
    display: flex;
    gap: 1rem;
    height: 45%; /* 45% vertical do total */
    flex: 1;
}

.gallery-column-2 .item4 {
    flex: 0 0 40%; /* 40% horizontal - img4 */
    align-self: stretch; /* Ocupa 100% vertical */
    display: flex; /* Ativa flex para alinhamento */
    align-items: center; /* Centraliza verticalmente */
    justify-content: flex-start; /* Alinhada à esquerda */
    text-align: left; /* Garante alinhamento do conteúdo */
}

.gallery-column-2 .item4 img {
    width: 100%;
    height: 100%;
    
    object-position: left center; /* Alinhada à esquerda */
}

.gallery-column-2 .item5 {
    flex: 0 0 15%; /* Aumentado de 10% para 15% - img5 */
    align-self: stretch; /* Ocupa 100% vertical */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px; /* Largura mínima para garantir visibilidade */
}

.gallery-column-2 .item5 img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
}

/* Sobrescrever .gallery-img para img5 */
.gallery-column-2 .item5 .gallery-img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
}

.gallery-column-2 .item6 {
    flex: 1; /* Ocupa espaço restante (50%) */
    align-self: flex-start; /* Alinhada ao topo */
    display: flex;
    align-items: flex-start; /* Conteúdo alinhado ao topo */
    justify-content: center; /* Centralizado horizontalmente */
}

.gallery-column-2 .item6 img {
    width: 100%; /* Ocupa 100% do espaço disponível */
    height: auto; /* Altura proporcional */
    object-fit: contain; /* Mantém proporções */
    object-position: center top; /* Centralizado horizontalmente, topo */
    max-width: 100%; /* Garante contenção horizontal */
    max-height: 100%; /* Garante contenção vertical */
}

/* Coluna 3 - Desktop escondida, Mobile visível */
.gallery-column-3 {
    display: none; /* Escondida no desktop */
}

/* Mobile: Coluna 3 visível com img6 */
@media screen and (max-width: 768px) {
    .gallery-column-2 .item6 {
        display: none;
    }
    .gallery-column-2 .item5 {
        display: none;
    }
    
    .gallery-column-2 {
        width: 100%;
        gap: 1rem;
        flex-direction: row;
        height: 45%; /* 45% vertical do total */
        flex: 0 0 auto;
    }
    
    /* Mobile: img4 60%, img5 40% adaptativo */
    .gallery-column-2 .item4 {
        flex: 0 0 60%; /* 60% horizontal - img4 */
        align-self: stretch; /* Ocupa 100% vertical */
    }
    
    .gallery-column-2 .item4 img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Mantém proporções */
        object-position: center;
    }
    
    .gallery-column-2 .item5 {
        flex: 0 0 40%; /* 40% horizontal máximo - img5 */
        align-self: stretch; /* Ocupa 100% vertical */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-column-2 .item5 img {
        width: auto; /* Horizontal proporcional para caber */
        height: 100%; /* Ocupa 100% vertical */
        object-fit: contain;
        object-position: center;
        max-width: 100%; /* Não ultrapassa 40% do espaço */
    }
    
    .gallery-column-3 {  
        display: flex !important;
        width: 100%;
        height: var(--pair-height, auto);
        flex: 0 0 auto;
        order: 3;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: row;
        gap: clamp(4px, 2vw, 8px);
    }
    
    .gallery-column-3 .gallery-item {
        width: auto;
        height: var(--pair-height, auto) !important;
        min-height: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-column-3 .gallery-item.item6 {
        flex: 0 0 var(--w6, 50%);
    }

    .gallery-column-3 .gallery-item.item5 {
        flex: 0 0 var(--w5, 50%);
    }
    
    .gallery-column-3 img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0 auto;
    }
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-height: none;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

.gallery-item:hover {
    /* Removido zoom e shadow effects */
    z-index: 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

/* Garantir responsividade para todas as imagens */
.gallery-img img,
.gallery-item img {
    max-width: 100%;
    height: auto;
}

/* Classe img-fluid para responsividade Bootstrap-style */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Media queries para responsividade em diferentes breakpoints */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .gallery-img img,
    .gallery-item img {
        max-width: 100%;
        height: auto;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .gallery-img img,
    .gallery-item img {
        max-width: 100%;
        height: auto;
    }
    
    .gallery-column-2 .item4 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Garantir tamanho mínimo para img5 em tablets */
    .gallery-column-2 .item5 {
        min-width: 100px; /* Tamanho mínimo para tablets */
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .gallery-img img,
    .gallery-item img {
        max-width: 100%;
        height: auto;
    }
    
    /* Garantir tamanho mínimo para img5 em desktops */
    .gallery-column-2 .item5 {
        min-width: 120px; /* Tamanho mínimo para desktops */
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .gallery-img img,
    .gallery-item img {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile-first approach - ajustes para telas pequenas */
@media (max-width: 575px) {
    .gallery-img img,
    .gallery-item img {
        max-width: 100%;
        height: auto;
    }
    
    .gallery-column-1 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-column-2 {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .rectangle-small {
        width: 15%;
        min-width: 100px;
    }
    
    .rectangle-large {
        height: 70px;
    }

    .apavisa-gallery {
        width: 70%;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .gallery-grid {
        gap: 0.8rem;
    }

    .gallery-column-1,
    .gallery-column-2 {
        gap: 0.8rem;
    }
    
    .brand-section.alternate {
        flex-direction: row;
    }
}

@media screen and (max-width: 768px) {
    .gallery-extra {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rectangle-small,
    .rectangle-large {
        width: 100%;
        height: 50px;
    }

    .apavisa-gallery {
        width: 100%;
        padding: 1rem;
        order: 2;
    }
    
    .gallery-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-column-1 {
        width: 100%;
        gap: 1rem;
        flex-direction: row;
        height: 30%; /* Diminuído de 40% */
        flex: 0 0 auto;
    }
    
    .gallery-column-2 {
        width: 100%;
        gap: 1rem;
        flex-direction: row;
        height: 40% !important; /* Aumentado para 45% */
        flex: 0 0 auto;
    }
    
    /* Removido - consolidado na regra principal */
    
    .gallery-column-2 .item4 {
        flex: 0 0 auto; /* Remove largura fixa, deixa altura definir */
        
        width: auto; /* Largura será igual à altura */
        aspect-ratio: 1/1; /* Força quadrado perfeito */
    }
    
    .gallery-column-2 .item4 img {
        width: 100%; /* Ocupa 100% do quadrado */
        height: 100%; /* Ocupa 100% do quadrado */
        object-fit: contain; /* Mantém proporções da imagem */
        object-position: center;
    }
    
    .gallery-column-2 .item5 {
        display: none !important; /* Oculta item5 no mobile quando coluna 3 ativa */
    }
    
    .gallery-column-2 .item5 img {
        width: auto; /* Horizontal proporcional para caber */
        height: 100%; /* Ocupa 100% vertical */
        object-fit: contain;
        object-position: center;
        max-width: 100%;
    }
    
    /* Removido - regra conflitante */
    
    .gallery-column-3 img {
        width: auto; /* Horizontal proporcional à imagem */
        height: 100%; /* Ocupa 100% da altura vertical definida */
        max-width: 100%;
        object-fit: contain; /* Mantém proporções sem cortar */
        object-position: center;
    }
    
    .gallery-item {
        width: 100%;
    }
    
    .brand-section.alternate {
        flex-direction: column;
    }
}

/* Rectangle styles */
.apavisa-rectangle {
    width: 30%;
    min-height: 100vh;
    max-height: 100vh;
    background-color: #323638;
    color: #F4EFED;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow-y: auto;
    position: sticky;
    top: 0;
    scrollbar-width: thin;
    scrollbar-color: #555 #323638;
}

.apavisa-rectangle::-webkit-scrollbar {
    width: 6px;
}

.apavisa-rectangle::-webkit-scrollbar-track {
    background: #323638;
}

.apavisa-rectangle::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 3px;
}

.apavisa-content {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

/* Tablet & Mobile Styles - Brand Sections */
@media screen and (max-width: 1024px) {
    .brand-section {
        flex-direction: column;
    }
    
    /* No mobile/tablet o retângulo vem sempre primeiro e ocupa 100%, depois a galeria */
    .brand-section .apavisa-rectangle {
        width: 100%;
        order: 1;
        position: relative;
        min-height: auto;
        max-height: none;
        padding: 2.5rem 2rem;
    }
    
   .brand-section .apavisa-gallery {
        width: 100%;
        order: 2;
        padding: 1.5rem;
        max-height: none;      /* libera altura no mobile/tablet */
        overflow: visible;     /* mostra todas as imagens */
    }
    
    .brand-section.alternate {
        flex-direction: column;
    }
    

}
/* Mobile Styles */
@media screen and (max-width: 768px) {
    .apavisa-section {
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
    }
    
    .apavisa-gallery {
        width: 100%;
        padding: 0; /* Removido padding para eliminar espaço vazio */
        order: 2;
    }
    
    .gallery-grid {
        gap: 1rem;
        padding: 1rem 0;
        max-height: none;
        display: flex;
        flex-direction: column;
    }
    
    .gallery-item {
        max-height: 400px;
        height: auto;
    }
    
    .gallery-item:first-child {
        max-height: 500px;
    }
    
    .apavisa-rectangle {
        width: 100%;
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .apavisa-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .apavisa-title {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .apavisa-name {
        font-size: 1.8rem;
    }
    
    .apavisa-tagline {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .apavisa-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    
}

.apavisa-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: #F4EFED;
    text-transform: uppercase;
}

.apavisa-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #F4EFED;
}

.apavisa-country-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.apavisa-country-wrapper .flag-icon {
    width: 40px;
    height: 30px;
    border-radius: 2px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.apavisa-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0.5rem 0;
}

.apavisa-country {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(244, 239, 237, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.apavisa-tagline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4rem;
    color: #F4EFED;
}

.apavisa-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 4rem;
    color: rgba(244, 239, 237, 0.9);
}

.apavisa-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F4EFED;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.apavisa-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #F4EFED;
    transition: width 0.3s ease;
}

.apavisa-link:hover::after {
    width: 100%;
}

/* Mobile Styles */
@media screen and (max-width: 1024px) {
    .apavisa-rectangle {
        width: 60%;
        padding: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8rem 2rem;
        gap: 3rem;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section__number {
        top: 2rem;
        left: 2rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .marca__tagline {
        font-size: 2rem;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .vantagem__title {
        font-size: 1.5rem;
    }
    
    .marca__name {
        font-size: 2.5rem;
    }
    
    .marca__tagline {
        font-size: 1.8rem;
    }
    
    .curadoria__subtitle {
        font-size: 2rem;
    }
}
