@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #19196f;
    --secondary-color: #ff781e;
    --accent-color: #eaeaea;
    --blue-light: #ced3fd;
    --orange-light: #fde4d5;
    --dark-color: #1f2937;
    --light-color: #eaeaea;
    --text-color: #374151;
    --white: #ffffff;
    --gray: #6b7280;
    --cinza: #eaeaea;
    --gradient-primary: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    --gradient-primary-light: linear-gradient(90deg, rgba(0, 31, 254, 0.2), rgba(255, 120, 30, 0.2));
    --gradient-footer: linear-gradient(135deg, #19196f, #2c2c54);
    --gradient-contact: linear-gradient(180deg, #191a6d, #2c2c54);
    --gradient-footer-inverted: linear-gradient(180deg, #2c2c54, #191a6d);
}

body {
    font-family: 'SUSE', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 800;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.services-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.services-content-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.services-content .section-title {
    text-align: right;
    margin-bottom: 0.1rem;
}

.services-content .section-description {
    text-align: right;
    margin-bottom: 1.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    font-style: italic;
    color: var(--secondary-color);
}

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

.services-text p {
    color: var(--text-color);
    line-height: 1.5rem;
    font-size: 15px;
    text-align: justify;
}

.btn-servicos {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 250px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-servicos-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-servicos-icon {
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
}

.btn-servicos:hover .btn-servicos-icon-wrapper {
    transform: rotate(90deg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    line-height: 3rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 160px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 31, 254, 0.15);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-title {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-description {
    color: var(--gray);
    line-height: 1.6;
}

.service-card-radar {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-radar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/radar.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-radar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-radar:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-radar:hover::before {
    transform: scale(1.1);
}

.service-card-radar .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.btn-card-radar {
    display: none;
}

/* Service Card - Despacho Aduaneiro */
.service-card-despacho {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-despacho::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/despacho-aduaneiro.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-despacho::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-despacho:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-despacho:hover::before {
    transform: scale(1.1);
}

.service-card-despacho .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* Service Card - Importação por Encomenda */
.service-card-encomenda {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-encomenda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/importacao-por-encomenda.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-encomenda::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-encomenda:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-encomenda:hover::before {
    transform: scale(1.1);
}

.service-card-encomenda .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* Service Card - Controle de Qualidade */
.service-card-qualidade {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-qualidade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/controle-de-qualidade.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-qualidade::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-qualidade:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-qualidade:hover::before {
    transform: scale(1.1);
}

.service-card-qualidade .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* Service Card - Transporte */
.service-card-transporte {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-transporte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/transporte-internacional-e-nacional.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-transporte::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-transporte:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-transporte:hover::before {
    transform: scale(1.1);
}

.service-card-transporte .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* Service Card - Assessoria Tributária */
.service-card-tributaria {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-tributaria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/assessoria-tributaria.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-tributaria::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-tributaria:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-tributaria:hover::before {
    transform: scale(1.1);
}

.service-card-tributaria .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* Service Card - Sourcing */
.service-card-sourcing {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-sourcing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/sourcing-e-pesquisa-de-fornecedores.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-sourcing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-sourcing:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-sourcing:hover::before {
    transform: scale(1.1);
}

.service-card-sourcing .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* Service Card - Conta e Ordem */
.service-card-conta-ordem {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.service-card-conta-ordem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/cards/insumos-e-materia-prima.webp') center/cover no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-conta-ordem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 1;
}

.service-card-conta-ordem:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-conta-ordem:hover::before {
    transform: scale(1.1);
}

.service-card-conta-ordem .service-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* About Section */
.about-section {
    padding: 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 0;
    position: relative;
    
}

.about-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    z-index: 0;
    margin-left: -100vw;
    padding-left: 100vw;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
}

.about-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
    position: relative;
    z-index: 1;
}

.about-content-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 0.1rem;
}

.about-content .section-description {
    text-align: left;
    margin-bottom: 0.8rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    font-style: italic;
    color: var(--secondary-color);
}

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

.about-text p {
    color: var(--text-color);
    line-height: 1.5rem;
    font-size: 15px;
    text-align: justify;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 170px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-about-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-about-icon {
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
}

.btn-about:hover .btn-about-icon-wrapper {
    transform: rotate(90deg);
}

/* Cambio Section */
.cambio-section {
    padding: 0;
    background: url('../assets/img/backgrounds/cambio.webp') center/cover no-repeat;
    position: relative;
    min-height: 500px;
}

.cambio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 111, 0.6);
    z-index: 0;
}

.cambio-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.cambio-unified-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cambio-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cambio-col-left {
    border-right: 2px solid var(--accent-color);
    padding-right: 3rem;
}

.cambio-col-right {
    padding-left: 1rem;
}

.cambio-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cambio-col-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.cambio-update-time {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

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

.converter-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.converter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}

.converter-group input,
.converter-group select {
    padding: 0.9rem 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-family: 'SUSE', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: var(--white);
}

.converter-group input:focus,
.converter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 31, 254, 0.1);
}

.converter-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.8rem;
    align-items: end;
}

.swap-button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.swap-button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 31, 254, 0.3);
}

.swap-button svg {
    color: var(--white);
}

.converter-result {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    
}

.result-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.result-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-color);
}

.currency-card {
    background: rgba(240, 240, 240, 0.5);
    border-radius: 10px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.currency-card:hover {
    background: rgba(240, 240, 240, 0.8);
    border-color: var(--primary-color);
}

.currency-flag {
    font-size: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-flag img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.currency-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.currency-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.currency-code {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.currency-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.value-large {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-color);
}

.value-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
}

.value-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.value-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.cambio-disclaimer {
    color: var(--gray);
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
}

/* Importacao Section */
.importacao-section {
    padding: 0 0;
    background-color: var(--light-color);
}

.importacao-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.importacao-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--cinza);
    
}

.importacao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.importacao-image:hover img {
    transform: scale(1.1);
}

.importacao-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.importacao-content-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.importacao-content .section-title {
    text-align: right;
    margin-bottom: 0.1rem;
}

.importacao-content .section-description {
    text-align: right;
    margin-bottom: 0.8rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    font-style: italic;
    color: var(--secondary-color);
}

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

.importacao-text p {
    color: var(--text-color);
    line-height: 1.5rem;
    font-size: 15px;
    text-align: justify;
}

.btn-importacao {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-importacao-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-importacao-icon {
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
}

.btn-importacao:hover .btn-importacao-icon-wrapper {
    transform: rotate(90deg);
}

/* Oceano Section */
.oceano-section {
    position: relative;
    height: 500px;
    background: url('../assets/img/backgrounds/background-oceano.webp') center/cover no-repeat;
    overflow: hidden;
}

.oceano-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 254, 0.2);
    z-index: 1;
}

