/* ============================================
   On Solutions - Design System
   Identidade: Verde-água/Teal • Premium • Corporativo
   ============================================ */

:root {
    /* Paleta Principal - Verde-água / Teal */
    --primary: #0d9488;
    --primary-hover: #0f766e;
    --primary-dark: #115e59;
    --primary-light: #14b8a6;
    --primary-lighter: #99f6e4;
    --primary-subtle: #f0fdfa;
    --primary-50: #f0fdfa;
    --primary-100: #ccfbf1;
    --primary-200: #99f6e4;
    --primary-300: #5eead4;
    --primary-400: #2dd4bf;
    --primary-500: #14b8a6;
    --primary-600: #0d9488;
    --primary-700: #0f766e;
    --primary-800: #115e59;
    --primary-900: #134e4a;

    /* Cores Neutras */
    --dark: #0f1729;
    --gray-900: #1a2332;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;

    /* Cores de Status */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;

    /* Tipografia */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Sombras */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 16px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 16px 32px -8px rgba(15, 23, 42, 0.1), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 24px 48px -12px rgba(15, 23, 42, 0.15);

    /* Bordas */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transições */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* === BOTÕES === */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    transform: translateY(-1px);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    font-weight: 500;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}
.btn-outline-light { border-radius: var(--radius); }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }

/* === NAVBAR === */
.site-header .navbar {
    padding: 1rem 0;
    transition: var(--transition-slow);
    background: transparent;
}
.site-header .navbar .container {
    justify-content: center;
}
.site-header .navbar.scrolled {
    background: rgba(15, 23, 41, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-lg);
}
.navbar-brand .brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.navbar-brand .brand-icon {
    height: 2.2rem;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.navbar .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.navbar .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}
.navbar .nav-link.active {
    color: var(--primary-300);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
    border-radius: 0;
    padding-bottom: 0.4rem;
    font-weight: 600;
}
.navbar .btn-primary {
    border-radius: var(--radius-full);
    padding: 0.45rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.lang-selector { font-size: 0.85rem; }

/* User Icon Dropdown */
.user-icon-toggle {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}
.user-icon-toggle .bi {
    font-size: 1.25rem;
    line-height: 1;
}
.user-icon-toggle:hover {
    color: var(--white);
    background: rgba(13, 148, 136, 0.15);
}
.user-dropdown {
    min-width: 200px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.user-dropdown .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}
.user-dropdown .dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary);
}
.user-dropdown .dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu {
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}
.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.dropdown-item:hover { background: var(--primary-50); color: var(--primary); }

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--dark) 0%, #0f2027 30%, #134e4a 70%, var(--primary-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-content { position: relative; z-index: 2; color: var(--white); padding: 2rem 0; }
.hero-badge {
    display: none;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn {
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
}
.hero-actions .btn-primary {
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}
.hero-actions .btn-primary:hover {
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.45);
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats .stat strong {
    font-size: 2.2rem;
    display: block;
    color: var(--primary-300);
    font-weight: 800;
}
.hero-stats .stat span { font-size: 0.85rem; color: var(--gray-500); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; }
.code-window {
    background: rgba(26, 35, 50, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.code-header {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.code-header span { width: 11px; height: 11px; border-radius: 50%; }
.code-header span:first-child { background: #ef4444; }
.code-header span:nth-child(2) { background: #f59e0b; }
.code-header span:nth-child(3) { background: #10b981; }
.code-window pre {
    padding: 28px;
    margin: 0;
    color: var(--primary-300);
    font-size: 1.05rem;
    line-height: 2;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* === SECTIONS === */
.section { padding: 6rem 0; }
.section-header { margin-bottom: 3rem; }
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.8px;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 0.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero (internal pages) */
.page-hero {
    background: linear-gradient(160deg, var(--dark), var(--gray-900), var(--primary-900));
    padding: 9rem 0 4.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
}
.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}
.page-hero p { font-size: 1.1rem; color: var(--gray-400); max-width: 600px; margin: 0 auto; }

/* === SERVICE CARDS === */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.3rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.service-title { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.service-desc { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.service-link {
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--primary);
}
.service-link:hover { gap: 0.7rem; color: var(--primary-hover); }

/* === PROCESS SECTION === */
.process-section { background: var(--gray-100); }
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.process-step:hover { background: var(--white); box-shadow: var(--shadow-md); }
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-200);
    margin-bottom: 1rem;
    line-height: 1;
}
.process-step:hover .step-number { color: var(--primary); }
.process-step h4 { font-weight: 700; color: var(--dark); font-size: 1.1rem; }
.process-step p { color: var(--gray-600); font-size: 0.9rem; margin-top: 0.5rem; }

/* === PORTFOLIO CARDS === */
.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.portfolio-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-200);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 41, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition-slow);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover .portfolio-img { transform: scale(1.08); }
.portfolio-overlay h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.portfolio-overlay p { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 1rem; }
.portfolio-filters { margin-bottom: 2rem; }
.portfolio-filters .btn {
    margin: 0.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
}
.portfolio-filters .btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* === TESTIMONIALS === */
.testimonials-section { background: linear-gradient(160deg, var(--dark), var(--gray-900)); }
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.06); border-color: var(--primary-600); }
.testimonial-rating { margin-bottom: 1rem; }
.testimonial-text { font-style: italic; color: var(--gray-400); margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-500); }

/* === BLOG CARDS === */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-200);
    transition: var(--transition-slow);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.blog-card-body h4 { font-size: 1.05rem; margin: 0.5rem 0; line-height: 1.4; }
