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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    background: transparent;
    color: white;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(28, 87, 43, 0.95);
    position: fixed;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

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

.navbar.scrolled .nav-content {
    padding: 18px 0;
}

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

.nav-logo-img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.navbar.scrolled .nav-logo-img {
    height: 85px;
}

.nav-links {
    display: flex;
    gap: 0px;
    align-items: center;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-consulta {
    background: rgba(96, 165, 250, 0.2) !important;
    color: #2d7a3e !important;
    padding: 6px 14px !important;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 5px;
    border: 1px solid rgba(96, 165, 250, 0.3) !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-consulta svg {
    filter: drop-shadow(0 1px 2px rgba(96, 165, 250, 0.3));
}

.btn-consulta:hover {
    background: rgba(96, 165, 250, 0.3) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.2);
    transform: translateY(-2px) !important;
}

.btn-agente {
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%) !important;
    padding: 6px 14px !important;
    border-radius: 16px;
    font-weight: 600;
    font-size: 12px;
    margin-left: 5px;
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-agente svg {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.btn-agente:hover {
    background: linear-gradient(135deg, #145220 0%, #000000 100%) !important;
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.5);
    transform: translateY(-2px) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(69, 165, 88, 0.4) 0%, rgba(45, 122, 62, 0.5) 50%, rgba(28, 87, 43, 0.6) 100%),
                linear-gradient(to right, rgba(240, 248, 242, 0.95) 0%, rgba(230, 245, 235, 0.85) 100%);
    color: #1a1a1a;
    padding: 70px 0;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 122, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 87, 43, 0.6) 0%, rgba(45, 122, 62, 0.4) 100%);
    z-index: 1;
}

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

.hero-text {
    max-width: 700px;
    padding-top: 60px;
}

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

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(45, 122, 62, 0.15);
    color: #1c572b;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 2px solid rgba(45, 122, 62, 0.3);
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    color: #1c572b;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #2d7a3e;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.feature-item {
    position: relative;
    padding-left: 25px;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #1c572b;
    font-weight: 900;
    font-size: 20px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    color: #2d2d2d;
}

.feature-item strong {
    font-weight: 700;
    font-size: 17px;
    color: #1c572b;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-company {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    text-align: left;
    color: #1c572b;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%);
    color: white;
    box-shadow: 0 3px 12px rgba(28, 87, 43, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(28, 87, 43, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.btn-secondary svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);
}

/* ========================================
   CARROSSEL DE NOTÍCIAS INSS (FLUTUANTE)
   ======================================== */

.news-carousel-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 100;
    overflow: hidden;
    animation: slideInUp 0.5s ease-out;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.news-carousel-container.hidden {
    display: none;
}

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

.news-carousel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%);
    color: white;
}

.news-icon {
    font-size: 20px;
}

.news-carousel-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.news-live-badge {
    font-size: 11px;
    font-weight: 600;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

.news-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    padding: 0;
}