.oceano-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.oceano-text-wrapper {
    max-width: 600px;
}

.oceano-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.oceano-title .highlight {
    font-weight: 900;
}

.ship-container {
    position: absolute;
    bottom: 20%;
    right: 0;
    z-index: 2;
    width: 650px;
    height: auto;
    transform: translateX(100%);
    transition: transform 0.1s ease-out;
}

.ship {
    width: 100%;
    height: auto;
    display: block;
}

/* Exportacao Section */
.exportacao-section {
    padding: 0 0;
    background-color: var(--light-color);
}

.exportacao-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.exportacao-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--cinza);
    
}

.exportacao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exportacao-image:hover img {
    transform: scale(1.1);
}

.exportacao-content {
    display: flex;
    align-items: center;
}

.exportacao-content-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.exportacao-content .section-title {
    text-align: left;
    margin-bottom: 0.1rem;
}

.exportacao-content .section-description {
    text-align: left;
    margin-bottom: 0.8rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    font-style: italic;
    color: var(--secondary-color);
}

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

.exportacao-text p {
    color: var(--text-color);
    line-height: 1.5rem;
    font-size: 15px;
    text-align: justify;
}

.btn-exportacao {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-exportacao-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-exportacao-icon {
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
}

.btn-exportacao:hover .btn-exportacao-icon-wrapper {
    transform: rotate(90deg);
}

/* Contact Section */
.contact-section {
    padding: 0;
    background: var(--gradient-contact);

}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.contact-content-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.contact-content .section-title {
    text-align: right;
    margin-bottom: 0.1rem;
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
}

.contact-content .section-description {
    text-align: right;
    margin-bottom: 0.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    font-style: italic;
    color: var(--white);
}

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

.contact-text p {
    color: var(--white);
    line-height: 1.5rem;
    font-size: 15px;
    text-align: justify;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-list li {
    color: var(--white);
    font-size: 15px;
    line-height: 1.8;
    padding: 0.6rem 1rem 0.6rem 3rem;
    position: relative;
    background: var(--secondary-color);
    border-radius: 8px;
}

.contact-list li::before {
    content: '';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23ff781e" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.contact-form-wrapper {
    
    padding: 2.5rem;
    
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-family: 'SUSE', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 31, 254, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border: none;
    border-radius: 30px;
    font-family: 'SUSE', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 200px;
    text-align: center;
}


.btn-contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-contact:hover .btn-contact-icon-wrapper {
    transform: rotate(90deg);
}

.btn-contact-icon {
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
}

/* Secure Section */
.secure-section {
    padding: 5rem 0;
    background: url('../assets/img/backgrounds/background-secure.webp') center/cover no-repeat;
    position: relative;
    min-height: 500px;
}

.secure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.7), rgba(42, 140, 177, 0.7));
    z-index: 0;
}

.secure-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.secure-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.secure-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
}

.secure-text {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.5rem;
    text-align: justify;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.certifications-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.certifications-row-small {
    gap: 2rem;
}

.certification-seal {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.certification-seal:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Universo Comex Section */
.universo-comex-section {
    padding: 0 0;
    background-color: var(--light-color);
}

.universo-comex-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.universo-comex-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--cinza);
}

.universo-comex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.universo-comex-image:hover img {
    transform: scale(1.1);
}

.universo-comex-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.universo-comex-content-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.universo-comex-content .section-title {
    text-align: right;
    margin-bottom: 0.1rem;
}