.blog-card-body h4 a { color: var(--dark); }
.blog-card-body h4 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.6; }
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray-500);
    font-size: 0.78rem;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gray-200);
}

/* === BLOG PAGE - New Layout === */
.blog-categories-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.2rem 0;
    position: sticky;
    top: 64px;
    z-index: 90;
}
.blog-categories-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
}
.blog-categories-scroll::-webkit-scrollbar { display: none; }
.blog-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
}
.blog-category-pill:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary);
}
.blog-category-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.blog-category-pill span {
    font-size: 0.72rem;
    opacity: 0.7;
}

/* Blog Grid Section */
.blog-grid-section {
    background: var(--white);
}

/* Blog Grid Card */
.blog-grid-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.blog-grid-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.blog-grid-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-grid-card:hover .blog-grid-card__image img {
    transform: scale(1.05);
}
.blog-grid-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--primary-50));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-200);
}
.blog-grid-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}
.blog-grid-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-grid-card__date {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.blog-grid-card__content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}
.blog-grid-card:hover .blog-grid-card__content h3 {
    color: var(--primary);
}
.blog-grid-card__content p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}
.blog-grid-card__readmore {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}
.blog-grid-card:hover .blog-grid-card__readmore {
    gap: 0.7rem;
}

/* Featured post (first post) */
.blog-grid-card--featured {
    flex-direction: row;
}
.blog-grid-card--featured .blog-grid-card__image {
    width: 55%;
    min-height: 300px;
    aspect-ratio: unset;
}
.blog-grid-card--featured .blog-grid-card__content {
    padding: 2rem;
    justify-content: center;
}
.blog-grid-card--featured .blog-grid-card__content h3 {
    font-size: 1.5rem;
}
.blog-grid-card--featured .blog-grid-card__content p {
    font-size: 0.95rem;
}

/* Blog empty state - Coming Soon Premium */
.blog-coming-soon {
    background: var(--white);
    padding: 6rem 0;
}
.blog-coming-soon__wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}
.blog-coming-soon__visual {
    flex-shrink: 0;
}
.blog-coming-soon__orbit {
    width: 140px;
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-coming-soon__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.3);
    position: relative;
    z-index: 2;
}
.blog-coming-soon__dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-400);
    animation: orbitFloat 3s ease-in-out infinite;
}
.blog-coming-soon__dot--1 { top: 10px; right: 20px; animation-delay: 0s; }
.blog-coming-soon__dot--2 { bottom: 15px; left: 15px; animation-delay: 1s; opacity: 0.6; }
.blog-coming-soon__dot--3 { top: 50%; right: 5px; animation-delay: 2s; opacity: 0.4; width: 6px; height: 6px; }

@keyframes orbitFloat {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-8px); opacity: 1; }
}

.blog-coming-soon__content {
    flex: 1;
}
.blog-coming-soon__content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}
.blog-coming-soon__content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.blog-coming-soon__form {
    max-width: 380px;
}
.blog-coming-soon__form .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 0.7rem 1rem;
}
.blog-coming-soon__form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    white-space: nowrap;
}

