/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Cores extraídas da logo EngMarq Solution */
    --primary-color: #1a365d;       /* Azul escuro/navy da logo */
    --primary-dark: #0f2744;        /* Azul mais escuro */
    --primary-light: #2d4a6f;       /* Azul médio */
    --secondary-color: #f5a623;     /* Amarelo alaranjado (mantido) */
    --secondary-dark: #e09112;      /* Amarelo mais escuro */
    --secondary-light: #ffc857;     /* Amarelo claro */
    --accent-color: #10b981;        /* Verde para sucesso/check */
    --gray-logo: #4a5568;           /* Cinza da logo */
    --gray-medium: #64748b;         /* Cinza médio */
    --dark-color: #1f2937;
    --dark-light: #374151;
    --gray-color: #6b7280;
    --gray-light: #9ca3af;
    --light-color: #f8fafc;
    --white-color: #ffffff;
    --whatsapp-color: #25d366;
    --whatsapp-dark: #128c7e;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-light) 100%);
    --gradient-hero: linear-gradient(135deg, #0f2744 0%, #1a365d 50%, #2d4a6f 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(245, 166, 35, 0.4);
    --shadow-primary-glow: 0 0 40px rgba(26, 54, 93, 0.3);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    --border-radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

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

ul {
    list-style: none;
}

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

.highlight {
    color: var(--secondary-color);
    position: relative;
}

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 1.125rem;
    transition: var(--transition-normal);
}

.btn:hover i {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--whatsapp-color);
    color: var(--white-color);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-glow {
    animation: btn-glow-pulse 2s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.btn-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
}

.btn-whatsapp-header {
    background: var(--whatsapp-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: var(--border-radius-full);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large {
    background: var(--whatsapp-color);
    color: var(--white-color);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: var(--dark-color);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-img {
    height: 120px;
    width: auto;
    transition: var(--transition-normal);
    filter: brightness(0) invert(1);
}

.header.scrolled .logo-img {
    height: 90px;
    filter: none;
}

.logo:hover .logo-img {
    transform: scale(1.09);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white-color);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white-color);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.header.scrolled .bar {
    background: var(--dark-color);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(45, 74, 111, 0.3) 0%, transparent 40%),
        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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 5rem;
}

.hero-logo-mobile {
    display: none;
    margin-bottom: 2rem;
}

.hero-logo-mobile img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--secondary-color);
}

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

.hero-title {
    font-size: 3.5rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero-title .highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Destaque Garantia Jurídica */
.juridica-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.juridica-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
}

.juridica-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    font-size: 1.75rem;
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.juridica-content h3 {
    color: var(--secondary-color);
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.juridica-content h3 i {
    color: var(--accent-color);
    font-size: 1rem;
}

.juridica-content p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.juridica-content p strong {
    color: var(--white-color);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    text-align: center;
    position: relative;
}

.stat-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    font-size: 1.125rem;
    color: var(--secondary-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    display: block;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   Serviços Section
   ============================================ */
.servicos {
    background: var(--white-color);
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(26, 54, 93, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.servico-card {
    background: var(--white-color);
    padding: 2.25rem 1.75rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(26, 54, 93, 0.08);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    border-color: transparent;
}

.servico-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.servico-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    font-size: 2rem;
    color: var(--white-color);
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.servico-icon-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    opacity: 0.3;
    transition: var(--transition-normal);
}

.servico-card:hover .servico-icon {
    transform: rotate(-5deg) scale(1.05);
}

.servico-card:hover .servico-icon-bg {
    transform: rotate(5deg);
    opacity: 0.5;
}

.servico-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: var(--dark-color);
    transition: var(--transition-normal);
}

.servico-card:hover h3 {
    color: var(--primary-color);
}

.servico-card p {
    font-size: 0.9375rem;
    color: var(--gray-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   NRs Section
   ============================================ */
.nrs {
    background: var(--light-color);
    position: relative;
}

.nrs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 54, 93, 0.02) 0%, transparent 50%),
        linear-gradient(225deg, rgba(245, 166, 35, 0.02) 0%, transparent 50%);
}

.nrs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.nr-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nr-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.nr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.12);
    border-color: var(--primary-color);
}