.universo-comex-content .section-description {
    text-align: right;
    margin-bottom: 0.8rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    font-style: italic;
    color: var(--secondary-color);
}

.universo-comex-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.universo-comex-text p {
    color: var(--text-color);
    line-height: 1.5rem;
    font-size: 15px;
    text-align: justify;
}

.btn-universo-comex {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-universo-comex-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-universo-comex-icon {
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
}

.btn-universo-comex:hover .btn-universo-comex-icon-wrapper {
    transform: rotate(90deg);
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: #f9fafc;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header .section-description {
    color: var(--secondary-color);
    font-style: italic;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
    font-size: 0.85rem;
    background: var(--gradient-footer);
    padding: 1rem 1.5rem;
    margin: -1.5rem -1.5rem 0.8rem -1.5rem;
}

.blog-card-date,
.blog-card-reading-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-date svg,
.blog-card-reading-time svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    min-height: 2.6rem;
}

.blog-card-excerpt {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card-link:hover svg {
    transform: translateX(5px);
}

.blog-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    max-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-blog-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-blog-icon {
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
}

.btn-blog:hover .btn-blog-icon-wrapper {
    transform: rotate(90deg);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header .section-description {
    color: var(--secondary-color);
    font-style: italic;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gradient-footer);
    border: none;
    border-radius: 0;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: 'SUSE', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.faq-item:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    flex: 1;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-icon {
    flex-shrink: 0;
    min-width: 20px;
    color: var(--white);
}

/* FAQ Modal */
.faq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.faq-modal.active {
    display: flex;
}

.faq-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

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

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

.faq-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.faq-modal-close:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.faq-modal-question {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
    line-height: 1.3;
}

.faq-modal-answer {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.faq-modal-answer p:last-child {
    margin-bottom: 0;
}

.faq-modal-answer strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Footer */
.footer {
    background: #2c2c54;
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo-section {
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-address p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.footer-address .address-title {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-links,
.footer-offices {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

.footer-offices li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 0.8;
}

.footer-offices li strong {
    color: var(--white);
    display: block;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--secondary-color);
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Notificações */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.2rem 1.5rem;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(450px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: #10b981;
    color: var(--white);
}

.notification-error .notification-icon {
    background: #ef4444;
    color: var(--white);
}

.notification-message {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        margin-top: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .dropdown-menu a {
        padding: 0.6rem 2rem;
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-content-inner {
        max-width: 100%;
        align-items: center;
    }

    .services-content .section-title,
    .services-content .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .services-text p {
        text-align: justify;
    }

    .btn-servicos {
        align-self: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        height: 160px;
    }

    .service-title {
        min-height: auto;
    }

    .service-card-radar .service-title,
    .service-card-despacho .service-title,
    .service-card-encomenda .service-title,
    .service-card-qualidade .service-title,
    .service-card-transporte .service-title,
    .service-card-tributaria .service-title,
    .service-card-sourcing .service-title,
    .service-card-conta-ordem .service-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-wrapper::before {
        display: none;
    }

    .about-image {
        min-height: 400px;
    }

    .about-content {
        padding: 2rem;
    }

    .about-content-inner {
        max-width: 100%;
        align-items: center;
    }

    .about-content .section-title,
    .about-content .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .btn-about {
        align-self: center;
    }

    .cambio-section {
        min-height: 400px;
    }

    .cambio-wrapper {
        padding: 2rem 0;
    }

    .cambio-unified-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .cambio-col-left {
        border-right: none;
        border-bottom: 2px solid var(--accent-color);
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .cambio-col-right {
        padding-left: 0;
        padding-top: 1rem;
    }

    .cambio-col-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .cambio-col-title {
        font-size: 1.3rem;
    }

    .cambio-update-time {
        font-size: 0.75rem;
    }

    .converter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .swap-button {
        display: none;
    }

    .currency-card {
        grid-template-columns: 50px 1fr auto;
        padding: 1rem;
    }

    .currency-flag {
        font-size: 1.8rem;
    }

    .currency-flag img {
        width: 35px;
        height: 35px;
    }

    .currency-name {
        font-size: 0.95rem;
    }

    .value-large {
        font-size: 1.2rem;
    }

    .importacao-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .importacao-image {
        min-height: 400px;
    }

    .importacao-content {
        padding: 2rem;
    }

    .importacao-content-inner {
        max-width: 100%;
        align-items: center;
    }

    .importacao-content .section-title,
    .importacao-content .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .btn-importacao {
        align-self: center;
    }

    .oceano-section {
        height: 350px;
        background-attachment: scroll;
    }

    .oceano-title {
        font-size: 2.5rem;
    }

    .ship-container {
        width: 500px;
        bottom: 15%;
    }

    .exportacao-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .exportacao-image {
        min-height: 400px;
    }

    .exportacao-content {
        padding: 2rem;
    }

    .exportacao-content-inner {
        max-width: 100%;
        align-items: center;
    }

    .exportacao-content .section-title,
    .exportacao-content .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .btn-exportacao {
        align-self: center;
    }

    .universo-comex-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .universo-comex-image {
        min-height: 400px;
        order: 2;
    }

    .universo-comex-content {
        padding: 2rem;
        order: 1;
    }

    .universo-comex-content-inner {
        max-width: 100%;
        align-items: center;
    }

    .universo-comex-content .section-title,
    .universo-comex-content .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .btn-universo-comex {
        align-self: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        padding: 2rem 2rem 0 2rem;
    }

    .contact-content-inner {
        max-width: 100%;
        align-items: center;
    }

    .contact-content .section-title,
    .contact-content .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-text p {
        text-align: justify;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn-contact {
        max-width: 100%;
        align-self: center;
    }

    .notification {
        left: 20px;
        right: 20px;
        min-width: auto;
        max-width: calc(100% - 40px);
    }

    .blog-section {
        padding: 4rem 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .btn-blog {
        max-width: 100%;
    }

    .secure-section {
        min-height: 400px;
    }

    .secure-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .secure-left {
        display: none;
    }

    .secure-title {
        font-size: 2rem;
        text-align: center;
    }

    .secure-text {
        font-size: 1rem;
        text-align: justify;
    }

    .certifications {
        margin-top: 1.5rem;
    }

    .certifications-row {
        gap: 1rem;
    }

    .certification-seal {
        width: 90px;
        height: auto;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-item {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }

    .faq-modal-content {
        padding: 2rem;
    }

    .faq-modal-question {
        font-size: 1.6rem;
    }

    .faq-modal-answer {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-logo {
        height: 26px;
    }

    .footer-title {
        font-size: 1.15rem;
    }

    .footer-address p,
    .footer-links li a,
    .footer-offices li {
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero-description {
        font-size: 1.1rem;
    }

    .servicos-page-section {
        padding: 4rem 0;
    }

    .servicos-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .servico-card-title {
        font-size: 1rem;
        min-height: 2.6rem;
        max-height: 2.6rem;
    }

    .btn-servico {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        text-align: center !important;
    }

    .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .services-section {
        padding: 3rem 0;
    }

    .services-text p {
        font-size: 1rem;
        text-align: justify;
    }

    .btn-servicos {
        align-self: center;
    }

    .service-card {
        padding: 1.5rem;
        height: 150px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-card-radar .service-title,
    .service-card-despacho .service-title,
    .service-card-encomenda .service-title,
    .service-card-qualidade .service-title,
    .service-card-transporte .service-title,
    .service-card-tributaria .service-title,
    .service-card-sourcing .service-title,
    .service-card-conta-ordem .service-title {
        font-size: 1.1rem;
        line-height: 1.2;
        padding: 0 1rem;
    }

    .about-section {
        padding: 0;
    }

    .about-wrapper::before {
        display: none;
    }

    .about-image {
        min-height: 300px;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .cambio-section {
        min-height: 300px;
    }

    .cambio-wrapper {
        padding: 1.5rem 0;
    }

    .cambio-unified-panel {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .cambio-col-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .cambio-col-title {
        font-size: 1.2rem;
    }

    .cambio-update-time {
        font-size: 0.7rem;
    }

    .result-value {
        font-size: 1.3rem;
    }

    .currency-card {
        grid-template-columns: 45px 1fr;
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .currency-flag {
        font-size: 1.5rem;
    }

    .currency-flag img {
        width: 30px;
        height: 30px;
    }

    .currency-name {
        font-size: 0.85rem;
    }

    .value-large {
        font-size: 1.1rem;
    }

    .currency-code {
        font-size: 0.75rem;
    }

    .currency-value {
        grid-column: 2;
        align-items: flex-start;
        margin-top: 0.5rem;
    }

    .value-large {
        font-size: 1.2rem;
    }

    .value-change {
        font-size: 0.8rem;
    }

    .importacao-section {
        padding: 3rem 0;
    }

    .importacao-image {
        min-height: 300px;
    }

    .importacao-content {
        padding: 1.5rem;
    }

    .importacao-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .oceano-section {
        height: 300px;
        background-attachment: scroll;
    }

    .oceano-section .container {
        align-items: center;
        justify-content: center;
        padding-top: 3rem;
    }

    .oceano-text-wrapper {
        text-align: center;
    }

    .oceano-title {
        font-size: 1rem;
        text-align: center !important;
    }

    .ship-container {
        width: 300px;
        bottom: 5%;
    }

    .exportacao-section {
        padding: 3rem 0;
    }

    .exportacao-image {
        min-height: 300px;
    }

    .exportacao-content {
        padding: 1.5rem;
    }

    .exportacao-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .universo-comex-section {
        padding: 3rem 0;
    }

    .universo-comex-image {
        min-height: 300px;
    }

    .universo-comex-content {
        padding: 1.5rem;
    }

    .universo-comex-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .contact-section {
        padding: 0;
    }

    .contact-wrapper {
        gap: 0;
    }

    .contact-content {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }

    .contact-list li {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0.5rem 0.8rem 0.5rem 2.5rem;
    }

    .contact-list li::before {
        left: 0.6rem;
        width: 20px;
        height: 20px;
        background-size: 12px 12px;
    }

    .blog-section {
        padding: 2.5rem 0;
    }

    .blog-header {
        margin-bottom: 2rem;
    }

    .blog-grid {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 1.2rem;
    }

    .blog-card-meta {
        padding: 0.8rem 1.2rem;
        margin: -1.2rem -1.2rem 0.8rem -1.2rem;
    }

    .blog-card-title {
        font-size: 1.1rem;
        min-height: auto;
    }

    .blog-card-excerpt {
        font-size: 0.9rem;
    }

    .blog-card-meta {
        font-size: 0.8rem;
        gap: 1rem;
    }

    .btn-blog {
        max-width: 100%;
    }

    .secure-section {
        min-height: 300px;
        padding: 3rem 0;
    }

    .secure-title {
        font-size: 1.75rem;
        text-align: center !important;
    }

    .secure-text {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: justify;
    }

    .certifications {
        margin-top: 1rem;
        gap: 1rem;
    }

    .certifications-row {
        gap: 0.8rem;
    }

    .certifications-row-small {
        gap: 1.5rem;
    }

    .certification-seal {
        width: 70px;
        height: auto;
    }

    .faq-section {
        padding: 2.5rem 0;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-container {
        gap: 0.8rem;
    }

    .faq-item {
        font-size: 12px;
        padding: 0.8rem 1rem;
    }

    .faq-question {
        line-height: 1.4;
    }

    .faq-icon {
        min-width: 18px;
        width: 18px;
        height: 18px;
    }

    .faq-modal {
        padding: 1rem;
    }

    .faq-modal-content {
        padding: 1.5rem;
        max-height: 90vh;
    }

    .faq-modal-question {
        font-size: 1.3rem;
        padding-right: 2.5rem;
        line-height: 1.3;
    }

    .faq-modal-answer {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .faq-modal-answer p {
        margin-bottom: 0.8rem;
    }

    .faq-modal-close {
        width: 35px;
        height: 35px;
        top: 1rem;
        right: 1rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer .container {
        padding: 0 15px;
    }

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

    .footer-column {
        width: 100%;
        max-width: 100%;
    }

    .footer-logo {
        height: 22px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-address p,
    .footer-links li a,
    .footer-offices li {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 0.8rem;
        justify-content: flex-start;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .page-hero {
        padding: 3rem 0 2rem;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .page-hero-description {
        font-size: 1rem;
    }

    .servicos-page-section {
        padding: 3rem 0;
    }

    .servicos-page-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .servico-card-content {
        padding: 1.5rem;
    }

    .servico-card-title {
        font-size: 0.95rem;
        min-height: 2.47rem;
        max-height: 2.47rem;
    }

    .servico-card-description {
        font-size: 0.95rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal-links a {
        font-size: 0.8rem;
    }

    .footer-legal-links .separator {
        font-size: 0.8rem;
    }
}

/* =====================================
   RADAR PAGE STYLES
   ===================================== */

/* Hero Section */
.radar-hero {
    background-image: url('../assets/img/backgrounds/hero-radar.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.radar-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.70) 50%, rgba(25, 25, 111, 0.15) 90%);
    z-index: 1;
}

.radar-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.radar-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.radar-hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-style: italic;
    line-height: 1.4;
}

.radar-hero-cta {
    margin-top: 2rem;
}

.radar-hero-cta .btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 120, 30, 0.3);
}

.radar-hero-cta .btn-primary:hover {
    background: #e66a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 120, 30, 0.4);
}

/* Problem Solution Section */
.radar-problem-solution {
    padding: 5rem 0;
    background: var(--white);
}

.radar-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.radar-content-wrapper.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    text-align: left;
    align-items: start;
}

.radar-content-wrapper.two-columns .left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.radar-content-wrapper.two-columns .right-column {
    display: flex;
    flex-direction: column;
}

.radar-content-wrapper.two-columns .section-title {
    text-align: left;
    margin-bottom: 0;
}

.radar-problem-solution .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.radar-problem-solution-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Differentials Section */
.radar-differentials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff, #fff5f0);
}

.radar-differentials .section-title {
     font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.radar-differentials .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.radar-differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.radar-differential-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.radar-differential-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.radar-differential-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.radar-differential-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.radar-differential-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Modalities Section */
.radar-modalities {
    padding: 5rem 0;
    background: var(--white);
}

.radar-modalities .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.radar-modalities .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.radar-modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.radar-modality-card {
    background: linear-gradient(135deg, var(--primary-color), #2c2c54);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.radar-modality-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 120, 30, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.radar-modality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(25, 25, 111, 0.3);
}

.radar-modality-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.radar-modality-features {
    list-style: none;
    position: relative;
    z-index: 2;
}

.radar-modality-features li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.radar-modality-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.radar-modalities-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--orange-light);
    border-radius: 10px;
    max-width: auto;
    margin-left: auto;
    margin-right: auto;
}

.radar-modalities-note p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

/* Process Section */
.radar-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff, #fff5f0);
}

.radar-process .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.radar-process .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.radar-process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.radar-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.radar-process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.radar-process-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.radar-process-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* FAQ Section */
.radar-faq {
    padding: 5rem 0;
    background: var(--white);
}

.radar-faq .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.radar-faq .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.radar-faq-container {
    max-width: 1300px;
    margin: 0 auto;
}

.radar-faq-item {
    background: var(--gradient-footer);
    margin-bottom: 1rem;
    border-radius: 0;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: 'SUSE', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.radar-faq-item:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.radar-faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.radar-faq-icon {
    flex-shrink: 0;
    min-width: 20px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.radar-faq-item:hover .radar-faq-icon {
    transform: translateX(5px);
}

/* Radar FAQ Modal */
.radar-faq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.radar-faq-modal.active {
    display: flex;
}

.radar-faq-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.radar-faq-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: radarModalSlideIn 0.3s ease;
    z-index: 1;
}

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

.radar-faq-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.radar-faq-modal-close:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.radar-faq-modal-question {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
    line-height: 1.3;
}

.radar-faq-modal-answer {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.radar-faq-modal-answer p {
    margin-bottom: 1rem;
}

.radar-faq-modal-answer p:last-child {
    margin-bottom: 0;
}

.radar-faq-modal-answer strong {
    color: var(--primary-color);
    font-weight: 700;
}

.radar-faq-modal-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.radar-faq-modal-answer li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .radar-hero {
        min-height: auto;
        padding: 10rem 0 5rem;
    }

    .radar-hero-title {
        font-size: 2.5rem;
    }

    .radar-hero-subtitle {
        font-size: 1.2rem;
    }

    .radar-problem-solution .section-title,
    .radar-differentials .section-title,
    .radar-modalities .section-title,
    .radar-process .section-title,
    .radar-faq .section-title {
        font-size: 2rem;
    }

    .radar-content-wrapper.two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .radar-content-wrapper.two-columns .section-title {
        margin-bottom: 1.5rem;
    }

    .radar-differentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .radar-modalities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .radar-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .radar-differential-item,
    .radar-modality-card,
    .radar-process-step {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .radar-hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .radar-hero-subtitle {
        font-size: 1.1rem;
    }

    .radar-problem-solution .section-title,
    .radar-differentials .section-title,
    .radar-modalities .section-title,
    .radar-process .section-title,
    .radar-faq .section-title {
        font-size: 1.8rem;
    }

    .radar-content-wrapper.two-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .radar-content-wrapper.two-columns .section-title {
        margin-bottom: 1rem;
        text-align: center;
    }

    .radar-problem-solution-content p {
        font-size: 1.1rem;
    }

    .radar-differential-item,
    .radar-modality-card,
    .radar-process-step,
    .radar-faq-item {
        padding: 1.5rem;
    }
}

/* Hero Backgrounds Específicos */
.insumos-hero {
    background-image: url('../assets/img/backgrounds/hero-importar-insumos-e-materia-prima.webp');
}

.sourcing-hero {
    background-image: url('../assets/img/backgrounds/hero-sourcing-e-pesquisa-de-produtos.webp');
}

.tributaria-hero {
    background-image: url('../assets/img/backgrounds/hero-acessoria-tributaria.webp');
}

.transporte-hero {
    background-image: url('../assets/img/backgrounds/hero-transporte-internacional-e-nacional.webp');
}

.qualidade-hero {
    background-image: url('../assets/img/backgrounds/hero-controle-de-qualidade.webp');
}

.despacho-hero {
    background-image: url('../assets/img/backgrounds/hero-despacho-aduaneiro.webp');
}

.encomenda-hero {
    background-image: url('../assets/img/backgrounds/hero-importacao-por-encomenda.webp');
}

.exportacao-hero {
    background-image: url('../assets/img/backgrounds/hero-exportacao.webp');
}

.importacao-hero {
    background-image: url('../assets/img/backgrounds/hero-importacao.webp');
}

/* Giants Flag Icons - Estilo especial para bandeiras */
.giants-flag-icon {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giants-flag-icon .flag-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.radar-differential-item:hover .giants-flag-icon .flag-image {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* History Timeline Section */
.history-timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.history-timeline-section .section-title {
    text-align: center;
    margin-bottom: 10px;
    color: #19196f;
    font-size: 2.5rem;
    font-weight: 700;
}

.history-timeline-section .section-description {
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    font-size: 1.1rem;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Linha vertical central do timeline */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #19196f 0%, #ff781e 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Alternar posição dos itens */
.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #19196f 0%, #2929a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(25, 25, 111, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(25, 25, 111, 0.4);
}

/* Ponto de conexão na linha central */
.timeline-year::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff781e;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 120, 30, 0.2);
}

.timeline-item:nth-child(odd) .timeline-year::before {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-year::before {
    left: -30px;
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Seta apontando para o ano */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: 100%;
    border-width: 15px 15px 15px 0;
    border-color: transparent #ffffff transparent transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: 100%;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #ffffff;
}

.timeline-title {
    color: #19196f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.timeline-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .history-timeline-section .section-title {
        font-size: 1.8rem;
    }

    .timeline-wrapper::before {
        left: 70px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        gap: 20px;
    }

    .timeline-year {
        width: 100px;
        height: 100px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .timeline-year::before {
        right: -30px !important;
        left: auto !important;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content::before {
        right: 100% !important;
        left: auto !important;
        border-width: 10px 10px 10px 0 !important;
        border-color: transparent #ffffff transparent transparent !important;
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .timeline-text {
        font-size: 0.95rem;
    }
}

/* =====================================
   NOSSOS SERVIÇOS PAGE
   Página dedicada aos serviços da Exportime
   ===================================== */

/* Hero Section */
.nossos-servicos-hero {
    background: linear-gradient(135deg, #19196f 0%, #2a8cb1 100%);
    padding: 150px 0 100px;
    text-align: center;
}

.nossos-servicos-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.nossos-servicos-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.nossos-servicos-hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 400;
    opacity: 0.95;
}

/* Intro Section */
.nossos-servicos-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.nossos-servicos-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.nossos-servicos-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.nossos-servicos-intro-content p:last-child {
    margin-bottom: 0;
}

/* Cards Section */
.nossos-servicos-cards {
    padding: 80px 0 100px;
    background: #ffffff;
}

.nossos-servicos-cards .section-title {
    text-align: center;
    color: #19196f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.servico-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.servico-card-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.servico-card-image::before {
    z-index: 0;
}

.servico-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.85), rgba(42, 140, 177, 0.85));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.servico-card:hover .servico-card-image::after {
    opacity: 0.7;
}

.servico-card:hover .servico-card-image::before {
    transform: scale(1.1);
}

.servico-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.servico-card-title {
    color: #19196f;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.servico-card-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.btn-servico-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #19196f;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

.btn-servico-card:hover {
    background: #ff781e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 30, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .nossos-servicos-hero {
        padding: 120px 0 80px;
    }

    .nossos-servicos-hero-title {
        font-size: 2rem;
    }

    .nossos-servicos-hero-subtitle {
        font-size: 1.2rem;
    }

    .nossos-servicos-intro {
        padding: 40px 0;
    }

    .nossos-servicos-intro-content p {
        font-size: 1rem;
    }

    .nossos-servicos-cards {
        padding: 60px 0 80px;
    }

    .nossos-servicos-cards .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .servico-card-image {
        height: 200px;
    }

    .servico-card-content {
        padding: 20px;
    }

    .servico-card-title {
        font-size: 1.2rem;
    }

    .servico-card-description {
        font-size: 0.95rem;
    }
}

/* =====================================
   SHARED SERVICE PAGES STYLES
   Classes genéricas para todas as páginas de serviço
   ===================================== */

/* Hero Section - Compartilhado */
.service-page-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 111, 0.70) 50%, rgba(25, 25, 111, 0.15) 90%);
    z-index: 1;
}

.service-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-page-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-page-hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-style: italic;
    line-height: 1.4;
}

.service-page-hero-cta {
    margin-top: 2rem;
}

.service-page-hero-cta .btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 120, 30, 0.3);
}

.service-page-hero-cta .btn-primary:hover {
    background: #e66a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 120, 30, 0.4);
}

/* Problem/Solution Section - Compartilhado */
.service-page-problem-solution {
    padding: 5rem 0;
    background: var(--white);
}

.service-page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-page-content-wrapper.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    text-align: left;
    align-items: start;
}

.service-page-content-wrapper.two-columns .left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-page-content-wrapper.two-columns .right-column {
    display: flex;
    flex-direction: column;
}

.service-page-content-wrapper.two-columns .section-title {
    text-align: left;
    margin-bottom: 0;
}

.service-page-problem-solution .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-page-problem-solution-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Differentials Section - Compartilhado */
.service-page-differentials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff, #fff5f0);
}

.service-page-differentials .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-page-differentials .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-page-differential-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-page-differential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-page-differential-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-page-differential-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-page-differential-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    
}
.service-page-differentials-content
{
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding: 10px;
    text-align: center;
    background-color: #fee4d5;
    
}

.service-page-differential-text:last-child {
    margin-bottom: 0;
}

/* Modalities Section - Compartilhado */
.service-page-modalities {
    padding: 5rem 0;
    background: var(--white);
}

.service-page-modalities .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-page-modalities .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-modalities-content {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-page-modality-card {
    background: linear-gradient(135deg, var(--primary-color), #2c2c54);
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-page-modality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 25, 111, 0.3);
}

.service-page-modality-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-page-modality-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-page-modality-features li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.service-page-modality-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.service-page-modalities-note,
.highlight-quote {
    padding: 1.5rem;
    background: var(--orange-light);
    border-radius: 10px;
    max-width: auto;
    margin: 0 auto 3rem;
}

.service-page-modalities-note p,
.highlight-quote p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
}

/* Process Section - Compartilhado */
.service-page-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff, #fff5f0);
}

.service-page-process .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-page-process .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-process-intro,
.service-page-process-footer {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-page-process-intro p,
.service-page-process-footer p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-page-process-example {
    margin: 3rem 0;
}

.service-page-process-example h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

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

.service-page-process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-page-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-page-process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.service-page-process-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-page-process-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* FAQ Section - Compartilhado */
.service-page-faq {
    padding: 5rem 0;
    background: var(--white);
}

.service-page-faq .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-page-faq .section-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-faq-container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-page-faq-item {
    background: var(--gradient-footer);
    margin-bottom: 1rem;
    border-radius: 0;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: 'SUSE', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.service-page-faq-item:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.service-page-faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-page-faq-icon {
    flex-shrink: 0;
    min-width: 20px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.service-page-faq-item:hover .service-page-faq-icon {
    transform: translateX(5px);
}

/* FAQ Modal - Compartilhado */
.service-page-faq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-page-faq-modal.active {
    display: flex;
}

.service-page-faq-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.service-page-faq-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    max-width: 1300px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    z-index: 1;
}

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

.service-page-faq-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.service-page-faq-modal-close:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.service-page-faq-modal-question {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
    line-height: 1.3;
}

.service-page-faq-modal-answer {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-page-faq-modal-answer p {
    margin-bottom: 1rem;
}

.service-page-faq-modal-answer p:last-child {
    margin-bottom: 0;
}

.service-page-faq-modal-answer strong {
    color: var(--primary-color);
    font-weight: 700;
}

.service-page-faq-modal-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-page-faq-modal-answer li {
    margin-bottom: 0.5rem;
}

/* Responsive Design - Compartilhado */
@media (max-width: 768px) {
    .service-page-hero {
        min-height: auto;
        padding: 10rem 0 5rem;
    }

    .service-page-hero-title {
        font-size: 2.5rem;
    }

    .service-page-hero-subtitle {
        font-size: 1.2rem;
    }

    .service-page-problem-solution .section-title,
    .service-page-differentials .section-title,
    .service-page-modalities .section-title,
    .service-page-process .section-title,
    .service-page-faq .section-title {
        font-size: 2rem;
    }

    .service-page-content-wrapper.two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-page-content-wrapper.two-columns .section-title {
        margin-bottom: 1.5rem;
    }

    .service-page-differentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-page-modalities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-page-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-page-differential-item,
    .service-page-modality-card,
    .service-page-process-step {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-page-hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .service-page-hero-subtitle {
        font-size: 1.1rem;
    }

    .service-page-problem-solution .section-title,
    .service-page-differentials .section-title,
    .service-page-modalities .section-title,
    .service-page-process .section-title,
    .service-page-faq .section-title {
        font-size: 1.8rem;
    }

    .service-page-content-wrapper.two-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-page-content-wrapper.two-columns .section-title {
        margin-bottom: 1rem;
        text-align: center;
    }

    .service-page-problem-solution-content p {
        font-size: 1.1rem;
    }

    .service-page-differential-item,
    .service-page-modality-card,
    .service-page-process-step,
    .service-page-faq-item {
        padding: 1.5rem;
    }
}

/* =================================================
   RELATED ARTICLES CARD STYLES
   ================================================= */

/* Related Articles Section */
.related-articles-card {
    background: linear-gradient(135deg, #f8f9ff, #fff5f0);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.related-articles-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 25, 111, 0.1), transparent);
}

.related-articles-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.related-articles-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.related-articles-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Articles Grid */
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Individual Article Item */
.related-article-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.related-article-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.related-article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-item:hover .related-article-image img {
    transform: scale(1.1);
}

.related-article-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Article Content */
.related-article-content {
    padding: 2rem;
}

.related-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.related-article-title {
    margin-bottom: 1rem;
}

.related-article-title a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.related-article-title a:hover {
    color: var(--primary-color);
}

.related-article-excerpt {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* Tags */
.related-article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.related-article-tag {
    background: var(--blue-light);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-article-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Read More Link */
.related-article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.related-article-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.related-article-link svg {
    transition: transform 0.3s ease;
}

.related-article-link:hover svg {
    transform: translateX(3px);
}

/* CTA Button */
.related-articles-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-related-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(25, 25, 111, 0.3);
}

.btn-related-articles:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(25, 25, 111, 0.4);
}

.btn-related-articles svg {
    transition: transform 0.3s ease;
}

.btn-related-articles:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .related-articles-card {
        padding: 3rem 0;
    }

    .related-articles-title {
        font-size: 2rem;
    }

    .related-articles-subtitle {
        font-size: 1.1rem;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .related-article-content {
        padding: 1.5rem;
    }

    .related-article-title a {
        font-size: 1.2rem;
    }

    .related-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .related-articles-title {
        font-size: 1.8rem;
    }

    .related-article-content {
        padding: 1.2rem;
    }

    .btn-related-articles {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .related-article-tags {
        gap: 0.3rem;
    }

    .related-article-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Animation for scroll reveal */
.related-article-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.related-article-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay */
.related-article-item:nth-child(1) {
    transition-delay: 0.1s;
}

.related-article-item:nth-child(2) {
    transition-delay: 0.2s;
}

.related-article-item:nth-child(3) {
    transition-delay: 0.3s;
}