/* Newsletter success message */
.blog-newsletter-success {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius);
    animation: fadeInUp 0.4s ease;
}
.blog-newsletter-success i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 1px;
    flex-shrink: 0;
}
.blog-newsletter-success span {
    font-size: 0.85rem;
    color: var(--primary-dark);
    line-height: 1.5;
}

/* Categorias preview */
.blog-coming-soon__categories {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}
.blog-coming-soon__categories h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-coming-soon__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.blog-coming-soon__tag {
    padding: 0.45rem 1rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}
.blog-coming-soon__tag:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary);
}

@media (max-width: 768px) {
    .blog-coming-soon__wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    .blog-coming-soon__content h2 {
        font-size: 1.3rem;
    }
    .blog-coming-soon__form {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .blog-grid-card--featured {
        flex-direction: column;
    }
    .blog-grid-card--featured .blog-grid-card__image {
        width: 100%;
        min-height: unset;
        aspect-ratio: 16/9;
    }
    .blog-grid-card--featured .blog-grid-card__content h3 {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .blog-categories-bar {
        top: 56px;
    }
    .blog-grid-card__content {
        padding: 1.2rem;
    }
    .blog-grid-card__content h3 {
        font-size: 0.95rem;
    }
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(160deg, var(--dark) 0%, #0a2e2b 40%, #0c3f3b 70%, var(--primary-900) 100%);
    padding: 6rem 0 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(20, 184, 166, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2314b8a6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #14b8a6 20%, 
        #2dd4bf 40%, 
        #5eead4 50%, 
        #2dd4bf 60%, 
        #14b8a6 80%, 
        transparent 100%);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.6), 0 0 30px rgba(45, 212, 191, 0.3);
    animation: neonPulse 3s ease-in-out infinite;
    border-radius: 2px;
}
@keyframes neonPulse {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 20px rgba(20, 184, 166, 0.6), 0 0 40px rgba(45, 212, 191, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 30px rgba(20, 184, 166, 0.8), 0 0 60px rgba(45, 212, 191, 0.5), 0 0 80px rgba(94, 234, 212, 0.2); }
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.5px; }
.cta-subtitle { font-size: 1.1rem; opacity: 0.9; margin: 1rem 0 2rem; }
.cta-section .container { position: relative; z-index: 2; padding-bottom: 6rem; }
.cta-section .btn {
    border-radius: var(--radius-full);
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.cta-section .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(20, 184, 166, 0.2));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
}
.cta-section .btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.35), 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}
.cta-section .btn:hover::before {
    opacity: 1;
}
.cta-section .btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.25);
}

/* === FAQ === */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    padding: 1.1rem 1.5rem;
}
.accordion-button:not(.collapsed) {
    background: var(--primary-50);
    color: var(--primary-dark);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--primary-200); }
.accordion-body { color: var(--gray-600); line-height: 1.8; padding: 0 1.5rem 1.2rem; }

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 5rem 0 0;
}
.footer-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
}
.footer-description { font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--gray-400); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary-300); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; font-size: 0.9rem; align-items: flex-start; }
.footer-contact i { color: var(--primary-400); margin-top: 2px; }
.footer-contact a { color: var(--gray-400); }
.footer-contact a:hover { color: var(--primary-300); }
.footer-divider { border-color: rgba(255,255,255,0.06); margin: 2.5rem 0; }
.footer-bottom { padding-bottom: 1.5rem; font-size: 0.83rem; }
.footer-bottom a { color: var(--gray-500); margin-left: 1.2rem; }
.footer-bottom a:hover { color: var(--primary-300); }
.footer-newsletter .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: var(--radius) 0 0 var(--radius);
}
.footer-newsletter .form-control::placeholder { color: var(--gray-500); }
.footer-newsletter .form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    box-shadow: none;
}
.footer-newsletter .btn-primary { border-radius: 0 var(--radius) var(--radius) 0; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* === CHATBOT WIDGET === */
.chatbot-widget { position: fixed; bottom: 28px; right: 28px; z-index: 1000; }
.chatbot-toggle {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
    transition: var(--transition);
}
.chatbot-toggle:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.45);
}
.chatbot-window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 370px;
    max-height: 500px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}
