/* ========================================
   EDUNERY DESIGN - STYLESHEET
   Versão: 2.0 - Paleta Roxo
   ======================================== */

/* ========================================
   VARIÁVEIS DE COR
   ======================================== */
:root {
    /* Cores Base */
    --preto: #0a0a0a;
    --branco: #ffffff;
    --cinza-claro: #f8f8f8;
    --cinza-medio: #e5e5e5;
    --cinza-escuro: #999999;
    
    /* Roxo (cor de acento única) */
    --roxo: #662288;
    --roxo-escuro: #4d1a66;
    --roxo-claro: rgba(102, 34, 136, 0.1);
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Outros */
    --border-radius: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(102, 34, 136, 0.08);
    --shadow-md: 0 8px 24px rgba(102, 34, 136, 0.12);
    --shadow-lg: 0 16px 40px rgba(102, 34, 136, 0.16);
}

/* ========================================
   RESET E BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georama', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--branco);
    color: var(--preto);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--preto);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ========================================
   HEADER
   ======================================== */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(102, 34, 136, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

/* ========================================
   NAVEGAÇÃO
   ======================================== */
nav {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
    transition: var(--transition);
}

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

nav a:hover {
    color: var(--roxo);
}

nav a:hover::after {
    width: 100%;
}

nav {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}
nav a {
    /* ... seu código existente ... */
}
nav a:hover::after {
    width: 100%;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

/* Link ativo */
.nav-menu a.active {
    color: var(--roxo);
    font-weight: 600;
}

/* ========================================
   SELETOR DE IDIOMA
   ======================================== */
.lang-selector {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cinza-escuro);
}

.lang-selector span {
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.lang-selector span.active {
    background: var(--roxo);
    color: var(--branco);
}

.lang-selector span:hover:not(.active) {
    background: var(--roxo-claro);
    color: var(--roxo);
}

/* ========================================
   MENU MOBILE
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--preto);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   CTA FLUTUANTE
   ======================================== */
.cta-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--roxo);
    color: var(--branco);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.cta-float:hover {
    background: var(--roxo-escuro);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(102, 34, 136, 0.25);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    background: var(--preto);
    color: var(--branco);
    padding: clamp(8rem, 15vw, 12rem) 0 clamp(6rem, 12vw, 10rem);
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    margin-bottom: 2rem;
}

.hero-headline img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-headline h1 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--branco);
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   BOTÕES CTA
   ======================================== */
.cta-button {
    display: inline-block;
    background: var(--roxo);
    color: var(--branco);
    padding: 1.125rem 3rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(102, 34, 136, 0.3);
}

.cta-button:hover {
    background: var(--roxo-escuro);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 34, 136, 0.4);
}

/* ========================================
   SEÇÕES BASE
   ======================================== */
section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    color: var(--preto);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--cinza-escuro);
    max-width: 800px;
    margin: -1.5rem auto 3rem;
    font-weight: 300;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
    background: var(--branco);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 4rem;
    opacity: 0.5;
}

.client-logo {
    background: var(--cinza-claro);
    border: 1px solid var(--cinza-medio);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--cinza-escuro);
    font-weight: 500;
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-4px);
    opacity: 1;
    border-color: var(--roxo-claro);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

.testimonial {
    background: var(--roxo-claro);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--roxo);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--preto);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 600;
    color: var(--preto);
    font-size: 0.95rem;
}

.testimonial-company {
    font-size: 0.875rem;
    color: var(--roxo);
    margin-top: 0.25rem;
}

/* ========================================
   DIFERENCIAIS
   ======================================== */
.differentials {
    background: var(--cinza-claro);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 3rem;
}

.diff-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--branco);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.diff-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--roxo-claro);
}

.diff-icon {
    width: 120px;
    height: 120px;
    background: transparent;     /* ← SEM FUNDO */
    color: var(--branco);          /* ← Ícone roxo */
    border: none;                /* ← Sem borda */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 4.25rem;
    transition: var(--transition);
}

