:root {
    
    --cor-texto-claro: #4b5563;
    --fundo-claro: #f3f4f6;
    --borda-clara: #e5e7eb;
    --cor-fundo-gradiente: linear-gradient(to bottom, #d6eaff, #f1e9ff);
    --sombra-leve: 0 4px 6px rgba(0, 0, 0, 0.1);
    --sombra-media: 0 10px 15px rgba(0, 0, 0, 0.1);

    --primary-color: #3d0155;
    --secondary-color: #7f278d;
    --text-color: #1f2937;
    --muted-text-color: #6b7280;
    --bg-subtle-gradient: linear-gradient(180deg, #f0f4f8, #e5e7eb);
    --bg-hero-gradient: linear-gradient(135deg, #3d0155, #9333ea);
    --background-color: #f3f4f6;
    --card-background: #ffffff;

    --bg-dark: #7b00cba8;
    --text-white: #ffffff;
    --text-light-gray: #d1d5db;
    --text-gray: #9ca3af;
    --gradient-primary: linear-gradient(to right, #3d0155, #8727f5);

    --border-color: #e5e7eb;
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 10px 15px rgba(0, 0, 0, 0.1);

    --color-success: #00F521;
    --color-attention: #F5E600;
    --color-error: #F51500;
    --color-success-p: #039417;
    --color-attention-p: #7c7401;
    --color-error-p: #830c01;
}

/* Base e Layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
}

/* --- Header --- */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--sombra-leve);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo img {
    max-width: 150px;
    width: 100%;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--cor-texto);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

.menu-toggle.active svg {
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.no-scroll {
    overflow: hidden;
}

.contact-btn-mobile {
    display: none !important; /* Escondido por padrão (Desktop) */
}

.contact-btn {
    background: var(--gradient-primary); 
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: opacity 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-subtle-gradient);
    padding: 6rem 0; /* Ajuste para espaçamento superior e inferior */
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
/* Rodapé */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Grid Principal */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #374151;
    margin-bottom: 2rem;
}


/* Informações da Empresa */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img{
    max-width: 150px;
    width: 100%;
}

.logo-icon svg {
    color: var(--text-white);
    width: 1.25rem;
    height: 1.25rem;
}

.footer-description {
    color: var(--text-light-gray);
    line-height: 1.6;
    max-width: 28rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light-gray);
    font-size: 0.875rem;
}

.contact-item svg {
    color: var(--text-white);
    width: 1.25rem;
    height: 1.25rem;
}

/* Grupos de Links */
.footer-links-group h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.links-list a {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: var(--primary-color);
}

/* Barra Inferior */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.copyright {
    color: var(--text-light-gray);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-white);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.back-to-top {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--primary-color);
}


/* Efeitos de Fundo */
.hero-background-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-hero-gradient);
    opacity: 0.1;
}

.hero-background-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.2;
}

.blob-1 {
    top: 5rem;
    left: 2rem;
    width: 18rem;
    height: 18rem;
    background-color: var(--primary-color);
    animation: float 6s infinite ease-in-out;
}

.blob-2 {
    bottom: 5rem;
    right: 2rem;
    width: 24rem;
    height: 24rem;
    background-color: var(--secondary-color);
    animation: float 6s infinite ease-in-out 2s;
}

/* Conteúdo da Esquerda */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 9999px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-text-color);
    line-height: 1.6;
    max-width: 36rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

/* Botões */
.btn {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--muted-text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-text-color);
}

.trust-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary-color);
}

/* Conteúdo da Direita - Imagem */
.hero-image-container {
    position: relative;
    animation: slideUp 1s ease-out;
}

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(79, 70, 229, 0.2);
}

