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

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --secondary: #34a853;
    --dark: #1f1f1f;
    --gray: #5f6368;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gold: #9a841f;
    --gold-light: #b89d28;
    --green: #b89d28;
    --green-light: #b89d28;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

.logo-img {
    width: 80px;
    height: auto;
    margin-left: 0px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    padding: 10px 24px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 157, 40, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav a {
    display: block;
    padding: 20px 32px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: var(--light-gray);
    color: var(--green);
    padding-left: 40px;
}

/* Snackbar */
.snackbar {
    position: fixed;
    bottom: 10px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.snackbar-toggle {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(154, 132, 31, 0.4);
    transition: all 0.3s ease;
}

.snackbar-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 24px rgba(154, 132, 31, 0.5);
}

.snackbar-menu {
    display: none;
    flex-direction: column;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    min-width: 180px;
}

.snackbar-menu.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.snackbar-menu .flag-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.snackbar-menu .flag-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.snackbar-menu .flag-item:hover {
    background: rgba(154, 132, 31, 0.1);
}

.snackbar-menu .flag-item.active {
    background: rgba(154, 132, 31, 0.15);
}

.snackbar-menu .flag-item img {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.snackbar-menu .flag-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 50%, #1a1a1a 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://forbes.com.br/wp-content/uploads/2023/09/carreira-produtividade-faria-lima.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(154, 132, 31, 0.1) 0%, transparent 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 16px 32px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(154, 132, 31, 0.35);
}

.hero-stats {
    display: flex;
    gap: 64px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Sobre Section */
.sobre-section {
    padding: 120px 0;
    background: white;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.sobre-image:hover img {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(154, 132, 31, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

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

.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.sobre-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.lead {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(154, 132, 31, 0.1) 0%, rgba(196, 168, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.value-item:hover {
    transform: translateX(12px) translateY(-4px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.2);
    border-color: rgba(154, 132, 31, 0.5);
    background: rgba(255, 255, 255, 0.9);
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover::after {
    left: 100%;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(154, 132, 31, 0.25);
}

.value-item:hover .value-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(154, 132, 31, 0.4);
}

.value-icon i {
    font-size: 28px;
    color: white;
    transition: transform 0.4s ease;
}

.value-item:hover .value-icon i {
    transform: scale(1.15);
}

.value-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.value-content h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.value-item:hover .value-content h4 {
    color: var(--gold);
}

.value-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.value-number {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(154, 132, 31, 0.06);
    transition: all 0.4s ease;
    pointer-events: none;
}

.value-item:hover .value-number {
    color: rgba(154, 132, 31, 0.12);
    transform: scale(1.1);
}

/* Soluções Categories */
.solucoes-categories {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(31, 38, 135, 0.25);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(154, 132, 31, 0.5);
}

.category-card.featured {
    grid-column: span 2;
}

.category-card.featured::after {
    content: 'DESTAQUE';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(184, 157, 40, 0.4);
}

.category-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.category-card.featured .category-image {
    height: 350px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.95) contrast(1.05);
}

.category-card:hover .category-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1) contrast(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.category-content {
    position: relative;
    padding: 32px;
    color: var(--dark);
    background: transparent;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(184, 157, 40, 0.3);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 28px rgba(184, 157, 40, 0.4);
}

.category-icon i {
    font-size: 28px;
    color: white;
}

.category-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.category-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray);
    flex-grow: 1;
}

.btn-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
    text-decoration: none;
}

.btn-category:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 157, 40, 0.3);
}

/* Diferenciais */
.diferenciais-section {
    padding: 120px 0;
    background: white;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 64px;
}

.diferenciais-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.diferencial-card {
    padding: 40px 32px;
    background: rgba(248, 249, 250, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(31, 38, 135, 0.1);
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height 0.3s ease;
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 48px rgba(31, 38, 135, 0.15);
    transform: translateY(-4px);
    border-color: rgba(154, 132, 31, 0.3);
}

.diferencial-card:hover::before {
    height: 100%;
}

.diferencial-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: 16px;
    line-height: 1;
}

.diferencial-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.diferencial-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* Featured Article */
.featured-article {
    padding: 60px 0;
    background: var(--light-gray);
}

.article-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.article-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(154, 132, 31, 0.3);
}