.news-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.news-close-btn:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.news-carousel {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.news-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.news-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.news-slide:hover {
    background: linear-gradient(to bottom, rgba(28, 87, 43, 0.02), rgba(28, 87, 43, 0.05));
}

.news-slide-category {
    display: inline-block;
    background: linear-gradient(135deg, #1c572b 0%, #2d7a3e 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-slide-title {
    font-size: 15px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slide-description {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #9CA3AF;
    padding-top: 10px;
    border-top: 1px solid #F3F4F6;
}

.news-slide-source {
    font-weight: 600;
    color: #1c572b;
}

.news-slide-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 20px;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
}

.news-nav-btn {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #6B7280;
}

.news-nav-btn:hover {
    background: #1c572b;
    color: white;
    border-color: #1c572b;
    transform: scale(1.1);
}

.news-nav-btn:active {
    transform: scale(0.95);
}

.news-dots {
    display: flex;
    gap: 8px;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s;
}

.news-dot.active {
    background: #1c572b;
    width: 24px;
    border-radius: 4px;
}

.news-dot:hover {
    background: #6B7280;
}

.news-update-time {
    text-align: center;
    padding: 8px 20px;
    font-size: 11px;
    color: #9CA3AF;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
}

/* Skeleton Loading para Carrossel */
.skeleton-slide {
    pointer-events: none;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.skeleton-badge,
.skeleton-title,
.skeleton-text {
    background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-badge {
    width: 80px;
    height: 18px;
    border-radius: 10px;
}

.skeleton-title {
    height: 18px;
    width: 90%;
    margin-bottom: 8px;
}

.skeleton-text {
    height: 14px;
}

.skeleton-text:nth-child(3) {
    width: 100%;
}

.skeleton-text:nth-child(4) {
    width: 85%;
}

.skeleton-text:last-child {
    width: 70%;
}

/* Responsivo - Carrossel */
@media (max-width: 768px) {
    .news-carousel-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Esconder botão X no mobile */
    .news-close-btn {
        display: none !important;
    }
    
    /* Botão grande de fechar - APENAS MOBILE */
    .news-close-mobile-btn {
        display: block !important;
        width: 100%;
        padding: 16px;
        margin-top: 12px;
        background: #1c572b;
        color: white;
        border: none;
        border-radius: 0 0 16px 16px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        transition: background 0.2s;
    }
    
    .news-close-mobile-btn:active {
        background: #145220;
    }
}

/* Esconder botão mobile no desktop */
.news-close-mobile-btn {
    display: none;
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 65px;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-content {
        gap: 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
        line-height: 1.3;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.4;
        white-space: nowrap;
    }
    
    .feature-item p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .como-funciona h2 {
        font-size: 22px;
    }
}

/* Seções */
section {
    padding: 50px 0;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 20px 0;
    }
}

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

.section-header h2 {
    font-size: 40px;
    color: #1c572b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Como Funciona */
.como-funciona {
    padding: 50px 0;
    background: #f8f9fa;
}

.como-funciona .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.como-funciona .section-badge {
    display: inline-block;
    background: #2d7a3e;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.como-funciona h2 {
    font-size: 32px;
    color: #1f2937;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.processo-steps {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #2d7a3e #e5e7eb;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
}

.processo-steps::-webkit-scrollbar {
    height: 6px;
}

.processo-steps::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.processo-steps::-webkit-scrollbar-thumb {
    background: #2d7a3e;
    border-radius: 10px;
}

.processo-steps::-webkit-scrollbar-thumb:hover {
    background: #1c572b;
}

.step-card {
    background: white;
    padding: 30px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 0 0 auto;
    width: 180px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-icon {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-badge {
    background: #2d7a3e;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.step-card h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.step-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.step-arrow svg {
    opacity: 0.3;
}

/* Removido: agora mantém horizontal sempre, só muda no mobile (768px) */

/* Simulador */
.simulador {
    background: white;
}

.simulador-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.simulador-info h2 {
    font-size: 36px;
    color: #1c572b;
    margin-bottom: 20px;
}

.simulador-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.beneficios {
    list-style: none;
}

.beneficios li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #E5E7EB;
}

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

.simulador-form {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
    background-color: #ffffff;
    transition: all 0.2s ease;
    height: 44px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d7a3e;
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.btn-block {
    width: 100%;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.form-note a {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
}

.resultado-simulacao {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid #2d7a3e;
}

.resultado-simulacao h3 {
    color: #1c572b;
    margin-bottom: 20px;
    text-align: center;
}

.resultado-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.resultado-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.resultado-item strong {
    color: #2d7a3e;
    font-size: 18px;
}

.contato-whatsapp {
    background: #f0f7ff;
    color: #1c572b;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid #e3f2fd;
}

.contato-whatsapp p {
    margin: 8px 0;
    font-size: 15px;
}

.contato-whatsapp p:first-child {
    font-size: 16px;
    margin-bottom: 12px;
}

.contato-whatsapp strong {
    color: #1c572b;
}

.contato-whatsapp a {
    color: #1c572b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
}

.contato-whatsapp a:hover {
    background: rgba(26, 35, 50, 0.08);
    transform: translateY(-2px);
}

.contato-whatsapp .separator {
    margin: 0 12px;
    opacity: 0.5;
}

.contato-whatsapp svg {
    fill: #25D366;
}

/* Sobre */
.sobre {
    background: #F9FAFB;
}

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

.sobre-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.sobre-text h2 {
    font-size: 36px;
    color: #1c572b;
    margin-bottom: 25px;
}

.sobre-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.sobre-valores {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
}

.valor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.valor:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.valor-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.transparencia-icon {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.seguranca-icon {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

.agilidade-icon {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}

.valor:hover .valor-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.valor-icon svg {
    width: 16px;
    height: 16px;
}

.valor h4 {
    color: #1a1a1a;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    min-width: 95px;
}

.valor p {
    color: #666;
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
}

/* Contato */
.contato {
    background: white;
    padding: 35px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contato-card {
    background: #F9FAFB;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.contato-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #1c572b;
}

.contato-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.contato-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.contato-card h3 {
    color: #1c572b;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.contato-card p {
    color: #666;
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.5;
}

.highlight-card {
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%);
    color: white;
    border: none;
}

.highlight-card h3,
.highlight-card p {
    color: white;
}

.highlight-card .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #1c572b;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.highlight-card .btn-primary:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-small {
    padding: 8px 20px;
    font-size: 13px;
    margin-top: 12px;
}

/* Social Section */
.social-section {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.social-section h3 {
    color: #1c572b;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-btn svg {
    width: 20px;
    height: 24px;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000, #fe2c55);
    color: white;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 35px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.testimonials .section-header h2 {
    color: #1c572b;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials .section-header p {
    color: #666;
    font-size: 18px;
}

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 70px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    position: relative;
}

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

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide .instagram-media {
    margin: 0 auto !important;
    max-width: 100% !important;
    min-width: 320px !important;
}

/* Instagram Thumbnail Lazy Loading */
.instagram-thumbnail {
    width: 100%;
    min-height: 540px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instagram-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.instagram-thumbnail:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.instagram-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.thumbnail-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.instagram-thumbnail:hover .thumbnail-overlay {
    transform: scale(1.15);
}

.thumbnail-overlay svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

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

.thumbnail-overlay p {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
}

.instagram-thumbnail.loading {
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    cursor: wait;
}

.instagram-thumbnail.loading::after {
    content: 'Carregando...';
    color: #666;
    font-size: 16px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Instagram Grid - 5 Posts Horizontais */
.instagram-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px;
    margin-top: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    visibility: visible !important;
}

.instagram-post-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 250px;
    display: block !important;
    visibility: visible !important;
}

.instagram-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.instagram-thumbnail-new {
    position: relative;
    width: 100%;
    height: 250px;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-thumbnail-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-thumbnail-new:hover img {
    transform: scale(1.1);
}

.thumbnail-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-overlay-visible {
    opacity: 1 !important;
}

.instagram-thumbnail-new:hover .thumbnail-overlay-new {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
}

.thumbnail-overlay-new svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    width: 80px;
    height: 80px;
}

.thumbnail-label-new {
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 30px;
    text-align: center;
}

.thumbnail-label-small {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}

/* Container para cada post */
[class^="instagram-container-"] {
    position: relative;
    width: 100%;
}

/* Responsivo */
@media (max-width: 1200px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .thumbnail-label-new {
        font-size: 10px;
        padding: 4px 8px;
    }
}

.carousel-btn {
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(28, 87, 43, 0.3);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(28, 87, 43, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #1c572b;
    width: 30px;
    border-radius: 6px;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-carousel {
        gap: 0;
        padding: 0 10px;
        max-width: 100%;
        position: relative;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(28, 87, 43, 0.95);
        z-index: 100;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-container {
        width: 100%;
        margin: 0;
        padding: 0 50px;
    }
    
    .carousel-slide .instagram-media {
        min-width: 260px !important;
        max-width: 100% !important;
    }
    
    .carousel-dots {
        margin-top: 20px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-carousel {
        padding: 0 5px;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-slide .instagram-media {
        min-width: 240px !important;
    }
}

/* ============================================
   TRABALHE CONOSCO
   ============================================ */

.trabalhe-conosco {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.trabalhe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trabalhe-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2d7a3e, #4a9c5a);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.trabalhe-text h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.trabalhe-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.trabalhe-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item-trabalhe {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item-trabalhe:hover {
    transform: translateX(10px);
}

.benefit-item-trabalhe i {
    font-size: 1.5rem;
    color: #2d7a3e;
}

.benefit-item-trabalhe span {
    font-weight: 500;
    color: #1f2937;
}

.cta-rh {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.cta-rh:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.trabalhe-info {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #6b7280;
}

.trabalhe-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trabalhe-icon-bg {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2d7a3e, #4a9c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(45, 122, 62, 0.3);
    animation: float 3s ease-in-out infinite;
}

.trabalhe-icon-bg i {
    font-size: 8rem;
    color: white;
}

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

/* Footer */
/* Footer - Profissional e Limpo */
.footer {
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%);
    color: #e8eaed;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(45, 122, 62, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: -10px;
}

.footer-logo svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo img {
    display: block;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.2;
    color: #9aa0a6;
    margin: 0;
    margin-top: 0;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul li a {
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #2d7a3e;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9aa0a6;
    margin-bottom: 2px;
}

.footer-contact .icon {
    font-size: 16px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 30px;
}

.footer-copyright {
    font-size: 13px;
    color: #9aa0a6;
    margin: 0 0 6px 0;
}

.footer-note {
    font-size: 13px;
    color: #e8eaed;
    margin: 0;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid #4ade80;
    text-align: center;
    line-height: 1.6;
    margin-top: 8px;
}

/* Responsivo Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        margin: 0 auto 12px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 30px 0 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-col ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-contact li {
        justify-content: center;
        font-size: 13px;
    }
    
    .footer-tagline {
        margin: 0 auto;
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-bottom {
        padding-top: 16px;
        margin-top: 20px;
    }
    
    .footer-copyright,
    .footer-note {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Modal do Agente */
.modal-agente {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-agente-content {
    background: white;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 450px;
    max-width: 100vw;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
    overflow-x: hidden;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-close svg {
    color: #666;
}

.agente-header {
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%);
    color: white;
    padding: 20px 16px 16px;
    border-bottom: 3px solid #2d7a3e;
}

.agente-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.agente-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.agente-logo h2 {
    font-size: 17px;
    margin: 0;
}

.agente-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.agente-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-top: 6px;
}

.status-dot-modal {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.agente-chat-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f5f5f5;
    padding: 16px;
}

.agente-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    animation: messageSlide 0.3s ease;
}

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

.message-content {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    max-width: 100%;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-bubble {
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: calc(100% - 40px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 14px;
    line-height: 1.5;
}

.message-bubble p {
    margin: 8px 0;
    line-height: 1.5;
}

.message-bubble p:first-child {
    margin-top: 0;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

.message-bubble ul {
    margin: 10px 0;
    padding-left: 20px;
}

.message-bubble li {
    margin: 5px 0;
}

.user-message .message-content {
    flex-direction: row-reverse;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, #1c572b 0%, #2d7a3e 100%);
    color: white;
}

.typing-indicator {
    animation: messageSlide 0.3s ease;
}

.typing-dots {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30% { transform: translateY(-10px); opacity: 1; }
}

.agente-input-container {
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 12px 14px;
}

.quick-questions {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.quick-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.quick-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.input-form {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.input-form textarea {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    resize: none;
    max-height: 120px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.input-form textarea:focus {
    outline: none;
    border-color: #2d7a3e;
}

.input-form button {
    background: linear-gradient(135deg, #1c572b 0%, #2d7a3e 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.input-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(28, 87, 43, 0.3);
}

.input-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 968px) {
    .modal-agente-content {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .navbar {
        background: rgba(28, 87, 43, 0.95) !important;
        position: fixed !important;
        backdrop-filter: blur(10px);
    }
    
    .nav-content {
        padding: 8px 0;
    }
    
    .nav-logo-img {
        height: 55px;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(28, 87, 43, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        display: none;
        backdrop-filter: blur(10px);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        z-index: 10002;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        font-size: 14px;
    }
    
    .btn-consulta,
    .btn-agente {
        margin: 12px 20px;
        width: calc(100% - 40px);
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-text {
        padding-top: 0;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        line-height: 1.25;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    .feature-item strong {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-company {
        font-size: 9px;
        letter-spacing: 0.5px;
        text-align: center;
        margin-top: 16px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 100%;
        max-height: 200px;
    }
    
    /* Seções gerais */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    /* Como Funciona */
    .como-funciona {
        padding: 25px 0;
    }
    
    .como-funciona h2 {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .como-funciona .section-badge {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 12px;
    }
    
    /* Como Funciona mantém horizontal em tablet/desktop - sem override aqui */
    
    /* Simulador */
    .simulador {
        padding: 25px 0;
    }
    
    .simulador-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .simulador-info h2 {
        font-size: 24px;
        margin-bottom: 14px;
        line-height: 1.3;
    }
    
    .simulador-info p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .beneficios li {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .simulador-form {
        padding: 24px 20px;
    }
    
    .simulador-form h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 10px 12px;
        height: 42px;
    }
    
    .form-note {
        font-size: 12px;
        margin-top: 12px;
    }
    
    /* Sobre */
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sobre-image {
        order: -1;
    }
    
    .sobre-image img {
        max-width: 100%;
    }
    
    .sobre-text h2 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .sobre-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .sobre-valores {
        margin-top: 16px;
        gap: 8px;
    }
    
    .valor {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .valor-icon {
        width: 32px;
        height: 32px;
    }
    
    .valor-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .valor h4 {
        font-size: 13px;
        min-width: 90px;
    }
    
    .valor p {
        font-size: 12px;
    }
    
    /* Contato */
    .contato {
        padding: 25px 0;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .contato-card {
        padding: 16px;
    }
    
    .contato-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .contato-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .contato-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .contato-whatsapp {
        padding: 16px;
        margin-top: 16px;
    }
    
    .contato-whatsapp p {
        font-size: 13px;
    }
    
    .contato-whatsapp a {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Depoimentos */
    .testimonials {
        padding: 25px 0;
    }
    
    .testimonials .section-header {
        margin-bottom: 24px;
    }
    
    .testimonials .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .testimonials .section-header p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .testimonials-carousel {
        padding: 0 10px;
        gap: 10px;
        max-width: 100%;
    }
    
    .instagram-thumbnail {
        min-height: 400px;
    }
    
    .thumbnail-overlay h3 {
        font-size: 16px;
    }
    
    .thumbnail-overlay p {
        font-size: 13px;
    }
    
    /* Notícias */
    .news-carousel-container {
        padding: 12px;
    }
    
    .news-carousel-header h3 {
        font-size: 14px;
    }
    
    .news-carousel {
        padding: 0 10px;
    }
    
    .news-slide {
        padding: 14px;
    }
    
    .news-slide-title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .news-slide-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .news-slide-source,
    .news-slide-time {
        font-size: 11px;
    }
    
    /* Social */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ==================== CHAT WIDGET (ESTILO HOSTGATOR) ==================== */

.chat-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
        top: auto;
        left: auto;
        transform: none;
        z-index: 1001;
    }
}

.chat-widget-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7a3e 0%, #1c572b 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0;
}

.chat-widget-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}

.chat-widget-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-widget-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

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

.chat-widget-bubble {
    position: absolute;
    top: 0;
    right: 80px;
    background: white;
    color: #1f2937;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    max-width: 250px;
    font-size: 12px;
    line-height: 1.4;
    animation: fadeInRight 0.3s ease;
}

.chat-widget-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

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

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

.chat-widget-window {
    position: absolute;
    top: 70px;
    right: 0;
    width: 380px;
    height: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: fadeInDown 0.3s ease;
}

@media (max-width: 768px) {
    .chat-widget-window {
        position: fixed !important;
        width: 100vw !important;
        height: 100dvh !important;
        max-height: -webkit-fill-available !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        z-index: 10001 !important;
        transform: none !important;
        margin: 0 !important;
    }
    
    .chat-widget-window.active {
        display: flex !important;
    }
    
    .chat-widget-messages {
        flex: 1;
        overflow-y: auto;
        min-height: 0;
    }
}

.chat-widget-window.active {
    display: flex;
}

.chat-widget-header {
    background: linear-gradient(135deg, #2d7a3e 0%, #1c572b 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-widget-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-widget-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-widget-header-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.chat-widget-header-info p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.chat-widget-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
}

.chat-widget-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f9fafb;
}

.chat-widget-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: fadeInUp 0.3s ease;
}

.chat-widget-message.user-message {
    flex-direction: row-reverse;
}

.chat-widget-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chat-widget-message-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.chat-widget-message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 75%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chat-widget-message.user-message .chat-widget-message-content {
    background: linear-gradient(135deg, #2d7a3e 0%, #1c572b 100%);
    color: white;
}

.chat-widget-message-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.chat-widget-message-content p:last-child {
    margin-bottom: 0;
}

.chat-widget-input {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.chat-widget-input input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    min-height: 44px;
}

.chat-widget-input input:focus {
    border-color: #2d7a3e;
}

.chat-widget-input button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7a3e 0%, #1c572b 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chat-widget-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.chat-widget-input button:active {
    transform: scale(0.95);
}

/* Mobile */
@media (max-width: 768px) {
    .chat-widget {
        top: 10px;
        right: 10px;
    }
    
    .chat-widget-bubble {
        display: none;
    }
    
    .chat-widget-input {
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    
    .chat-widget-input input {
        font-size: 16px;
        min-height: 44px;
        padding: 12px 16px;
    }
    
    .chat-widget-input button {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .chat-widget-messages {
        padding: 16px;
        padding-bottom: 8px;
    }
    
    .chat-widget-message-content {
        max-width: 85%;
        font-size: 15px;
    }
    
    .chat-widget-header {
        padding: 14px 16px;
    }
    
    /* Trabalhe Conosco Responsivo */
    .trabalhe-conosco {
        padding: 50px 0;
    }
    
    .trabalhe-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trabalhe-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trabalhe-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .trabalhe-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .trabalhe-benefits {
        align-items: stretch;
    }
    
    .benefit-item-trabalhe {
        justify-content: flex-start;
        max-width: 100%;
    }
    
    .benefit-item-trabalhe span {
        font-size: 0.95rem;
    }
    
    .cta-rh {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .trabalhe-info {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .trabalhe-badge {
        display: inline-flex;
        align-items: center;
    }
    
    .trabalhe-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .trabalhe-icon-bg {
        width: 180px;
        height: 180px;
    }
    
    .trabalhe-icon-bg i {
        font-size: 4.5rem;
    }
}

/* ===== GRID HORIZONTAL INSTAGRAM ===== */
.instagram-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-grid-horizontal .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-radius: 12px;
    overflow: hidden;
}

/* Responsivo para Grid Horizontal */
@media (max-width: 1200px) {
    .instagram-grid-horizontal {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .instagram-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .instagram-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Como Funciona - carrossel horizontal também no mobile */
    .processo-steps {
        gap: 12px;
        padding: 0 10px;
    }
    
    .step-card {
        width: 140px;
        min-height: 240px;
        padding: 18px 14px;
        flex: 0 0 auto;
    }
    
    .step-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .step-card p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .step-arrow {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8);
    animation: none;
}

.whatsapp-float i {
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(10deg);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 20px;
        left: 20px;
    }
}