.nr-card:hover::after {
    transform: scaleX(1);
}

.nr-number {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white-color);
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 0.875rem;
    transition: var(--transition-normal);
}

.nr-card:hover .nr-number {
    background: var(--gradient-secondary);
    transform: scale(1.05);
}

.nr-card h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.nr-card p {
    font-size: 0.8125rem;
    color: var(--gray-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.nrs-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
    position: relative;
    z-index: 1;
}

.nrs-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* ============================================
   Sobre Section
   ============================================ */
.sobre {
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(26, 54, 93, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-content .section-badge {
    margin-bottom: 1rem;
}

.sobre-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sobre-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sobre-features {
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.feature:hover {
    background: rgba(245, 166, 35, 0.1);
    transform: translateX(5px);
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sobre-image {
    position: relative;
}

/* Carrossel dentro da seção Sobre */
.sobre-image .equipe-carousel {
    width: 100%;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--gradient-primary);
}

.sobre-image .carousel-container {
    padding: 0;
}

.sobre-image .equipe-card {
    max-width: 100%;
    margin: 0;
}

.sobre-image .equipe-img {
    border-radius: 0;
    aspect-ratio: 4/3;
}

.sobre-image .equipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-image .carousel-nav {
    padding: 1rem;
    background: rgba(26, 54, 93, 0.9);
}

.sobre-image .carousel-btn {
    background: var(--secondary-color);
    color: var(--white-color);
}

.sobre-image .carousel-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white-color);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.card-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.card-label {
    font-size: 0.875rem;
    color: var(--gray-color);
}

/* ============================================
   Diferenciais Section
   ============================================ */
.diferenciais {
    background: var(--gradient-hero);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.diferenciais .section-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.diferenciais .section-title {
    color: var(--white-color);
}

.diferenciais .section-title .highlight {
    color: var(--secondary-color);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

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

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
    color: var(--white-color);
}

.diferencial-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: var(--white-color);
}

.diferencial-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   Contato Section
   ============================================ */
.contato {
    background: var(--light-color);
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(245, 166, 35, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(26, 54, 93, 0.05) 0%, transparent 30%);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--white-color);
    padding: 1.75rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
    border-color: var(--secondary-color);
}

.info-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    font-size: 1.375rem;
    color: var(--white-color);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.info-card:first-child .info-icon {
    background: var(--whatsapp-color);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.info-content h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.375rem;
    color: var(--dark-color);
}

.info-content p {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.info-link {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-normal);
}

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

.cta-card {
    background: var(--white-color);
    padding: 3.5rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-secondary);
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp-color);
    border-radius: 50%;
    font-size: 2.75rem;
    color: var(--white-color);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
    }
}

.cta-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-card > p {
    font-size: 1.0625rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-phone {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-color);
}

.cta-phone span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.cta-phone a {
    font-family: var(--font-primary);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.cta-phone a:hover {
    color: var(--secondary-color);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white-color);
    padding: 5rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

.footer-brand .logo:hover .footer-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(245, 166, 35, 0.5));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    font-size: 1.125rem;
    color: var(--white-color);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.125rem;
    color: var(--white-color);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.875rem;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a::before,
.footer-services ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--white-color);
}

