/* ============================================
   Potential Informática - Stylesheet Principal
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Primárias */
    --primary-dark: #1a2a3a;
    --primary: #0077b6;
    --primary-light: #00b4d8;
    --accent: #00d4ff;

    /* Neutras */
    --white: #ffffff;
    --gray-50: #f4f7fa;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-600: #64748b;
    --gray-700: #475569;
    --gray-800: #2d3748;
    --gray-900: #1a202c;

    /* Status */
    --success: #10b981;
    --whatsapp: #25D366;

    /* Tipografia */
    --font-heading: 'Inter', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Espaçamento */
    --section-padding: 80px 0;
    --container-width: 1200px;
    --border-radius: 24px;
    --border-radius-sm: 14px;
    --border-radius-lg: 40px;
    --border-radius-pill: 999px;

    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    /* Transições */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Header / Navegação === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 42, 58, 0.98);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
}

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

/* Logo no header (fundo escuro): clareia a logo para ficar legível */
.header .logo-img {
    filter: brightness(0) invert(1);
    height: 50px;
}

/* Logo no footer (fundo muito escuro): igual ao header */
.footer .logo-img {
    filter: brightness(0) invert(1);
    height: 42px;
    margin-bottom: 12px;
}

.footer-brand .logo {
    gap: 0;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.925rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(0, 180, 216, 0.15);
}

.nav-menu .btn-portal {
    background: var(--primary-light);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    margin-left: 8px;
}

.nav-menu .btn-portal:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* Hamburger Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1b2a 50%, #1b3a4b 100%);
    overflow: hidden;
    padding-top: 96px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 119, 182, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.25rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===========================
   HERO ORBIT - Camadas de proteção cibernética
   =========================== */
.hero-orbit {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1;
    position: relative;
    margin: 0 auto;
}

/* Anéis visíveis (decorativos) */
.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(0, 180, 216, 0.22);
    animation: orbit-pulse 6s ease-in-out infinite;
}

.orbit-path-1 {
    width: 40%;
    height: 40%;
    border-color: rgba(0, 212, 255, 0.32);
    animation-delay: 0s;
}

.orbit-path-2 {
    width: 64%;
    height: 64%;
    border-color: rgba(0, 180, 216, 0.22);
    animation-delay: 1.5s;
}

.orbit-path-3 {
    width: 92%;
    height: 92%;
    border-color: rgba(0, 119, 182, 0.18);
    animation-delay: 3s;
}

@keyframes orbit-pulse {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 1; }
}

/* Centro: empresa do cliente (o ativo protegido) */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 118px;
    height: 118px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px;
    box-shadow:
        0 0 55px rgba(0, 212, 255, 0.35),
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 0 25px rgba(255, 255, 255, 0.1);
    z-index: 6;
}

.orbit-center::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.35);
    animation: orbit-halo 2.5s ease-in-out infinite;
}

@keyframes orbit-halo {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%      { transform: scale(1.08); opacity: 0.2; }
}

.orbit-center svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.orbit-center span {
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.15;
    text-transform: uppercase;
}

/* Pills orbitando (cada camada de proteção) */
.orbit-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 10px;
    background: rgba(10, 26, 45, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%);
    animation: orbit-float 5s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    transition: var(--transition);
    z-index: 5;
}

.orbit-pill:hover {
    border-color: var(--accent);
    background: rgba(0, 119, 182, 0.4);
    box-shadow:
        0 14px 35px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.orbit-pill svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
    flex-shrink: 0;
    padding: 6px;
    background: rgba(0, 212, 255, 0.14);
    border-radius: 50%;
    box-sizing: content-box;
}

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

/* Posicionamento dos pills nos anéis */
/* Ring 1 (40% diâmetro) - topo e base */
.orbit-pos-top    { top: 30%;   left: 50%; }
.orbit-pos-bottom { top: 70%;   left: 50%; }

/* Ring 2 (64% diâmetro) - direita e esquerda */
.orbit-pos-right  { top: 50%;   left: 82%; }
.orbit-pos-left   { top: 50%;   left: 18%; }