.article-content:hover::before {
    transform: scaleX(1);
}

.article-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-content:hover .article-image img {
    transform: scale(1.08);
}

.article-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--gold);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.article-info {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-info h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--dark);
}

.article-info p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
}

.btn-read-more:hover {
    background: var(--gold-light);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(154, 132, 31, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Temas das empresas */
.atlas-theme {
    color: #1a1a1a;
}

.atlas-theme:hover {
    border-color: #1a1a1a;
}

.atlas-theme .company-logo-wrapper {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.atlas-theme .company-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.ecosimple-theme {
    color: #7cb342;
}

.ecosimple-theme:hover {
    border-color: #7cb342;
}

.ecosimple-theme .company-logo-wrapper {
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    position: relative;
}

.ecosimple-theme .company-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.3) 100%);
}

.ecooil-theme {
    color: #d84315;
}

.ecooil-theme:hover {
    border-color: #d84315;
}

.ecooil-theme .company-logo-wrapper {
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
    position: relative;
}

.ecooil-theme .company-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(216, 67, 21, 0.3) 100%);
}

.company-logo-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.company-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.company-logo {
    max-width: 160px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover .company-logo {
    transform: scale(1.05);
}

.testimonial-text {
    padding: 35px 30px 20px;
    flex: 1;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.testimonial-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #424242;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    padding: 20px 30px 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
}

.author-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #9a841f;
}

.author-info p {
    font-size: 14px;
    color: #757575;
    margin: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .testimonials-section {
        padding: 80px 20px;
    }
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--dark);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    text-align: center;
    margin-bottom: 48px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.2;
}

.contact-info > p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-method:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.25);
    border-color: rgba(154, 132, 31, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 12px 28px rgba(184, 157, 40, 0.35);
    transition: all 0.4s ease;
}

.contact-method:hover .method-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow: 0 16px 40px rgba(184, 157, 40, 0.5);
}