.diff-item:hover .diff-icon {
    background: transparent;         /* ← Continua sem fundo */
    color: var(--branco);       /* ← Ícone escurece no hover */
    transform: scale(1.1);           /* ← Aumenta um pouco mais */
}

.diff-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.diff-item p {
    color: var(--cinza-escuro);
    line-height: 1.8;
    font-size: 0.95rem;
}

.diff-icon img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* ========================================
   PROCESSO
   ======================================== */
.process {
    background: var(--branco);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: var(--cinza-claro);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.process-step:hover {
    background: var(--branco);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--roxo-claro);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--roxo);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
    background: var(--roxo-escuro);
    transform: scale(1.1);
}

.process-step h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.process-step p {
    color: var(--cinza-escuro);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================
   PORTFÓLIO
   ======================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Portfolio Item (agora é um link <a>) */
.portfolio-item {
    background: var(--branco);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Área da Imagem - CONTÉM a imagem */
.portfolio-image {
    width: 100%;
    height: 250px;
    background: var(--cinza-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* CRÍTICO: Imagem dentro da área */
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder "Imagem em breve" */
.portfolio-image span {
    color: var(--cinza-escuro);
    font-size: 0.9rem;
}

/* Área de Informações - ABAIXO da imagem */
.portfolio-info {
    padding: 1.5rem;
    background: var(--branco);
    position: relative;
    z-index: 1;
}

.portfolio-info h3 {
    color: var(--preto);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.portfolio-info p {
    color: var(--cinza-escuro);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tags */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--cinza-claro);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--cinza-escuro);
}

.portfolio-item:hover .tag {
    background: var(--roxo-claro);
    color: var(--roxo-escuro);
}

/* ========================================
   CTA FINAL
   ======================================== */
.final-cta {
    background: var(--preto);
    color: var(--branco);
    padding: clamp(5rem, 10vw, 8rem) 0;
    text-align: center;
}

.final-cta h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--branco);
}

.final-cta p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--preto);
    color: var(--branco);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--branco);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--branco);
    transform: translateX(4px);
}

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

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-float {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .portfolio-grid,
    .process-steps,
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SMOOTH SCROLL
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ========================================
Ícones customizados como imagem 
========================================*/
.diff-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ========================================
   CSS ADICIONAL - PORTFOLIO CLICÁVEL
   Adicione no FINAL do arquivo styles.css
   ======================================== */

/* Links nos portfolio items */
.portfolio-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-item:hover {
    cursor: pointer;
}

/* Garante que hover do card continua funcionando */
a.portfolio-item:hover {
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   CSS ADICIONAL - FORMULÁRIO DE CONTATO
   Cole no final do styles.css
   ═══════════════════════════════════════════════════════════════ */

/* Formulário de Contato */
.contact-form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--branco);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.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(--preto);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--cinza-medio);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--roxo);
    box-shadow: 0 0 0 3px rgba(102, 34, 136, 0.1);
}

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

.form-privacy {
    font-size: 0.875rem;
    color: var(--cinza-escuro);
    text-align: center;
    margin-top: 1rem;
}

/* Mensagem de sucesso */
.form-message {
    text-align: center;
    padding: 2rem;
    background: #e8f5e9;
    border-radius: var(--border-radius);
    border: 2px solid #4caf50;
}