.footer-links ul li a:hover::before,
.footer-services ul li a:hover::before {
    width: 10px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.75rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp-color);
    border-radius: 50%;
    font-size: 2.25rem;
    color: var(--white-color);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-normal);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 37px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: var(--border-radius-md);
    font-size: 1.125rem;
    color: var(--white-color);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nrs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nrs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sobre-image {
        order: -1;
    }
    
    .floating-card {
        bottom: -20px;
        left: 20px;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white-color);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: var(--shadow-2xl);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--dark-color);
        font-size: 1.25rem;
    }
    
    .btn-whatsapp-header {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-logo-mobile {
        display: block;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .juridica-highlight {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }
    
    .juridica-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .stat-icon {
        margin: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .nrs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nrs-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
        font-size: 2rem;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 27px;
        width: 42px;
        height: 42px;
    }
}

/* ============================================
   Custom Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   Focus States for Accessibility
   ============================================ */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
/* ============================================
   Equipe Section - Carrossel
   ============================================ */
.equipe {
    padding: 5rem 0;
    background: var(--light-color);
}

.equipe-carousel {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.equipe-card {
    position: relative;
    overflow: hidden;
}

.equipe-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.equipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.equipe-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.equipe-info p {
    font-size: 1.125rem;
    color: var(--gray-color);
}

/* ============================================
   Treinamentos Section
   ============================================ */
.treinamentos {
    padding: 6rem 0;
    background: var(--white-color);
}

.treinamentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.treinamento-card {
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.treinamento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

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

.treinamento-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--white-color);
}

.treinamento-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.treinamento-card p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.treinamento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.treinamento-link i {
    transition: var(--transition-normal);
}

.treinamento-card:hover .treinamento-link {
    color: var(--secondary-color);
}

.treinamento-card:hover .treinamento-link i {
    transform: translateX(5px);
}

.treinamento-personalizado {
    background: var(--gradient-primary);
}

.treinamento-personalizado h3,
.treinamento-personalizado p {
    color: var(--white-color);
}

.treinamento-personalizado .treinamento-icon {
    background: rgba(255, 255, 255, 0.2);
}

.treinamento-personalizado .treinamento-link {
    color: var(--secondary-color);
}

/* ============================================
   Modal Styles
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white-color);
    border-radius: var(--border-radius-2xl);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
    margin: 0 auto 1.5rem;
}

.modal-content h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.modal-section h4 i {
    color: var(--secondary-color);
}

.modal-section p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin: 0;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.modal-section ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

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

/* ============================================
   NR-01 Riscos Psicossociais Section
   ============================================ */
.nr01-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-badge-destaque {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nr01-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.nr01-alert {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: var(--border-radius-xl);
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 2rem;
}

.nr01-alert-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
    flex-shrink: 0;
}

.nr01-alert-text h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nr01-alert-text p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.95rem;
}

.nr01-details h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.nr01-details h3 i {
    color: var(--secondary-color);
}

.nr01-details > p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.nr01-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nr01-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark-color);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nr01-list li:last-child {
    border-bottom: none;
}

.nr01-list li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.nr01-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nr01-service-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.25rem;
    transition: var(--transition-normal);
}

.nr01-service-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.nr01-service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
    flex-shrink: 0;
}

.nr01-service-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.nr01-service-card p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.9rem;
}

.nr01-cta {
    margin-top: 3rem;
}

.nr01-cta-content {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--border-radius-2xl);
    text-align: center;
    color: var(--white-color);
}

.nr01-cta-content h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.nr01-cta-content h3 i {
    color: var(--secondary-color);
}

.nr01-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ============================================
   Floating Card 2 (Second card in about)
   ============================================ */
.floating-card-2 {
    bottom: 20%;
    right: auto;
    left: -30px;
}

/* ============================================
   Footer Badge
   ============================================ */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-badge i {
    font-size: 1.25rem;
}

/* ============================================
   Responsive - Novas Seções
   ============================================ */
@media (max-width: 1024px) {
    .treinamentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nr01-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .equipe-img {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .treinamentos-grid {
        grid-template-columns: 1fr;
    }
    
    .treinamento-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .nr01-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .nr01-alert-icon {
        margin: 0 auto;
    }
    
    .nr01-service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .nr01-service-icon {
        margin: 0 auto;
    }
    
    .nr01-cta-content {
        padding: 2rem 1.5rem;
    }
    
    .nr01-cta-content h3 {
        font-size: 1.25rem;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .equipe-img {
        height: 300px;
    }
    
    .carousel-nav {
        gap: 1rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}