/* Balões Flutuantes */
.floating-badge {
    position: absolute;
    background: rgba(45, 25, 85, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    animation: float 4s infinite ease-in-out;
}

.badge-top {
    top: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
}

.badge-bottom {
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    animation-delay: 1s;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-value {
    font-weight: 700;
}

.badge-top .badge-value { font-size: 1.125rem; }
.badge-bottom .badge-value { font-size: 1.5rem; }

.badge-label {
    font-size: 0.75rem;
}

/* Seção de Serviços */
.services-section {
    padding: 6rem 1rem;
    background-color: var(--background-color);
}

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

/* Título e Descrição */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-in-out;
}

.services-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-description {
    font-size: 1.25rem;
    color: var(--muted-text-color);
    max-width: 48rem;
    margin: 0 auto;
}

/* Grid de Cartões */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Cartão de Serviço */
.service-card {
    background-color: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: slideUp 1s ease-out;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.card-icon svg {
    color: var(--text-white);
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: var(--primary-color);
}

.card-description {
    color: var(--muted-text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.card-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--muted-text-color);
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-color);
    border-radius: 9999px;
    margin-right: 0.75rem;
}

/* Seção de CTA */
.cta-section {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--muted-text-color);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
}

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

.about-section {
    padding: 6rem 0;
}

.about-content, .team-image-container, .values-header, .value-card {
    animation-fill-mode: both; /* Garante que o estilo final seja mantido */
}

/* Header */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--muted-text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.body-text {
    color: var(--muted-text-color);
    line-height: 1.6;
}

/* Grid Principal (About) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

/* Grid de Estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-subtle-gradient);
    border-radius: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.5); /* border-border/50 */
    box-shadow: var(--shadow-soft);
    animation: slideUp 1s ease-out;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.75rem;
}

.stat-icon.primary svg { color: var(--primary-color); }
.stat-icon.secondary svg { color: var(--secondary-color); }

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

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

/* Imagem da Equipe */
.team-image-container {
    position: relative;
    animation: slideUp 1s ease-out;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(79, 70, 229, 0.1); /* bg-gradient-primary/10 */
}

/* Badge de Conquista Flutuante */
.achievement-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background-color: var(--card-background);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(229, 231, 235, 0.2);
    animation: float 4s infinite ease-in-out;
}

.about-section .badge-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.about-section .badge-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section .badge-icon svg {
    color: var(--text-white);
    width: 1.5rem;
    height: 1.5rem;
}

.about-section .badge-title {
    font-weight: bold;
    font-size: 1.125rem;
}

.about-section .badge-subtitle {
    font-size: 0.875rem;
    color: var(--muted-text-color);
}

/* Seção de Valores */
.values-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.values-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Grid de Valores */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: box-shadow 0.3s ease;
    animation: slideUp 1s ease-out;
}

.value-card:hover {
    box-shadow: var(--shadow-medium);
}

.value-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--muted-text-color);
    line-height: 1.6;
}

/* Seção do Portfólio */
.projects-section {
    padding: 6rem 0;
    background: var(--bg-subtle-gradient);
}

/* Título e Descrição */
.projects-header {
    text-align: center;
    margin-bottom: 4rem;
    /* Animação fade-in */
    opacity: 0; 
    animation: fadeIn 1s ease-out forwards;
}

/* Grade de Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Cartão de Projeto */
.project-card {
    background-color: var(--card-background);
    border-radius: 1.5rem; /* rounded-3xl */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(229, 231, 235, 0.5); /* border-border/50 */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    
    /* Animação slide-up e delay */
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.project-card:hover {
    transform: translateY(-8px); /* hover:-translate-y-2 */
    box-shadow: var(--shadow-strong);
}

/* Imagem e Badge */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 12rem; /* h-48 (12*4=48, 1rem=16px) */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image {
    transform: scale(1.1); /* group-hover:scale-110 */
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(79, 70, 229, 0.2), rgba(59, 130, 246, 0.2)); /* bg-gradient-primary/20 */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .image-overlay {
    opacity: 1;
}

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.9); /* bg-white/90 */
    backdrop-filter: blur(2px); /* backdrop-blur-sm */
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Conteúdo do Cartão */
.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.project-card:hover .card-title {
    color: var(--primary-color);
}

.card-description {
    color: var(--muted-text-color);
    margin-bottom: 1rem;
}

/* Tags de Tecnologia */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: #e5e7eb; /* Simula bg-muted */
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-text-color);
}

/* Ações do Cartão */
.card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.action-link.primary {
    color: var(--primary-color);
}

.action-link.secondary {
    color: var(--muted-text-color);
}

.action-link.secondary:hover {
    color: var(--primary-color);
}

.link-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* CTA Final */
.cta-bottom {
    text-align: center;
    opacity: 0; 
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.6s; /* Atraso após os cartões */
}