/* Ring 3 (92% diâmetro) - diagonais */
.orbit-pos-tr { top: 17.5%; left: 82.5%; }
.orbit-pos-bl { top: 82.5%; left: 17.5%; }

/* === Botões === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: #1fba59;
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* === Seções === */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--gray-50);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* === Cards de Serviços === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-light);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-card .link {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .link svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-light);
    transition: var(--transition);
}

.service-card:hover .link svg {
    transform: translateX(4px);
}

/* === Stats/Números === */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* === Valores (Sobre) === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.value-card h4 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-card .icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-card .icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-light);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.925rem;
}

/* === Timeline (Sobre) === */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--primary-light);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-item .year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-item h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--gray-600);
    font-size: 0.925rem;
}

/* === About Content === */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text .highlight {
    font-size: 1.15rem;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* === Missão/Visão === */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    padding: 40px 32px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: linear-gradient(135deg, var(--primary-dark), #0d1b2a);
    color: var(--white);
}

.mv-card.vision {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.mv-card h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

.mv-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    opacity: 0.1;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

/* === Serviços Detalhados === */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.service-detail-content .features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-detail-content .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    fill: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-illustration {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(0, 119, 182, 0.08));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-illustration svg {
    width: 120px;
    height: 120px;
    fill: var(--primary-light);
    opacity: 0.4;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), #0d1b2a);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Formulário de Contato === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}

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

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

.form-submit {
    width: 100%;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-info-card .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card .icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-light);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary-light);
}

/* Map */
.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 24px;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* === Footer === */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Redes Sociais no footer */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-youtube:hover {
    background: #FF0000;
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

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

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* === Page Header (Páginas internas) === */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), #0d1b2a);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 119, 182, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1,
.page-header h2.page-section {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--primary-light);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* === Responsivo === */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

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

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero-content h1 { font-size: 2.25rem; }

    .section { padding: 60px 0; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
    }

    .header .container {
        height: 80px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-menu .btn-portal {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Em mobile, o hero-orbit fica menor e com labels mais compactos */
    .hero-orbit {
        max-width: 380px;
    }

    .orbit-center {
        width: 92px;
        height: 92px;
    }

    .orbit-center svg {
        width: 30px;
        height: 30px;
    }

    .orbit-center span {
        font-size: 0.62rem;
    }

    .orbit-pill {
        padding: 7px 12px 7px 7px;
        font-size: 0.68rem;
        gap: 6px;
    }

    .orbit-pill svg {
        width: 16px;
        height: 16px;
        padding: 4px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .service-detail-visual {
        display: none;
    }

    .logo-img {
        height: 38px;
    }

    .header .logo-img {
        height: 42px;
    }

    .footer .logo-img {
        height: 36px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.85rem; }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .page-header { padding: 120px 0 40px; }
    .page-header h1,
    .page-header h2.page-section { font-size: 2rem; }
}

/* === Animações de entrada === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   CURVAS, ONDAS E FORMAS ORGÂNICAS
   ============================================ */

/* Hero com fundo ondulado na base */
.hero {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,64 C240,120 480,20 720,56 C960,92 1200,116 1440,72 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Divisor em onda - variantes */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-top: -1px;
    margin-bottom: -1px;
}

.wave-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Página interna (page-header) com borda curva inferior */
.page-header {
    border-bottom-left-radius: 50% 40px;
    border-bottom-right-radius: 50% 40px;
    margin-bottom: -40px;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 80px;
    background: var(--primary-dark);
    border-bottom-left-radius: 50% 60px;
    border-bottom-right-radius: 50% 60px;
    z-index: 1;
}

/* Section-alt: bordas curvas superior/inferior */
.section-alt {
    position: relative;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin: 40px 20px;
    padding-left: 0;
    padding-right: 0;
}

.section-alt > .container {
    padding: 0 44px;
}

/* Section-dark curvo */
.section-dark {
    position: relative;
    border-radius: var(--border-radius-lg);
    margin: 40px 20px;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.section-dark::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.12) 0%, transparent 70%);
    bottom: -120px;
    left: -80px;
    pointer-events: none;
}