.chatbot-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-header-info { display: flex; align-items: center; gap: 0.8rem; }
.chatbot-header-info i { font-size: 1.3rem; }
.chatbot-header-info strong { font-size: 0.9rem; }
.chatbot-header-info small { display: block; font-size: 0.72rem; opacity: 0.8; }
.chatbot-close { background: none; border: none; color: white; cursor: pointer; font-size: 1.1rem; opacity: 0.7; }
.chatbot-close:hover { opacity: 1; }
.chatbot-messages { flex: 1; padding: 1.2rem; overflow-y: auto; max-height: 330px; }
.chat-message { margin-bottom: 1rem; }
.chat-message p {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    margin: 0;
    max-width: 85%;
    line-height: 1.5;
}
.chat-message.user p {
    background: var(--primary);
    color: white;
    margin-left: auto;
    border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
}
.chat-message.bot p { border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px; }
.chatbot-input { border-top: 1px solid var(--gray-200); padding: 0.8rem 1rem; }
.chatbot-input form { display: flex; gap: 0.5rem; }
.chatbot-input input {
    flex: 1;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}
.chatbot-input input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1); }
.chatbot-input button {
    background: var(--primary);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}
.chatbot-input button:hover { background: var(--primary-hover); }

/* Chatbot FAQ Buttons */
.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0.8rem;
}
.chatbot-option-btn {
    background: var(--white);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-full);
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    color: var(--primary-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    line-height: 1.4;
}
.chatbot-option-btn:hover {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
}
.chatbot-back {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gray-200);
}
.chatbot-back-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.chatbot-back-btn:hover {
    color: var(--primary-hover);
}
.chat-message.bot p {
    max-width: 95%;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--gray-300);
    padding: 1.2rem 0;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.cookie-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.cookie-content p { margin: 0; font-size: 0.85rem; }
.cookie-content a { color: var(--primary-300); }
.cookie-actions { display: flex; gap: 0.5rem; }

/* === CONTACT === */
.contact-section { background: var(--white); }
.contact-section .contact-box,
.contact-section .contact-info {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 2rem !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease !important;
}
.contact-section .contact-box:hover,
.contact-section .contact-info:hover {
    transform: translateY(-5px) !important;
    border-color: #0d9488 !important;
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.15) !important;
}
.contact-box h3,
.contact-info h3 { color: var(--dark); }
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}
.contact-item i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 44px;
    height: 44px;
    background: var(--primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--dark); font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-item p { margin: 0; color: var(--gray-600); font-size: 0.9rem; }

/* Contact success alert */
.contact-success-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
    animation: fadeInUp 0.5s ease;
}
.contact-success-alert__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}
.contact-success-alert__content strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.contact-success-alert__content p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Contact schedule */
.contact-schedule {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.contact-schedule:hover {
    transform: translateY(-3px);
    border-color: var(--primary-200);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}
.contact-schedule h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-schedule h4 i {
    color: var(--primary);
}
.contact-schedule__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.contact-schedule__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.contact-schedule__item:last-child {
    border-bottom: none;
}
.contact-schedule__item span {
    font-size: 0.88rem;
    color: var(--gray-600);
}
.contact-schedule__item strong {
    font-size: 0.88rem;
    color: var(--dark);
}

/* Contact response */
.contact-response {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1rem;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.contact-response:hover {
    transform: translateY(-3px);
    border-color: var(--primary-200);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}
.contact-response h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-response h4 i {
    color: var(--primary);
}
.contact-response p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* === PARTNER SECTION === */
.partners-section {
    background: var(--white);
}

/* Partners Showcase (dark section) */
.partners-showcase {
    background: linear-gradient(160deg, var(--dark) 0%, #0c2f2d 40%, var(--primary-900) 100%);
    position: relative;
    overflow: hidden;
}
.partners-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.partners-showcase .container {
    position: relative;
    z-index: 2;
}

.partner-showcase-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.partner-showcase-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.3), 0 12px 32px rgba(13, 148, 136, 0.12);
}
.partner-showcase-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.partner-showcase-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(13, 148, 136, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-400);
    transition: var(--transition);
}
.partner-showcase-card:hover .partner-showcase-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.4);
}
.partner-showcase-logo {
    max-height: 40px;
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.partner-showcase-card__header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.partner-showcase-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.partner-showcase-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.partner-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-300);
    transition: var(--transition);
}
.partner-showcase-link:hover {
    color: var(--primary-200);
    gap: 0.7rem;
}