.cta-card {
    background-color: var(--card-background);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: var(--shadow-soft);
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--muted-text-color);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.primary-btn {
    color: white;
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}


.secondary-btn {
    color: var(--text-color);
    background-color: transparent;
    border-color: var(--border-color);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Estilos Gerais da Seção */
#politica-privacidade {
    padding: 6rem 20px; /* Espaçamento interno */
    font-family: Arial, sans-serif; /* Fonte padrão, limpa e legível */
    line-height: 1.6; /* Espaçamento entre linhas para melhor leitura */
    color: #333; /* Cor do texto principal */
    background-color: #f9f9f9; /* Fundo suave */
}

/* Container para centralizar e limitar a largura */
.container-politica {
    max-width: 900px;
    margin: 0 auto; /* Centraliza o bloco na tela */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px; /* Cantos arredondados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Sombra suave */
}

/* Títulos */
.titulo-principal {
    text-align: center;
    color: var(--bg-dark); /* Cor institucional */
    margin-bottom: 10px;
    font-size: 2.5em;
}

.data-atualizacao {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 0.9em;
}

.titulo-secao {
    color: var(--bg-dark); /* Cor de destaque para subtítulos */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee; /* Linha sutil abaixo do título */
    padding-bottom: 5px;
    font-size: 1.6em;
}

/* Parágrafos */
#politica-privacidade p {
    margin-bottom: 15px;
    text-align: justify; /* Justifica o texto para um visual mais profissional */
}

/* Listas de Dados */
.lista-dados {
    margin: 20px 0 20px 20px;
    padding-left: 0;
    list-style-type: square; /* Marcador de lista simples */
}

.lista-dados li {
    margin-bottom: 8px;
}

/* Informações de Contato */
.contato-info {
    margin-top: 25px;
    padding: 15px;
    background-color: #e9f5ff; /* Fundo leve para destaque */
    border-left: 5px solid var(--bg-dark); /* Borda lateral azul */
    line-height: 1.8;
}

.contato-info a {
    color: var(--bg-dark);
    text-decoration: none;
}

.contato-info a:hover {
    text-decoration: underline;
}

.box-alert{
    padding: 5px;
    text-align: center;
    font-size: 15px;
    border-radius: 10px;
}
.box-alert.success{
    background-color: var(--color-success);
    color: var(--color-success-p);
}
.box-alert.error{
    background-color: var(--color-error);
    color: var(--color-error-p);
}
.box-alert.attention{
    background-color: var(--color-attention);
    color: var(--color-attention-p);
}

/* Animações */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color); }
    50% { box-shadow: 0 0 15px var(--secondary-color), 0 0 25px var(--secondary-color); }
}

/* Responsividade */
@media (max-width: 768px) {
    .container-politica {
        padding: 20px;
    }

    .titulo-principal {
        font-size: 2em;
    }
}

@media (max-width: 880px) {

  /* Esconde o menu desktop */
  .nav, .contact-btn-desktop {
    display: none;
  }

  /* Hambúrguer visível */
  .menu-toggle {
    display: block;
    z-index: 1005;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Animação do "X" */
  .menu-toggle svg line {
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .menu-toggle.active svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle.active svg line:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* --- MENU APPLE STYLE --- */
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    top: 60px;
    background: #fff; /* fundo branco minimalista */
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 6rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Links estilo Apple */
  .nav-link {
    font-size: 1.7rem;
    font-weight: 600;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    color: #000;
    transition: opacity 0.2s;
  }
  .nav-link:hover {
    opacity: 0.6;
  }

  .nav-link:last-of-type {
    border-bottom: none;
  }

  /* Botão dentro do menu */
  .contact-btn-mobile {
    display: flex;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
  }
  .contact-btn-mobile:hover {
    background: #333;
  }

  /* Remove overlay padrão */
  body.no-scroll {
    overflow: hidden;
  }
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .cta-button {
        width: auto;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }

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

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

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

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

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

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

    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .services-title {
        font-size: 3rem;
    }

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

    .footer-info {
        grid-column: span 2;
    }

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

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

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-stats, .hero-actions, .hero-trust {
        justify-content: center;
    }

    .hero-image-container {
        margin-top: 3rem;
    }

    .floating-badge {
        display: none;
    }
}