/* CTA Section curvo */
.cta-section {
    position: relative;
    border-radius: var(--border-radius-lg);
    margin: 40px 20px;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer com borda superior curva */
.footer {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(40px);
    pointer-events: none;
}

/* Cards ainda mais arredondados */
.service-card,
.value-card,
.contact-info-card,
.contact-form-wrapper {
    border-radius: var(--border-radius);
}

.service-card {
    border-radius: 28px;
}

.service-icon {
    border-radius: 18px;
}

.value-card .icon,
.contact-info-card .icon {
    border-radius: 14px;
}

/* Hero center icon já é redondo no novo orbit */

/* Page Header com formas decorativas */
.page-header {
    overflow: visible;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

/* Blob decorativo no hero */
.hero-content {
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

/* Service illustration mais curvo */
.service-illustration {
    border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
    }
    50% {
        border-radius: 30% 50% 30% 50% / 50% 30% 50% 30%;
    }
}


@keyframes blob-morph-slow {
    0%, 100% {
        border-radius: 30% 70% 50% 50% / 50% 50% 40% 60%;
    }
    50% {
        border-radius: 70% 30% 40% 60% / 40% 60% 60% 40%;
    }
}

/* MV Cards mais curvos */
.mv-card {
    border-radius: 30px;
}

/* Timeline: dots completamente redondos (já estavam) */
.timeline-item::before {
    border-radius: 50%;
}

/* Inputs de formulário com cantos arredondados */
.form-group input,
.form-group textarea,
.form-group select {
    border-radius: 14px;
}

.form-group textarea {
    border-radius: 18px;
}

.contact-form-wrapper {
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Map com bordas curvas */
.map-wrapper {
    border-radius: 24px;
}

/* Badge pill */
.section-header .badge {
    border-radius: var(--border-radius-pill);
}

/* Ajuste ao section-alt e section-dark em mobile */
@media (max-width: 768px) {
    .section-alt,
    .section-dark,
    .cta-section {
        margin: 20px 12px;
        border-radius: 28px;
    }

    .section-alt > .container {
        padding: 0 20px;
    }

    .page-header {
        border-bottom-left-radius: 40% 25px;
        border-bottom-right-radius: 40% 25px;
    }

    .footer {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
}

/* Stat numbers com badge redondo de fundo */
.stat-item {
    position: relative;
}

/* Floating elements legado - removido, agora usamos orbit-pill */

/* Links do footer com hover curvo */
.footer-links a {
    border-radius: var(--border-radius-pill);
    padding: 6px 10px;
    margin-left: -10px;
}

/* Logo icon curvo (mais arredondado) */
.logo-icon rect {
    /* O SVG já usa rx=10, mas vamos dar destaque */
}

/* Scroll-smooth em todos os anchor links */
html { scroll-padding-top: 110px; }

/* =========================================
   TOOLS GRID - Ferramentas que utilizamos
   ========================================= */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.tool-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 180, 216, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 212, 255, 0.22);
    border-color: rgba(0, 180, 216, 0.35);
}

.tool-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 10px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.tool-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Ícones específicos - fundo neutro para o logo Microsoft aparecer */
.tool-icon-ms {
    background: #ffffff;
}

/* SentinelOne, Potential Backup e Ubiquiti: o SVG já tem cor de fundo própria,
   então removemos o padding para o ícone ocupar todo o contêiner */
.tool-icon-s1,
.tool-icon-pb,
.tool-icon-ui {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.tool-card h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.tool-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.tool-items li {
    font-size: 0.88rem;
    color: #475569;
    position: relative;
    padding-left: 16px;
    text-align: left;
}

.tool-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
}

/* Ajustes mobile das ferramentas */
@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .tool-card {
        padding: 24px 18px 22px;
    }
    .tool-icon {
        width: 64px;
        height: 64px;
    }
}

/* =========================================
   CARROSSEL DE CLIENTES
   ========================================= */
.clients-section {
    padding-bottom: 40px;
    overflow: hidden;
}

.clients-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: clients-scroll 30s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 160px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a.client-logo {
    cursor: pointer;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo svg,
.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes clients-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .clients-track {
        gap: 30px;
        animation-duration: 20s;
    }
    .client-logo {
        width: 130px;
        height: 45px;
    }
}

/* =========================================
   DICAS DE SEGURANÇA - Cards
   ========================================= */
.dicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.dica-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 180, 216, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dica-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 180, 216, 0.18);
    border-color: rgba(0, 180, 216, 0.3);
}

