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

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #52546a;
    background-color: #F9F9FE;
}

p {
    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.156), 1rem);
    color: #52546A;
    font-weight: 400;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    background: #F9F9FE;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    height: 120px;
}

.logo-img {
    width: auto;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: #595959;
    font-size: 16px;
    font-weight: 400;
    margin: 0 15px;
    cursor: pointer;
    transition: color 0.15s ease, text-decoration 0.15s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #0032FF;
    font-weight: 600;
    text-decoration: underline;
}

/* Header Right Side */
.header-right {
    display: none;
    align-items: center;
}

@media (min-width: 768px) {
    .header-right {
        display: flex;
    }
}

.website-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #0032FF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: rgba(0, 50, 255, 0.8);
}

.website-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.header-separator {
    width: 1px;
    height: 30px;
    background-color: #00164F;
    margin: 0 15px;
}

.external-icon {
    margin: 0 10px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: #0032FF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.language-current:hover {
    color: #0032FF;
    background-color: #f8f9fa;
}

.language-arrow {
    width: 14px;
    height: 14px;
    color: #0032FF;
    transition: transform 0.2s ease;
}

.language-selector.open .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
    box-shadow:rgba(0, 0, 0, 0.1) 0px 2px 8px;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 10px;
}

.language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    color: #595959;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.15s ease;
}

.language-option:hover {
    background-color: #E6E4E4;
}


.language-option .flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
}

.language-option .language-name {
    flex: 1;
}

/* Mobile Header Controls */
.mobile-header-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-header-controls {
        display: none;
    }
}

/* Mobile Language Selector */
.mobile-language-selector {
    position: relative;
}

.mobile-language-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    color: #0032FF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.mobile-language-current:hover {
    color: #0032FF;
    background-color: #f8f9fa;
}

.mobile-language-dropdown {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 60;
}

.mobile-language-selector.open .mobile-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #595959;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.15s ease;
}

.mobile-language-option:hover {
    background-color: #E6E4E4;
    color: #0032FF;
}


/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.75rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 56px;
    height: 56px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 2rem;
    height: 3px;
    background: #00164F;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    background-image: url('images/section-letter-top-left_1757705609502.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 70px 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mobile-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    height: 100%;
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 50px;
}

.mobile-logo-img {
    height: 32px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #52546a;
    position: absolute;
    top: 75px;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 36px;
    height: 36px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    flex-grow: 1;
    justify-content: center;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #595959;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: color 0.15s ease, text-decoration 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-website-link {
    background: none;
    border: none;
    color: #595959;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: color 0.15s ease, text-decoration 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-website-link .website-icon {
    width: auto;
    height: auto;
    margin-right: 0;
}

.mobile-nav-link:hover {
    color: #0032FF;
    font-weight: 600;
    text-decoration: underline;
}