@media (max-width: 768px) {
    .partner-showcase-card {
        padding: 1.5rem;
    }
    .partner-showcase-card__header h3 {
        font-size: 1.05rem;
    }
}

/* === ABOUT PAGE === */

/* About Hero */
.page-hero--about {
    padding: 9rem 0 4rem;
    background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 40%, var(--primary-900) 100%);
    position: relative;
}
.page-hero--about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero--about::after {
    display: none;
}
.page-hero--about .container { position: relative; z-index: 2; }

/* About Tag */
.about-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-300);
    margin-bottom: 1rem;
}
.about-tag--dark { color: var(--primary); }

/* About Title */
.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.6px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.about-title--center { text-align: center; }

/* About History */
.about-history { background: var(--white); padding: 7rem 0 12rem; }
.about-history p { color: var(--gray-600); line-height: 1.85; margin-bottom: 1rem; }

/* Card Visual (experiência) */
.about-card-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-card-visual__main {
    background: linear-gradient(160deg, #0a2e2b 0%, #0c3f3b 30%, #0f4f4a 60%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 40px 80px rgba(13, 148, 136, 0.12), 0 16px 40px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}
.about-card-visual__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(10, 46, 43, 0.3) 0%, rgba(15, 79, 74, 0.6) 50%, rgba(13, 148, 136, 0.15) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%230d9488' stop-opacity='0.1'/%3E%3Cstop offset='100%25' stop-color='%23134e4a' stop-opacity='0.3'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='400' height='400'/%3E%3Cpath d='M0 300 Q100 250 200 280 T400 260 L400 400 L0 400Z' fill='%230d9488' fill-opacity='0.08'/%3E%3Cpath d='M0 320 Q150 290 300 310 T400 300 L400 400 L0 400Z' fill='%2314b8a6' fill-opacity='0.05'/%3E%3Ccircle cx='320' cy='80' r='60' fill='%230d9488' fill-opacity='0.04'/%3E%3Ccircle cx='80' cy='350' r='40' fill='%2314b8a6' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: cover;
    border-radius: 24px;
    opacity: 0.8;
}
.about-card-visual__content {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-card-visual__icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.4), 0 0 0 6px rgba(13, 148, 136, 0.1);
}
.about-card-visual__value {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.about-card-visual__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}
.about-card-visual__accent { display: none; }

/* About Pillars */
.about-pillars { background: var(--gray-100); }
.about-pillar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition-slow);
}
.about-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.about-pillar-card__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.about-pillar-card:hover .about-pillar-card__icon {
    background: var(--primary);
    color: var(--white);
}
.about-pillar-card__title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.about-pillar-card__text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* About Why */
.about-why { background: var(--white); }
.about-why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--transition-slow);
}
.about-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}
.about-why-card__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-why-card:hover .about-why-card__icon {
    background: var(--primary);
    color: var(--white);
}
.about-why-card__title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.about-why-card__text { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* === SIDEBAR WIDGET === */
.sidebar-widget h5 {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary);
}
.category-list { list-style: none; padding: 0; }
.category-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--gray-200); }
.category-list a { color: var(--gray-700); display: flex; justify-content: space-between; font-size: 0.9rem; }
.category-list a:hover { color: var(--primary); }
.category-list a span { color: var(--gray-500); }

/* === ERROR PAGES === */
.error-page { padding: 8rem 0; }
.error-code { font-size: 8rem; font-weight: 900; color: var(--primary-200); line-height: 1; }
.error-title { font-size: 1.5rem; font-weight: 700; margin-top: 1rem; color: var(--dark); }
.error-description { color: var(--gray-600); }

/* === FORMS === */
.form-control, .form-select {
    border-radius: var(--radius);
    border-color: var(--gray-300);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}
.form-label { font-weight: 500; font-size: 0.88rem; color: var(--gray-700); }