.method-icon i {
    font-size: 36px;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-method:hover .method-icon i {
    transform: scale(1.2);
}

.method-info {
    position: relative;
    z-index: 1;
}

.method-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.contact-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 64px 0 32px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 24px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-badges i {
    color: var(--gold);
}

/* ========== RESPONSIVIDADE MOBILE PERFEITA ========== */

/* Tablets Grandes (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
        padding: 0 32px;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card.featured {
        grid-column: span 2;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card.featured {
        grid-column: span 1;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .article-info {
        padding: 40px 32px;
    }
}

/* Mobile Grande (600px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo-img {
        width: 120px;
        margin-left: -15px;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-content > p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .btn-hero-primary {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .sobre-section {
        padding: 80px 0;
    }
    
    .sobre-image img {
        height: 400px;
        border-radius: 16px;
    }
    
    .image-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .sobre-content h2 {
        font-size: 32px;
    }
    
    .lead {
        font-size: 16px;
    }
    
    .value-item {
        flex-direction: row;
        padding: 20px;
        gap: 16px;
    }
    
    .value-icon {
        width: 56px;
        height: 56px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .value-content h4 {
        font-size: 17px;
    }
    
    .value-content p {
        font-size: 14px;
    }
    
    .value-number {
        font-size: 48px;
        top: 8px;
        right: 16px;
    }
    
    .solucoes-categories {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .category-image {
        height: 240px;
    }
    
    .category-card.featured .category-image {
        height: 280px;
    }
    
    .category-content {
        padding: 24px;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .category-content h3 {
        font-size: 20px;
    }
    
    .category-content p {
        font-size: 14px;
    }
    
    .diferenciais-section {
        padding: 80px 0;
    }
    
    .diferenciais-header h2 {
        font-size: 32px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diferencial-card {
        padding: 32px 24px;
    }
    
    .diferencial-number {
        font-size: 40px;
    }
    
    .diferencial-card h3 {
        font-size: 18px;
    }
    
    .diferencial-card p {
        font-size: 14px;
    }
    
    .featured-article {
        padding: 50px 0;
    }
    
    .article-image {
        min-height: 250px;
    }
    
    .article-badge {
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .article-info {
        padding: 32px 24px;
    }
    
    .article-info h2 {
        font-size: 26px;
    }
    
    .article-info p {
        font-size: 15px;
    }
    
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }
    
    .quote-icon i {
        font-size: 18px;
    }
    
    .testimonial-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .testimonial-author {
        padding-top: 20px;
    }
    
    .testimonial-author img {
        width: 48px;
        height: 48px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text h2 {
        font-size: 26px;
    }
    
    .newsletter-text p {
        font-size: 15px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
    
    .contact-info > p {
        font-size: 16px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        padding: 32px 24px;
    }
    
    .method-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .method-icon i {
        font-size: 28px;
    }
    
    .method-info h4 {
        font-size: 18px;
    }
    
    .contact-link {
        font-size: 15px;
    }
    
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .snackbar {
        bottom: 20px;
        right: 20px;
    }
    
    .snackbar-toggle {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
}

/* Mobile Médio (480px - 600px) */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-content > p {
        font-size: 15px;
    }
    
    .btn-hero-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .sobre-image img {
        height: 300px;
    }
    
    .sobre-content h2 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .category-content h3 {
        font-size: 18px;
    }
    
    .diferencial-card h3 {
        font-size: 17px;
    }
    
    .article-info h2 {
        font-size: 24px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .newsletter-text h2 {
        font-size: 24px;
    }
}

/* Mobile Pequeno (360px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo-img {
        width: 100px;
        margin-left: -10px;
    }
    
    .btn-primary {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content > p {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .btn-hero-primary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .sobre-section {
        padding: 60px 0;
    }
    
    .sobre-image img {
        height: 280px;
        border-radius: 12px;
    }
    
    .image-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .sobre-content h2 {
        font-size: 26px;
    }
    
    .lead {
        font-size: 15px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .value-item:hover {
        transform: translateY(-4px);
    }
    
    .value-icon {
        width: 52px;
        height: 52px;
    }
    
    .value-icon i {
        font-size: 22px;
    }
    
    .value-content h4 {
        font-size: 16px;
    }
    
    .value-content p {
        font-size: 13px;
    }
    
    .value-number {
        position: static;
        font-size: 40px;
        margin-top: 12px;
    }
    
    .solucoes-categories {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-card.featured .category-image {
        height: 240px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .category-icon {
        width: 52px;
        height: 52px;
    }
    
    .category-icon i {
        font-size: 22px;
    }
    
    .category-content h3 {
        font-size: 17px;
    }
    
    .category-content p {
        font-size: 13px;
    }
    
    .btn-category {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .diferenciais-section {
        padding: 60px 0;
    }
    
    .diferenciais-header h2 {
        font-size: 26px;
    }
    
    .diferencial-card {
        padding: 24px 20px;
    }
    
    .diferencial-number {
        font-size: 36px;
    }
    
    .diferencial-card h3 {
        font-size: 16px;
    }
    
    .diferencial-card p {
        font-size: 13px;
    }
    
    .featured-article {
        padding: 40px 0;
    }
    
    .article-image {
        min-height: 220px;
    }
    
    .article-info {
        padding: 24px 20px;
    }
    
    .article-info h2 {
        font-size: 22px;
    }
    
    .article-info p {
        font-size: 14px;
    }
    
    .btn-read-more {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-text h2 {
        font-size: 22px;
    }
    
    .newsletter-text p {
        font-size: 14px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info h2 {
        font-size: 26px;
    }
    
    .contact-info > p {
        font-size: 15px;
    }
    
    .contact-method {
        padding: 28px 20px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 26px;
    }
    
    .method-info h4 {
        font-size: 17px;
    }
    
    .contact-link {
        font-size: 14px;
        word-break: break-all;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        margin-bottom: 12px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    .footer-badges span {
        font-size: 13px;
    }
    
    .snackbar {
        bottom: 16px;
        right: 16px;
    }
    
    .snackbar-toggle {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .snackbar-menu {
        min-width: 160px;
    }
    
    .snackbar-menu .flag-item {
        padding: 12px 16px;
    }
    
    .snackbar-menu .flag-item img {
        width: 24px;
        height: 17px;
    }
    
    .snackbar-menu .flag-item span {
        font-size: 13px;
    }
}

/* Extra Small Mobile (até 360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content > p {
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .sobre-content h2,
    .section-header h2,
    .diferenciais-header h2,
    .contact-info h2 {
        font-size: 22px;
    }
    
    .newsletter-text h2 {
        font-size: 20px;
    }
}