.dica-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 119, 182, 0.08));
}

.dica-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.dica-tag {
    display: inline-block;
    width: fit-content;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 999px;
}

.dica-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.35;
}

.dica-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

.dica-nivel {
    margin-top: 4px;
}

.nivel-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}

.nivel-basico {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.nivel-intermediario {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.nivel-avancado {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

/* Card clicável (link para página da dica) */
.dica-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.dica-card-link:hover .dica-leia-mais {
    color: var(--primary);
    gap: 10px;
}

.dica-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.dica-data {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    opacity: 0.75;
}

.dica-leia-mais {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-top: 6px;
    transition: var(--transition);
}

.dica-leia-mais svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

/* =========================================
   ARTIGO DE DICA - Página individual
   ========================================= */
.dica-artigo {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 180, 216, 0.06);
}

.artigo-header {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
}

.artigo-header h2,
.artigo-header h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.25;
    margin: 12px 0 16px;
    padding-bottom: 0;
}

.artigo-header h2::after,
.artigo-header h1::after {
    display: none;
}

.artigo-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.artigo-data,
.artigo-tempo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.artigo-data svg,
.artigo-tempo svg {
    width: 15px;
    height: 15px;
    fill: var(--primary-light);
}

/* Corpo do artigo */
.artigo-corpo h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 28px 0 12px;
}

.artigo-corpo p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Caixa de destaque (dica positiva) */
.artigo-destaque {
    display: flex;
    gap: 16px;
    background: rgba(0, 180, 216, 0.06);
    border-left: 4px solid var(--primary-light);
    border-radius: 0 16px 16px 0;
    padding: 20px 24px;
    margin: 20px 0;
    align-items: flex-start;
}

.destaque-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destaque-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.artigo-destaque strong {
    color: var(--primary-dark);
}

/* Caixa de alerta (aviso negativo) */
.artigo-alerta {
    display: flex;
    gap: 16px;
    background: rgba(239, 68, 68, 0.06);
    border-left: 4px solid #ef4444;
    border-radius: 0 16px 16px 0;
    padding: 20px 24px;
    margin: 20px 0;
    align-items: flex-start;
}

.alerta-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alerta-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.artigo-alerta strong {
    color: #dc2626;
}

.artigo-alerta ul {
    margin: 8px 0 0 18px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Caixa de resumo */
.artigo-resumo {
    background: #f4f7fa;
    border-radius: 20px;
    padding: 24px 28px;
    margin-top: 28px;
}

.artigo-resumo h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.artigo-resumo ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.artigo-resumo li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 5px 0;
    line-height: 1.5;
}

/* Rodapé do artigo */
.artigo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 16px;
}

.artigo-compartilhar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Override para social links em fundo claro (dentro do artigo) */
.artigo-compartilhar .social-link {
    background: #f4f7fa;
    border-color: #e2e8f0;
}

.artigo-compartilhar .social-link svg {
    fill: var(--primary-dark);
}

.artigo-compartilhar .social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.artigo-compartilhar .social-instagram:hover svg {
    fill: var(--white);
}

.artigo-compartilhar .social-youtube:hover {
    background: #FF0000;
    border-color: transparent;
}

.artigo-compartilhar .social-youtube:hover svg {
    fill: var(--white);
}

/* Dicas mobile */
@media (max-width: 480px) {
    .dicas-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .dica-card {
        padding: 24px 20px;
    }
    .dica-artigo {
        padding: 28px 20px;
    }
    .artigo-header h2,
    .artigo-header h1 {
        font-size: 1.4rem;
    }
    .artigo-destaque,
    .artigo-alerta {
        flex-direction: column;
        gap: 10px;
    }
}