.form-message h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.form-message p {
    color: var(--cinza-escuro);
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   CTA FLUTUANTE - ATUALIZAÇÃO
   ═══════════════════════════════════════════════════════════════ */

/* O CTA flutuante já existe no styles.css, 
   mas vamos adicionar transições suaves */

.cta-float {
    /* ...propriedades existentes... */
    transition: all 0.3s ease;
}

/* Ícone do WhatsApp (opcional) */
.cta-float.whatsapp::before {
    content: "📱 ";
    margin-right: 0.5rem;
}

/* ═══════════════════════════════════════════════════
   SOCIAL PROOF - LOGOS DE CLIENTES (VERSÃO CORRIGIDA)
   ═══════════════════════════════════════════════════ */

.social-proof {
    background: var(--cinza-claro);
    padding: 4rem 0;
    text-align: center;
}

.social-proof .section-title {
    margin-bottom: 3rem;
    color: var(--roxo-escuro);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 logos em linha */
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    width: 150px;          /* LIMITE FIXO de largura */
    height: 80px;          /* LIMITE FIXO de altura */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    overflow: hidden;      /* CRÍTICO: esconde o que ultrapassar */
}

.client-logo img {
    max-width: 100%;       /* Nunca ultrapassa o container */
    max-height: 100%;      /* Nunca ultrapassa o container */
    width: auto;           /* Mantém proporção */
    height: auto;          /* Mantém proporção */
    object-fit: contain;   /* Cabe dentro sem cortar */
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* TABLET */
@media (max-width: 1024px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr); /* 3 logos por linha */
        gap: 1.5rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr); /* 2 logos por linha */
        gap: 1.5rem;
    }
    
    .client-logo {
        width: 130px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .client-logo {
        width: 110px;
        height: 60px;
    }
}

/* ═══════════════════════════════════════════════════
   HERO BANNER - FULL WIDTH
   ═══════════════════════════════════════════════════ */

.hero-banner {
    width: 100%;
    max-width: none;        /* Remove qualquer limite */
    margin: 0;              /* Remove margens */
    padding: 0;             /* Remove padding */
    background: #000;       /* Fundo preto de segurança */
}

.hero-banner picture,
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção de texto abaixo do banner */
.hero-text {
    background: var(--preto);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero-text .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-text .cta-button {
    display: inline-block;
    background: var(--roxo);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-text .cta-button:hover {
    background: var(--roxo-escuro);
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-text {
        padding: 2rem 1rem;
    }
    
    .hero-text .hero-subheadline {
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════════
   MÉTODO N.E.W.S. - AJUSTES DE ESTILO
   ═══════════════════════════════════════════════════ */

.process .step-number {
    width: 60px;
    height: 60px;
    background: var(--roxo);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--roxo-escuro);
}

.process-step p {
    line-height: 1.7;
    color: var(--cinza-escuro);
}

/* Alternativa: se quiser números em vez de letras */
.process .step-number.letter {
    font-family: 'Georama', sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .process .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
}

.testimonials-title {
    font-size: 2rem;
    margin-top: 4rem;
}

/* ═══════════════════════════════════════════════════
   PÁGINA SOBRE
   ═══════════════════════════════════════════════════ */

.about-hero {
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo) 100%);
    color: var(--branco);
    padding: 6rem 0 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro p {
    margin-bottom: 1.5rem;
}

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

.about-section:nth-child(even) {
    background: var(--cinza-claro);
}

.about-content {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.news-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.news-list li::before {
    content: "•";
    color: var(--roxo);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.news-list strong {
    color: var(--roxo-escuro);
    font-weight: 600;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.criteria-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.criteria-list li::before {
    content: "✓";
    color: var(--roxo);
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.about-cta {
    background: var(--roxo-escuro);
    color: var(--branco);
    padding: 4rem 0;
    text-align: center;
}

.about-cta .section-title {
    color: var(--branco);
}

.about-cta .criteria-list li::before {
    color: var(--roxo-claro);
}

.about-method {
    background: var(--branco);
}

.about-content .cta-button {
    display: inline-block;
    margin-top: 2rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero h1 {
        font-size: 1.75rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content {
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════════
   AVISO DE COOKIES
   ═══════════════════════════════════════════════════ */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 27, 78, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-actions a {
    color: var(--roxo-claro);
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-accept {
    background: white;
    color: var(--roxo-escuro);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept:hover {
    background: var(--roxo-claro);
    color: white;
}

.cookie-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
}

.cookie-close:hover {
    color: var(--roxo-claro);
}

/* MOBILE */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-accept {
        width: 100%;
    }
}