.mobile-website-link {
    color: #0032FF;
    font-weight: 600;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-website-link:hover {
    color: rgba(0, 50, 255, 0.8);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: none;
}

.mobile-overlay.show {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 485px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-logo {
    max-width: 100%;
    height: auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    display: block;
    font-size: 1.875rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: #0028AF;
    margin-bottom: 1.5rem;
}
.section-title strong{
    color: #0032FF;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #52546a;
    max-width: 48rem;
    margin: 0 auto;
}

/* VP Section */
.vp-section {
    padding-top: 100px;
    background: #F9F9FE url('images/section-letter-top-left_1757607545783.png') no-repeat top left;
}

.vp-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .vp-content {
        grid-template-columns: 1fr 1fr;
    }
}

.vp-letter {
    font-size: 1.125rem;
    color: #52546a;
    line-height: 1.75;
}

.vp-letter p {
    margin-bottom: 1.5rem;
}

.vp-signature {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signature-img {
    max-width: 120px;
    height: auto;
}

.signature-name {
    font-weight: 600;
    color: #00164F;
}

.signature-title {
    color: #52546a;
}

.vp-photo {
    text-align: center;
}

.vp-img {
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.video-section {
    padding: 2rem 0;
    background: #F9F9FE url('images/section-letter-right_1757610484756.png') no-repeat top right;
    background-size: auto;
}

.video-section .container {
    text-align: center;
}

.video-wrapper {
    max-width: 735px;
    margin: 0 auto;
    min-height: 415px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section iframe {
    width: 100%;
    height: 415px;
    border-radius: 0.5rem;
}

.video-content {
    display: flex;
    margin-top: 100px;
    gap: 11rem;
}

@media (max-width: 767px) {
    .video-content {
        display: block;
    }
}

.video-content > div:first-child {
    flex: 2;
}

.video-content > div:last-child {
    flex: 1;
}

.video-content .section-title {
    text-align: left;
    font-size: 40px;
    color: #00164F;
    line-height: 55px;
}



/* Values Section */
.values-section {
    padding: 2rem 0;
    background: #F9F9FE;
}

.values-section .section-title {
    font-size: 30px;
    color: #00164F;
    font-weight: 600;
    text-align: left;
}

.policies-section .section-title {
    color: #0032ff;
    font-weight: 600;
    line-height: 1.4;
}

.values-section .section-header {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: #F0F1F9;
    padding: clamp(1.5rem, 5vw, 2rem);
    border-radius: 8px;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-2px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.value-icon svg {
    color: white;
}

.value-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #52546A;
    margin-bottom: 1rem;
}

.value-title strong {
    color: #0028AF;
    font-weight: 600;
}


.values-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    background: #c2df3b;
    color: #0028af;
    padding: 24px 94px;
    border-radius: 80px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

@media (max-width: 767px) {
    .cta-button {
        width: 100%;
    }
}

.cta-button .button-arrow {
    position: absolute;
    right: 15px;
    width: 16px;
    height: 16px;
}

.cta-button:hover {
    background: #0028AF;
    color: #fff;
}

.cta-button:hover .button-arrow {
    filter: brightness(0) invert(1);
}

/* Policies Section */
.policies-section {
    padding: 5rem 0;
    background: #F9F9FE;
    background-image: url('images/blur_1757614525361.png'), url('images/detail-bot_1757621896869.png');
    background-position: top left, bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

.policies-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11rem;
}

@media (min-width: 768px) {
    .policies-content {
        grid-template-columns: 1fr 2.5fr;
    }
}

.policies-intro-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00164F;
}

.policies-intro {
    font-size: 18px;
    color: #52546A;
    line-height: 26px;
    font-weight: 300;
    margin-top: 1.5rem;
}

.policies-intro p {
    font-size: 18px;
    color: #52546A;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.documents-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00164F;
    margin-bottom: 1.5rem;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.document-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 20px;
    background: #F0F1F9;
    border-radius: 8px;
    color: #0028AF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.document-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.document-link span {
    line-height: 22px;
}

.document-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.document-action {
    display: flex;
    align-items: center;
    gap: 8px;
}

.document-action span {
    font-size: 14px;
    font-weight: 600;
    color: #0032FF;
    text-decoration: underline;
}

.action-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}

.document-link:hover {
    background: #0028AF;
    color: #fff;
}

.document-link:hover .document-action span {
    color: #fff;
}

.document-link:hover .action-icon {
    filter: brightness(0) invert(1);
}

.document-link:hover .document-icon {
    filter: brightness(0) invert(1);
}

/* Reporting Section */
.reporting-section {
    padding: 5rem 0;
    background: #F9F9FE;
    background-image: url('images/cta-bg_1757622156285.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reporting-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .reporting-content {
        grid-template-columns: 1fr 1.5fr;
    }
}

.reporting-visual {
    text-align: center;
}

.shield-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16rem;
    height: 16rem;
    margin: 0 auto;
    background: linear-gradient(135deg, #00164F, #0ea5e9);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reporting-image {
    height: auto;
    max-width: 100%;
}

.reporting-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #00164F;
    margin-bottom: 1.5rem;
}

.reporting-description {
    margin-bottom: 50px;
}

.reporting-description p {
    color: white;
    font-weight: 300;
    line-height: 1.5;
    font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.156), 1.125rem);
    margin-bottom: 1rem;
}

.confidentiality-notice {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0ea5e9;
    margin-bottom: 1.5rem;
}

.notice-title {
    font-weight: 600;
    color: #00164F;
    margin-bottom: 0.5rem;
}

.notice-text {
    color: #52546a;
    font-size: 0.875rem;
}

.access-button {
    background: #c2df3b;
    color: #0028af;
    padding: 24px 110px;
    border-radius: 80px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(194, 223, 59, 0.3);
    transform: scale(1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

@media (max-width: 767px) {
    .access-button {
        width: 100%;
    }
}

.access-button .button-arrow {
    position: absolute;
    right: 15px;
    width: 16px;
    height: 16px;
}

.access-button:hover {
    background: #0028AF;
    color: #fff;
}

.access-button:hover .button-arrow {
    filter: brightness(0) invert(1);
}

/* Footer */
.footer {
    background: #F9F9FE;
    color: #52546A;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 4fr 3fr 3fr;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .footer-logos {
        align-items: center;
    }
}

.footer-logo-img {
    height: auto;
}

.footer-description {
    color: #6b7280;
    line-height: 1.75;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0032FF;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav.social-nav {
    flex-direction: row;
    gap: 24px;
}

.footer-link {
    color: #52546A;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0028AF;
}

.contact-info {
    color: #bfdbfe;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.address {
    font-size: 0.875rem;
    line-height: 1.75;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0032FF;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: #001f99;
}

.footer-website-link {
    padding-top: 1.5rem;
}

/* Copyright */
.copyright {
    background: #F0F1F9;
    color: #52546A;
    padding: clamp(1.5rem, 5vw, 2rem) 0;
}

.copyright-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .copyright-content {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        gap: 2rem;
    }
}

.copyright-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.156), 1rem);
}

@media (max-width: 767px) {
    .copyright-column {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .copyright-column:first-child {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    
    .copyright-column:nth-child(2) {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    
    .copyright-column:last-child {
        justify-content: flex-end;
        align-items: center;
    }
}

.country-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.25rem;
}

.copyright-text {
    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.156), 1rem);
    color: #52546A;
}

.copyright-text .copyright-link[href*="ivoire.com.br"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.ivoire-logo {
    width: 1em;
    height: 1em;
    display: block;
}

.copyright-separator {
    color: #52546A;
    font-weight: 300;
}

.copyright-link {
    color: #52546A;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.156), 1rem);
}

.copyright-link:hover {
    color: #0028AF;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #00174F;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 40;
    transform: translateY(100px);
    opacity: 0;
}

.back-to-top.show {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    background: #001a54;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
}