/* === NEWSLETTER SECTION === */
.newsletter-section {
    background: #f8fafc;
    padding: 5rem 0;
}
.newsletter-premium {
    background: transparent;
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    text-align: center;
    box-shadow: none;
}
.newsletter-premium__bg {
    display: none;
}
.newsletter-premium__content {
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin: 0 auto;
}
.newsletter-premium__badge {
    display: none;
}
.newsletter-premium__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.8rem;
    letter-spacing: -0.7px;
    line-height: 1.2;
}
.newsletter-premium__text {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 2.5rem;
    line-height: 1.7;
}
.newsletter-premium__form {
    max-width: 480px;
    margin: 0 auto;
}
.newsletter-premium__input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.45rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.newsletter-premium__input-group:focus-within {
    border-color: #0d9488;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08), 0 8px 32px rgba(13, 148, 136, 0.06);
}
.newsletter-premium__input {
    flex: 1;
    border: none;
    background: transparent;
    color: #0f172a;
    font-size: 0.95rem;
    padding: 0.85rem 1.2rem;
    outline: none;
    font-weight: 400;
}
.newsletter-premium__input::placeholder {
    color: #94a3b8;
}
.newsletter-premium__btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
    letter-spacing: 0.2px;
}
.newsletter-premium__btn:hover {
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.45);
    transform: translateY(-2px) scale(1.02);
}
.newsletter-premium__btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}
.newsletter-premium__btn:hover i {
    transform: translateX(4px);
}
.newsletter-premium__note {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 1.5rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.newsletter-premium__note i {
    color: #0d9488;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 0;
    }
    .newsletter-premium__title {
        font-size: 1.6rem;
    }
    .newsletter-premium__input-group {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.7rem;
    }
    .newsletter-premium__input {
        width: 100%;
        text-align: center;
        padding: 0.7rem;
    }
    .newsletter-premium__btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem;
    }
}
.newsletter-form .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
}
.newsletter-form .btn { border-radius: 0 var(--radius) var(--radius) 0; }

/* === CARDS GENERAL === */
.card { border-radius: var(--radius-lg); }
.card-header { background: transparent; border-bottom: 1px solid var(--gray-200); }

/* === CONTENT BODY (CMS/Blog) === */
.content-body h2 { font-size: 1.8rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--dark); }
.content-body h3 { font-size: 1.4rem; font-weight: 600; margin: 2rem 0 0.8rem; color: var(--dark); }
.content-body p { margin-bottom: 1.2rem; line-height: 1.8; }
.content-body ul, .content-body ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.content-body li { margin-bottom: 0.4rem; }
.content-body img { border-radius: var(--radius-md); }
.content-body a { color: var(--primary); text-decoration: underline; }
.sticky-sidebar { position: sticky; top: 100px; }

/* === SCROLL REVEAL === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-fade-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-fade-in:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.hero-fade-in:nth-child(2) { animation-delay: 0.25s; opacity: 0; }
.hero-fade-in:nth-child(3) { animation-delay: 0.4s; opacity: 0; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.reveal-up.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .site-header .navbar {
        background: rgba(15, 23, 41, 0.98) !important;
        backdrop-filter: blur(16px);
        padding: 0.75rem 0;
    }
    .site-header .navbar-collapse {
        background: rgba(15, 23, 41, 0.99);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        padding: 1rem 1.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .site-header .navbar-collapse .nav-link {
        padding: 0.7rem 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .site-header .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }
    .site-header .navbar-collapse .btn-primary {
        margin-top: 0.8rem;
        width: 100%;
        text-align: center;
    }
    .hero-title { font-size: 2.8rem; }
    .hero-stats { gap: 2rem; }
    .section-title { font-size: 2.2rem; }
    .section { padding: 4rem 0; }
    .about-title { font-size: 2rem; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .section-title { font-size: 1.8rem; }
    .chatbot-window { width: calc(100vw - 56px); right: -14px; }
    .page-hero { padding: 7rem 0 3rem; }
    .page-hero h1 { font-size: 2rem; }
    .page-hero--about { padding: 7.5rem 0 3rem; }
    .page-hero--about h1 { font-size: 2rem; }
    .about-title { font-size: 1.7rem; }
    .about-card-visual { display: none; }
}

/* === MICROANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* === BADGE === */
.badge { font-weight: 500; font-size: 0.75rem; padding: 0.35rem 0.7rem; border-radius: var(--radius-sm); }

/* === PAGINATION === */
.pagination .page-link {
    border-radius: var(--radius);
    margin: 0 0.2rem;
    color: var(--gray-700);
    border-color: var(--gray-200);
}
.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}
.pagination .page-link:hover { background: var(--primary-50); color: var(--primary); }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */

/* Content section */
.service-detail-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.service-detail-content {
    margin-bottom: 0;
}
.service-detail-content h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark);
    margin: 2rem 0 0.8rem;
    letter-spacing: -0.3px;
}
.service-detail-content h2:first-child {
    margin-top: 0;
}
.service-detail-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.8rem 0 0.6rem;
}
.service-detail-content p {
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 1rem;
}

/* Sidebar */
.service-sidebar-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 100px;
    transition: var(--transition-slow);
}
.service-sidebar-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}
.service-sidebar-card__header {
    padding: 1.8rem 1.8rem 0;
}
.service-sidebar-card__header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.service-sidebar-card__header p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}
.service-sidebar-card__body {
    padding: 1.8rem;
}
.service-sidebar-card__body .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
}
.service-sidebar-card__body .btn-primary {
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}
.service-sidebar-card__body .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
    transform: translateY(-2px);
}
.service-sidebar-card__body .btn-success {
    background: #25d366;
    border-color: #25d366;
}
.service-sidebar-card__body .btn-success:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* === Features Dark Section === */
.service-features-dark {
    background: linear-gradient(160deg, var(--dark) 0%, #0c2f2d 40%, var(--primary-900) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.service-features-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.service-features-dark .container {
    position: relative;
    z-index: 2;
}

.feature-dark-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.feature-dark-item:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.3);
    transform: translateX(4px);
}
.feature-dark-item i {
    color: var(--primary-400);
    font-size: 1rem;
    flex-shrink: 0;
}
.feature-dark-item span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Tecnologias dark */
.service-techs-row h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}
.tech-tags-dark {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}
.tech-tag-dark {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-300);
    transition: all 0.3s ease;
}
.tech-tag-dark:hover {
    background: rgba(13, 148, 136, 0.15);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

/* Responsive - Service Detail */
@media (max-width: 991px) {
    .service-sidebar-card {
        position: static;
    }
    .service-features-dark {
        padding: 4rem 0;
    }
}
@media (max-width: 768px) {
    .service-detail-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .service-detail-content h2 {
        font-size: 1.4rem;
    }
    .service-features-dark {
        padding: 3rem 0;
    }
    .feature-dark-item {
        padding: 0.75rem 0.9rem;
    }
    .feature-dark-item span {
        font-size: 0.82rem;
    }
}

/* ============================================
   ALSO OFFER SECTION (Também Oferecemos)
   Fundo branco, cards cinza claro
   ============================================ */
.also-offer-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.also-offer-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}
.also-offer-section .section-title {
    color: var(--dark);
    font-size: 2rem;
    font-weight: 800;
}

.also-offer-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 2;
}
.also-offer-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(13, 148, 136, 0.3),
        0 8px 24px rgba(13, 148, 136, 0.1);
}
.also-offer-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.also-offer-card:hover .also-offer-card__icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}
.also-offer-card__content {
    flex: 1;
    min-width: 0;
}
.also-offer-card__content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}
.also-offer-card:hover .also-offer-card__content h4 {
    color: var(--primary);
}
.also-offer-card__content p {
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive - Also Offer */
@media (max-width: 991px) {
    .also-offer-section {
        padding: 4rem 0;
    }
}
@media (max-width: 768px) {
    .also-offer-section {
        padding: 3rem 0;
    }
    .also-offer-card {
        padding: 1.2rem;
    }
    .also-offer-card__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
    }
    .also-offer-card__content h4 {
        font-size: 0.85rem;
    }
    .also-offer-section .section-title {
        font-size: 1.5rem;
    }
}


/* ============================================
   LEGAL PAGES (Privacy, Terms, Cookies, LGPD)
   ============================================ */
.legal-content {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.legal-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}
.legal-update-badge i {
    font-size: 0.85rem;
    color: var(--primary);
}
.legal-content .content-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.5rem 0 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.legal-content .content-body h2:first-child {
    margin-top: 0;
}
.legal-content .content-body p {
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 1rem;
}
.legal-content .content-body ul {
    margin-bottom: 1.2rem;
    padding-left: 0;
    list-style: none;
}
.legal-content .content-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}
.legal-content .content-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.legal-content .content-body a {
    color: var(--primary);
    font-weight: 500;
}
.legal-content .content-body a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    .legal-content .content-body h2 {
        font-size: 1.1rem;
    }
}
