:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--light);
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo i {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    padding: 0.5rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-selector {
    position: relative;
}

.language-selector select {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 4px 24px 4px 8px;
    outline: none;
}

.language-selector::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    pointer-events: none;
}

.language-selector select option {
    background: #fff;
    color: #333;
}

.language-selector select:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 7rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--navy) 30%, var(--navy-light));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.1), transparent 60%);
    pointer-events: none;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.highlight-wrapper {
    display: inline-block;
    position: relative;
}

.highlight {
    background: linear-gradient(120deg, var(--primary), var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--light);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.metrics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.metric-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

.metric-card span {
    font-weight: 500;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.2s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
}

@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

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

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .cta-group {
        flex-direction: column;
    }

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

    .metrics-cards {
        grid-template-columns: 1fr;
    }
}

/* Markets Section */
.markets {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, var(--navy-light), var(--navy));
    position: relative;
    overflow: hidden;
}

.markets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.08), transparent 70%);
    pointer-events: none;
}

.markets-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.markets h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.markets-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.markets-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.markets-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.markets-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.markets-cta {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .markets {
        padding: 4rem 1.5rem;
    }

    .markets h2 {
        font-size: 2rem;
    }

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

/* Common Section Styles */
.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.08), transparent 70%);
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.company-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.company-story h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-story p {
    color: var(--gray);
    font-size: 1.125rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
}

.value-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-card .card-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .company-story {
        padding: 0 1rem;
    }

    .company-story p {
        font-size: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    background: var(--navy-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.08), transparent 70%);
    pointer-events: none;
}

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

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

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
}

.info-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.info-content p {
    color: var(--gray);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    justify-content: center;
}

/* Responsive adjustments for contact section */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

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

/* Footer Styles */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer .section-wrapper {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

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

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

.brand-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

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

.footer-section h4 {
    color: var(--light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-section i {
    font-size: 1rem;
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Responsive adjustments for footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer .section-wrapper {
        padding-top: 3rem;
    }
}

/* Ajustes no menu de navegação */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-right {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--navy);
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem;
        width: 100%;
        font-size: 1.1rem;
    }

    nav ul {
        display: none;
    }

    nav ul.open {
        display: none;
    }
}

/* Ajustes Responsivos Globais */
@media (max-width: 1200px) {
    .section-wrapper {
        padding: 0 2rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }

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

@media (max-width: 768px) {
    /* Header/Nav Responsivo */
    nav {
        padding: 1rem;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        flex-direction: column;
        padding: 1rem 0;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        padding: 1rem;
        display: block;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--light);
        cursor: pointer;
    }

    /* Ajustes de Texto */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    /* Footer Responsivo */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 576px) {
    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Ajustes para o endereço no footer */
.footer-section ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
    flex-wrap: wrap;
}

.footer-section ul li i {
    min-width: 1rem; /* Garante que os ícones fiquem alinhados */
}

/* Para links longos como o endereço */
.footer-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-section ul li i {
    margin-top: 0.25rem; /* Alinha o ícone com a primeira linha do texto */
}

.contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23f8fafc' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    padding-right: 2.5rem;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.contact-form select option {
    background: var(--navy);
    color: var(--light);
}

/* Ajuste do placeholder do select */
.contact-form select option[value=""][disabled] {
    color: var(--gray);
}

/* Estilos específicos para a página de Privacy Policy */
.privacy-policy {
    padding: 120px 20px 60px;
    background: var(--navy);
    color: var(--light);
}

.policy-header {
    margin-bottom: 50px;
    text-align: right;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 10px;
    text-align: left;
}

.last-updated {
    display: inline-block;
    color: var(--gray);
    font-size: 0.9rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* Seções da Política */
.policy-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
}

.policy-section h2 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h3 {
    color: var(--light);
    font-size: 1.4rem;
    margin: 30px 0 20px;
}

/* Conteúdo das Seções */
.section-content {
    margin-bottom: 30px;
}

.section-content p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray);
}

/* Listas */
.policy-list {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.policy-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--gray);
    position: relative;
}

.policy-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Box de Resumo */
.summary-box {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.summary-box h3 {
    color: var(--primary-light);
    margin-top: 0;
    margin-bottom: 15px;
}

.summary-box p {
    color: var(--light);
}

/* Box de Aviso */
.notice-box {
    background: rgba(245, 124, 0, 0.1);
    border: 1px solid rgba(245, 124, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.notice-box p {
    color: var(--light);
}

/* Tabela de Cookies */
.table-container {
    margin: 25px 0;
    overflow-x: auto;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--primary-light);
}

.cookie-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.cookie-table td {
    color: var(--gray);
}

/* Links */
.policy-content a {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.policy-content a:hover {
    border-bottom-color: var(--primary-light);
    color: var(--primary);
}

/* Seção de Provedor de Dados */
.provider-policy {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

/* Footer da Política */
.policy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 20px 40px;
    }

    .policy-section {
        padding: 25px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
}

/* Ajuste para a seção de Third Party Provider */
.provider-policy .policy-header {
    margin-bottom: 30px;
}

.provider-policy .policy-header h2 {
    border-bottom: none;
    margin-bottom: 10px;
}

.provider-policy .last-updated {
    margin-bottom: 30px;
}

.provider-policy .summary-box {
    margin-top: 0;
}

.policy-intro {
    margin-bottom: 30px;
}

.policy-intro p {
    margin-bottom: 20px;
}

.policy-intro .last-updated {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 20px;
    font-style: italic;
}

/* Email no footer da política */
.footer-email {
    color: var(--light) !important;
    border-bottom-color: var(--light);
}

.footer-email:hover {
    color: var(--primary-light) !important;
    border-bottom-color: var(--primary-light);
}

/* Atualize o estilo do botão de login no header */
.login-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.login-button:hover {
    background: #1d4ed8;
}

.login-button i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .login-button {
        padding: 8px 12px;
    }
    
    .login-button span {
        display: none;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.08), transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: rgba(37, 99, 235, 0.05);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pricing-card .card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .card-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease;
}

.pricing-card:hover .card-icon {
    background: rgba(37, 99, 235, 0.2);
}

.pricing-card .card-icon i {
    font-size: 24px;
    color: var(--primary);
}

.pricing-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: var(--light);
}

.pricing-card .card-header p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
} 