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

:root {
    --white: #ffffff;
    --gray-light: #b1b1ab;
    --gray-dark: #4e4d4d;
    --yellow: #ffec00;
    --blue: #2f358b;
    --green: #009145;
    --black: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    text-align: center;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 145, 69, 0.3);
}

.btn-primary:hover {
    background: #007a38;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 145, 69, 0.4);
}

.btn-secondary {
    background: var(--yellow);
    color: var(--gray-dark);
    box-shadow: 0 4px 15px rgba(255, 236, 0, 0.3);
}

.btn-secondary:hover {
    background: #e6d500;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 236, 0, 0.4);
}

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

.carousel-slide.gradient-bg .btn-outline,
.white-theme .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(47, 53, 139, 0.3);
}

.carousel-slide.gradient-bg .btn-outline:hover,
.white-theme .btn-outline:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo-container img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-family: 'Jost', sans-serif;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--blue);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu span:nth-child(1) {
    top: 10px;
}

.mobile-menu span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu span:nth-child(3) {
    bottom: 10px;
}

.mobile-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    background: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--gray-dark);
    padding-top: 140px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-logo {
    height: 140px;
    width: auto;
    margin: 0 auto 25px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    object-fit: contain;
    object-position: center;
}

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

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 53, 139, 0.08);
    color: var(--blue);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(47, 53, 139, 0.15);
    transition: all 0.3s ease;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.badge-icon-img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.badge-icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: invert(35%) sepia(85%) saturate(1500%) hue-rotate(130deg) brightness(95%);
}

.hero-badge-24h:hover .badge-icon-svg {
    filter: invert(35%) sepia(85%) saturate(1800%) hue-rotate(130deg) brightness(98%);
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(47, 53, 139, 0.12);
    border-color: var(--blue);
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--blue);
}

.hero-title .highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--gray-dark);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(47, 53, 139, 0.05) 0%, rgba(0, 145, 69, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(47, 53, 139, 0.1);
}

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

.stat-item strong {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
}

.stat-item span {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 600;
}

/* ========== CAROUSEL ========== */
.carousel-container {
    position: relative;
    width: 100%;
    min-height: calc(100vh + 200px);
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: calc(100vh + 200px);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    opacity: 1;
    visibility: hidden;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.carousel-slide.gradient-bg {
    background: linear-gradient(135deg, #009145 0%, #2f358b 100%);
}

.carousel-slide.white-bg {
    background: var(--white);
}

/* Imagens de fundo dos banners */
.carousel-slide.banner-juros {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/50987/money-card-business-credit-card-50987.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.carousel-slide.banner-bacen {
    background: linear-gradient(rgba(47, 53, 139, 0.85), rgba(0, 145, 69, 0.85)), url('https://i0.wp.com/tecloading.com.br/wp-content/uploads/2023/11/banco-central-do-brasil-bacen.jpg') center/cover no-repeat;
}

.carousel-slide.banner-credito {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://pefmbddiag.blob.core.windows.net/cdn-blog-pi/output/img/materia/prazo%20para%20resgatar%20dinheiro%20esquecido%20em%20banco%20vai%20at%C3%A9%2016%20de%20outubro.jpg') center/cover no-repeat;
}

.carousel-slide.banner-dividas {
    background: linear-gradient(rgba(47, 53, 139, 0.85), rgba(0, 145, 69, 0.85)), url('https://images.pexels.com/photos/6120214/pexels-photo-6120214.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.carousel-slide.banner-saude {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/236380/pexels-photo-236380.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.carousel-slide.banner-voos {
    background: linear-gradient(rgba(47, 53, 139, 0.85), rgba(0, 145, 69, 0.85)), url('https://images.pexels.com/photos/358319/pexels-photo-358319.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.carousel-slide.banner-direitos {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/5668772/pexels-photo-5668772.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.carousel-slide.banner-cartao {
    background: linear-gradient(to bottom, rgba(47, 53, 139, 0.95), rgba(0, 145, 69, 0.95));
}

/* Cartão Wrapper - Desktop */
.cartao-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    height: 100vh;
    padding: 150px 60px 180px;
    max-width: 1280px;
    margin: 0 auto;
}

.cartao-header {
    text-align: left;
    padding-right: 20px;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cartao-logo {
    height: 90px;
    width: auto;
    margin: 0 auto 30px auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.cartao-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cartao-text {
    font-size: 20px;
    color: var(--white);
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.cartao-text-short {
    display: none;
}

.cartao-text-long {
    display: block;
}

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

.cartao-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.cartao-img:hover {
    transform: translateY(-5px);
}

/* Garantir que o texto seja visível sobre as imagens */
.carousel-slide[class*="banner-"] .hero-title,
.carousel-slide[class*="banner-"] .hero-subtitle {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-slide[class*="banner-"] .hero-title .highlight {
    color: var(--yellow);
}

.carousel-slide[class*="banner-"] .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-slide[class*="banner-"] .hero-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

/* Botões brancos em todos os banners com imagem */
.carousel-slide[class*="banner-"] .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.carousel-slide[class*="banner-"] .btn-outline:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Texto branco para slides com gradiente */
.carousel-slide.gradient-bg .hero-title {
    color: var(--white);
}

.carousel-slide.gradient-bg .hero-title .highlight {
    color: var(--yellow);
}

.carousel-slide.gradient-bg .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.carousel-slide.gradient-bg .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-slide.gradient-bg .hero-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.carousel-slide.active {
    transform: translateX(0) !important;
    z-index: 2;
    visibility: visible;
}

.carousel-slide.slide-out-left {
    transform: translateX(-100%) !important;
    z-index: 1;
    visibility: visible;
}

.carousel-slide.slide-out-right {
    transform: translateX(100%) !important;
    z-index: 1;
    visibility: visible;
}

.carousel-slide .hero-content {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(47, 53, 139, 0.08);
    border: 2px solid rgba(47, 53, 139, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    pointer-events: all;
}

.carousel-slide.gradient-bg .carousel-btn,
.carousel-btn.white-theme {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.carousel-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(47, 53, 139, 0.25);
}

.carousel-slide.gradient-bg .carousel-btn:hover,
.carousel-btn.white-theme:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--white);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
    transition: all 0.3s ease;
    stroke-width: 2.5;
}

.carousel-slide.gradient-bg .carousel-btn svg,
.carousel-btn.white-theme svg {
    color: var(--white);
}

.carousel-btn:hover svg {
    color: var(--white);
    transform: translateX(3px);
}

.carousel-slide.gradient-bg .carousel-btn:hover svg,
.carousel-btn.white-theme:hover svg {
    color: var(--blue);
}

.carousel-btn.prev:hover svg {
    transform: translateX(-3px);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.indicator-dot:hover {
    transform: scale(1.2);
    background: rgba(47, 53, 139, 0.3);
}

.indicator-dot.active {
    background: var(--blue);
    width: 30px;
    border-radius: 10px;
}

/* Pause on hover */
.carousel-container:hover .carousel-slide {
    animation-play-state: paused;
}

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

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
}

.section-tag.white {
    color: var(--yellow);
}

.section-title {
    font-size: 48px;
    color: var(--blue);
    margin-bottom: 20px;
}

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

.section-description {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 800px;
    line-height: 1.8;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

/* Nossa História Page */
.historia-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    padding: 150px 0 100px;
    text-align: center;
    color: var(--white);
}

.historia-hero .section-tag {
    color: var(--white);
    background: none;
    border: none;
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.historia-content {
    padding: 100px 0;
    background: var(--white);
}

.historia-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.historia-intro h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.historia-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue), var(--green));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--blue);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(47, 53, 139, 0.1);
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--blue);
}

.timeline-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-top: 15px;
}

/* Valores Grid */
.historia-valores {
    text-align: center;
    margin-bottom: 80px;
}

.historia-valores h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.valor-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.valor-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.valor-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-light);
}

/* Historia CTA */
.historia-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(47, 53, 139, 0.05), rgba(0, 145, 69, 0.05));
    border-radius: 20px;
}

.historia-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.historia-cta p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.stats-text {
    text-align: left;
}

.stats-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 5px 0;
    line-height: 1;
    letter-spacing: 2px;
}

.stats-description {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
}

.about-section {
    padding: 120px 0;
    background: #fafafa;
}

.about-carousel-wrapper {
    margin-top: 50px;
}

.about-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-carousel-btn {
    display: none;
}

.about-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.about-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-icon.blue {
    background: linear-gradient(135deg, var(--blue), #3f51b5);
}

.about-icon.green {
    background: linear-gradient(135deg, var(--green), #00c853);
}

.about-icon.yellow {
    background: linear-gradient(135deg, var(--yellow), #ffd600);
}

.about-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.about-icon.yellow svg {
    color: var(--gray-dark);
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gray-dark);
    font-weight: 600;
    min-height: 60px;
}

.about-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    text-align: center;
}

.services-section {
    padding: 120px 0;
    background: var(--white);
}

.service-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: start;
}

.service-card {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid #e5e5e5;
    transition: all 0.4s ease;
    position: relative;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 20px 60px rgba(47, 53, 139, 0.3);
}

.service-card:not(.featured):hover {
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:not(.featured) .service-icon-large {
    background: linear-gradient(135deg, var(--green), #00c853);
}

.service-icon-large svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.service-badge {
    background: var(--yellow);
    color: var(--gray-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.service-card:not(.featured) h3 {
    color: var(--gray-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.service-card:not(.featured) p {
    color: var(--gray-light);
}


.service-text-content {
    padding: 20px 0;
}

.service-text-content h3 {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 20px;
}

.service-text-content > p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), #00c853);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 145, 69, 0.15);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), #00c853);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
    stroke-width: 2;
}

.highlight-text strong {
    display: block;
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 4px;
    font-family: 'Jost', sans-serif;
}

.highlight-text p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
}

.areas-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #fafafa 0%, var(--white) 100%);
}

.areas-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.areas-carousel {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.areas-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 145, 69, 0.2);
}

.areas-carousel-btn:hover {
    background: var(--green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 145, 69, 0.3);
}

.areas-carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--green);
    transition: color 0.3s ease;
}

.areas-carousel-btn:hover svg {
    color: var(--white);
}

.areas-carousel-btn.areas-prev {
    left: 0;
}

.areas-carousel-btn.areas-next {
    right: 0;
}

.area-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.area-card::after {
    content: 'Clique para ver soluções';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 145, 69, 0.95);
    color: white;
    padding: 5px;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.area-card:hover {
    border-color: var(--green);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 145, 69, 0.15);
}

.area-card:hover::after {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .area-card::after {
        transform: translateY(0);
    }
}

.area-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.area-icon img {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.area-card h4 {
    font-size: 19px;
    margin: 15px 0 12px;
    color: var(--gray-dark);
    font-weight: 600;
    line-height: 1.3;
}

.area-card p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.area-card:hover p {
    color: var(--green);
}

/* ========== DEFESA COLETIVA ========== */
.collective-defense-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--white) 0%, #f9f9f9 100%);
}

.collective-content {
    max-width: 1000px;
    margin: 0 auto;
}

.collective-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 60px;
}

.collective-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 145, 69, 0.15);
    border-color: var(--green);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-dark);
    font-weight: 600;
}

.benefit-item p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ========== SERVIÇOS ========== */
.services-section {
    padding: 120px 0;
    background: var(--white);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, var(--green) 0%, #007a38 100%);
    padding: 40px 35px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 145, 69, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--blue) 0%, #1e2470 100%);
    box-shadow: 0 10px 40px rgba(47, 53, 139, 0.3);
}

.service-header {
    margin-bottom: 25px;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    padding: 15px 20px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.service-features li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.service-text-content {
    padding: 20px 0;
}

.service-text-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.service-text-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.service-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-light);
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.highlight-text strong {
    display: block;
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 13px;
    color: var(--gray-light);
    margin: 0;
}

/* ========== HERO CTA BUTTONS SECTION ========== */
.hero-cta-section {
    position: relative;
    padding: 40px 40px 0;
    margin-top: -30px;
    z-index: 20;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.hero-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-cta-section {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 50px;
        padding: 0 20px;
        margin-top: 0;
    }

    .hero-cta-section .container {
        padding: 0;
    }
    
    .hero-cta-buttons {
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
    }
    
    .hero-cta-buttons .btn {
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.cta-section .btn-primary {
    background: var(--white);
    color: var(--green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--yellow);
    color: var(--gray-dark);
    transform: translateY(-3px);
}

/* ========== ASSOCIATION CTA SECTION ========== */
.association-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    position: relative;
    overflow: hidden;
}

.association-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.association-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 1;
}

.association-cta-section .stats-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.association-cta-section .stats-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.association-cta-section .stats-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    fill: none;
    color: var(--white);
}

.association-cta-section .stats-text {
    text-align: left;
}

.association-cta-section .stats-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.association-cta-section .stats-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.association-cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.association-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.association-cta-section .btn-primary {
    background: var(--white);
    color: var(--green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.association-cta-section .btn-primary:hover {
    background: var(--yellow);
    color: var(--gray-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.association-cta-section .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.association-cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--blue);
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    flex-shrink: 0;
}

.method-icon img {
    width: 50px;
    height: 50px;
}

.contact-method strong {
    display: block;
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-method p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--blue);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 145, 69, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%234e4d4d" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a237e;
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--yellow) !important;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

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

.footer-links a {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow) !important;
}

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

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

/* ========== SISTEMA DE TICKETS ========== */
.ticket-system-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-area-restrita {
    background: var(--green);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.btn-area-restrita:hover {
    background: #007a38;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 145, 69, 0.3);
}

/* Login */
.login-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    width: 180px;
    margin-bottom: 25px;
}

.login-header h2 {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 10px;
}

.login-header p {
    color: var(--gray-dark);
    font-size: 15px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 14px;
}

.login-form input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--green);
}

.login-footer {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.login-footer a {
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Dashboard */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.user-info h3 {
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 5px;
}

.user-info span {
    color: var(--gray-dark);
    font-size: 14px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.blue {
    background: rgba(47, 53, 139, 0.1);
}

.stat-icon.green {
    background: rgba(0, 145, 69, 0.1);
}

.stat-icon.yellow {
    background: rgba(255, 236, 0, 0.1);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-icon.blue svg {
    stroke: var(--blue);
}

.stat-icon.green svg {
    stroke: var(--green);
}

.stat-icon.yellow svg {
    stroke: #d4bc00;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
}

.dashboard-actions {
    margin-bottom: 40px;
    text-align: center;
}

.dashboard-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dashboard-actions svg {
    width: 20px;
    height: 20px;
}

.tickets-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tickets-section h3 {
    font-size: 26px;
    color: var(--blue);
    margin-bottom: 25px;
}

.tickets-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-dark);
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.filter-btn.active {
    background: var(--green);
    color: white;
    border-color: var(--green);
}

.tickets-list {
    display: grid;
    gap: 20px;
}

.no-tickets {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-light);
    font-size: 16px;
}

.ticket-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.ticket-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ticket-card[data-status="analise"] {
    border-left-color: #ffc107;
}

.ticket-card[data-status="atendimento"] {
    border-left-color: #2196f3;
}

.ticket-card[data-status="aguardando"] {
    border-left-color: #ff9800;
}

.ticket-card[data-status="concluido"] {
    border-left-color: var(--green);
}

.ticket-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ticket-protocol {
    font-weight: 700;
    color: var(--blue);
    font-size: 16px;
}

.ticket-status {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-analise {
    background: #fff3cd;
    color: #856404;
}

.status-atendimento {
    background: #cfe2ff;
    color: #084298;
}

.status-aguardando {
    background: #ffe5cc;
    color: #cc5200;
}

.status-concluido {
    background: #d1f2e6;
    color: #0a5c36;
}

.ticket-card-body h4 {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 8px;
}

.ticket-company {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.ticket-description {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.ticket-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.ticket-date {
    font-size: 13px;
    color: var(--gray-light);
}

.btn-view-ticket {
    padding: 8px 20px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.3s ease;
}

.btn-view-ticket:hover {
    background: #1f2563;
}

/* Nova Solicitação */
.new-ticket-container {
    max-width: 900px;
    margin: 0 auto;
}

.new-ticket-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-back {
    background: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--blue);
    transition: all 0.3s ease;
}

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

.btn-back:hover {
    background: #f0f0f0;
    transform: translateX(-5px);
}

.new-ticket-header h2 {
    font-size: 32px;
    color: white;
}

.new-ticket-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.file-upload-area {
    position: relative;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--green);
    background: #f8fff8;
}

.file-upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.file-upload-label svg {
    width: 50px;
    height: 50px;
    stroke: var(--green);
}

.file-upload-label span {
    font-weight: 600;
    color: var(--gray-dark);
}

.file-upload-label small {
    color: var(--gray-light);
    font-size: 13px;
}

.files-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-name {
    font-size: 14px;
    color: var(--gray-dark);
}

.file-size {
    font-size: 12px;
    color: var(--gray-light);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Visualização de Ticket */
.ticket-view-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ticket-view-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ticket-view-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.ticket-view-title h2 {
    font-size: 28px;
    color: white;
}

.ticket-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ticket-details {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.detail-group {
    margin-bottom: 25px;
}

.detail-group.full-width {
    grid-column: 1 / -1;
}

.detail-group label {
    display: block;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
    font-size: 14px;
}

.detail-group span,
.detail-group p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.7;
}

.ticket-timeline {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.ticket-timeline h3 {
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 25px;
}

.messages-list {
    flex: 1;
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 10px;
}

.messages-list::-webkit-scrollbar {
    width: 6px;
}

.messages-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.messages-list::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 10px;
}

.message-item {
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 12px;
}

.message-tecnico {
    background: #e3f2fd;
    border-left: 4px solid var(--blue);
}

.message-user {
    background: #e8f5e9;
    border-left: 4px solid var(--green);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.message-header strong {
    color: var(--blue);
    font-size: 14px;
}

.message-date {
    font-size: 12px;
    color: var(--gray-light);
}

.message-text {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 14px;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-input-group {
    position: relative;
}

.message-input-group textarea {
    width: 100%;
    padding: 15px 50px 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    resize: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.message-input-group textarea:focus {
    outline: none;
    border-color: var(--green);
}

.btn-attach {
    position: absolute;
    right: 10px;
    top: 10px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-attach svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-light);
    transition: stroke 0.3s ease;
}

.btn-attach:hover {
    background: #f0f0f0;
}

.btn-attach:hover svg {
    stroke: var(--green);
}

.message-files-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-file-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ========== RESPONSIVE TABLETS ========== */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 350px;
    }
    
    .hero-content {
        padding-top: 120px;
    }
    
    .hero-logo {
        height: 120px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .collective-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-layout {
        gap: 40px;
    }
    
    .service-card h3 {
        font-size: 28px;
    }
    
    .contact-grid {
        gap: 50px;
    }
}

/* ========== RESPONSIVE MOBILE 768px ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header & Navigation */
    .header {
        padding: 15px 0;
    }
    
    .nav {
        padding: 0 20px;
    }
    
    .logo-container img {
        height: 40px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 20px;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
    }
    
    .btn-area-restrita {
        display: inline-block;
        margin-top: 10px;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 70px 0 180px;
    }
    
    .carousel-container {
        height: auto;
        min-height: 70vh;
    }
    
    .hero-content {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    
    .hero-logo {
        height: 90px;
        margin-bottom: 15px;
    }
    
    .hero-badges {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    /* Carousel Navigation */
    .carousel-nav {
        display: none;
    }
    
    .carousel-indicators {
        bottom: 40px;
    }
    
    .indicator-dot {
        width: 8px;
        height: 8px;
    }
    
    
    /* Mobile Wallpapers - Override desktop backgrounds */
    .carousel-slide.banner-juros {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.pinimg.com/1200x/dc/af/72/dcaf72d679ffa4d5eb18e3ecf343067f.jpg') center/cover no-repeat;
    }
    
    .carousel-slide.banner-bacen {
        background: linear-gradient(rgba(47, 53, 139, 0.85), rgba(0, 145, 69, 0.85)), url('https://lh7-us.googleusercontent.com/Ia9BHzE12nXj3qzbdeLGdQ1UxMJX_UuaEQY4P11CFttLcpkaRNUTw66mRfjrpu8sw_gXJNMBlV2iXGNid-u8wXLxDgCs6OvW7SMZgG85lSdoNamo2sqgZBtsc8aq9VDbwBLQiLoIOPk-IvjoNQ-tzc4') center/cover no-repeat;
    }
    
    .carousel-slide.banner-voos {
        background: linear-gradient(rgba(47, 53, 139, 0.85), rgba(0, 145, 69, 0.85)), url('https://i.pinimg.com/736x/31/7c/7b/317c7bcc23ab4ae0daa460c1a67fbbe5.jpg') center/cover no-repeat;
    }
    
    .carousel-slide.banner-credito {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.pinimg.com/736x/18/ba/6f/18ba6fedc266f1ad72a353fcd85fc993.jpg') center/cover no-repeat;
    }
    
    /* Cartão Mobile */
    .cartao-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
        padding: 60px 20px 180px;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
    }
    
    .cartao-header {
        margin-bottom: 15px;
        text-align: center;
        padding: 0;
    }
    
    .cartao-logo {
        height: 50px;
        margin: 0 auto 8px;
        display: block;
    }
    
    .cartao-title {
        font-size: 26px;
        margin: 0 0 8px 0;
        text-align: center;
    }
    
    .cartao-text {
        font-size: 13px;
        margin: 0;
        text-align: center;
    }
    
    .cartao-text-short {
        display: block;
    }
    
    .cartao-text-long {
        display: none;
    }
    
    .cartao-display {
        max-width: 180px;
        width: 100%;
        padding: 0;
        margin: -10px auto 0;
    }
    
    .cartao-img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        border-radius: 8px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Collective Benefits */
    .collective-defense-section {
        padding: 60px 0;
    }
    
    .collective-content > p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .collective-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-icon img {
        width: 50px;
        height: 50px;
    }
    
    .benefit-item h4 {
        font-size: 18px;
    }
    
    .benefit-item p {
        font-size: 14px;
    }
    
    /* Services */
    .services-section {
        padding: 60px 0;
    }
    
    .service-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
    
    .service-text-content {
        padding: 10px 0;
    }
    
    .service-text-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .service-text-content > p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .service-steps {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .step-content h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
    }
    
    .highlight-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .highlight-text strong {
        font-size: 15px;
    }
    
    .highlight-text p {
        font-size: 12px;
    }
    
    /* Stats Banner Mobile */
    .stats-banner {
        padding: 40px 0;
    }
    
    .stats-content {
        gap: 20px;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .stats-number {
        font-size: 36px;
    }
    
    .stats-description {
        font-size: 14px;
    }
    
    /* Nossa História Mobile */
    .historia-hero {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .historia-content {
        padding: 60px 0;
    }
    
    .historia-intro h2 {
        font-size: 28px;
    }
    
    .historia-intro p {
        font-size: 16px;
    }
    
    /* Timeline Mobile - Vertical */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-content h3 {
        font-size: 22px;
    }
    
    .timeline-content p {
        font-size: 15px;
    }
    
    /* Valores Grid Mobile */
    .historia-valores h2 {
        font-size: 28px;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .valor-card {
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .historia-cta h2 {
        font-size: 26px;
    }
    
    .historia-cta p {
        font-size: 16px;
    }
    
    /* About Carousel Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-carousel-wrapper {
        padding: 0 15px;
        overflow: hidden;
    }
    
    .about-carousel {
        display: flex;
        gap: 30px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .about-carousel-btn {
        display: none;
    }
    
    .about-card {
        width: 300px;
        min-height: 350px;
        height: auto;
        flex-shrink: 0;
        padding: 35px 25px;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .about-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .about-card p {
        font-size: 14px;
    }
    
    /* Areas Carousel */
    .areas-section {
        padding: 60px 0;
    }
    
    .areas-carousel-wrapper {
        padding: 0 15px;
    }
    
    .areas-carousel-btn {
        display: none;
    }
    
    .area-card {
        width: 280px;
        height: 280px;
        padding: 30px 25px;
    }
    
    .area-icon img {
        width: 44px;
        height: 44px;
    }
    
    .area-card h4 {
        font-size: 17px;
        margin: 12px 0 10px;
    }
    
    .area-card p {
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .association-cta-section {
        padding: 60px 0;
    }
    
    .association-cta-content {
        margin-bottom: 40px;
    }
    
    .association-cta-content h2 {
        font-size: 32px;
    }
    
    .association-cta-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .association-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .association-cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .association-cta-section .stats-content {
        gap: 20px;
    }
    
    .association-cta-section .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .association-cta-section .stats-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .association-cta-section .stats-number {
        font-size: 36px;
    }
    
    .association-cta-section .stats-description {
        font-size: 12px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
    
    .contact-info > p {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-form h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        width: 140px;
    }
    
    .footer-column h4,
    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    /* Comparison Table */
    .comparison-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    /* Tickets */
    .ticket-system-section {
        padding: 100px 0 40px;
    }
    
    .ticket-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .ticket-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ticket-card-body h4 {
        font-size: 16px;
    }
    
    .ticket-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Formulários Mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
        padding: 14px 16px;
    }
    
    /* Botões Mobile */
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero Mobile */
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Seções gerais */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ========== RESPONSIVE MOBILE SMALL 480px ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo-container img {
        height: 35px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 180px;
    }
    
    .carousel-container {
        min-height: 80vh;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .hero-logo {
        height: 75px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .carousel-indicators {
        bottom: 30px;
    }
    
    
    /* Sections */
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Collective Benefits */
    .collective-content > p {
        font-size: 15px;
    }
    
    .benefit-item {
        padding: 25px 18px;
    }
    
    .benefit-item h4 {
        font-size: 17px;
    }
    
    .benefit-item p {
        font-size: 13px;
    }
    
    /* Services */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .service-text-content h3 {
        font-size: 22px;
    }
    
    .service-text-content > p {
        font-size: 14px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    /* About Carousel Small Mobile */
    .about-carousel-wrapper {
        padding: 0 10px;
    }
    
    .about-carousel {
        gap: 25px;
    }
    
    .about-card {
        width: 280px;
        min-height: 330px;
        height: auto;
        flex-shrink: 0;
        padding: 30px 20px;
    }
    
    .about-icon {
        width: 55px;
        height: 55px;
    }
    
    .about-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    .about-card p {
        font-size: 13px;
    }
    
    /* Areas */
    .areas-carousel-wrapper {
        padding: 0 10px;
    }
    
    .areas-carousel-btn {
        display: none;
    }
    
    .area-card {
        width: 260px;
        height: 260px;
        padding: 25px 20px;
    }
    
    .area-icon img {
        width: 40px;
        height: 40px;
    }
    
    .area-card h4 {
        font-size: 16px;
    }
    
    .area-card p {
        font-size: 12px;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
    }
    
    .association-cta-section {
        padding: 50px 0;
    }
    
    .association-cta-content {
        margin-bottom: 30px;
    }
    
    .association-cta-content h2 {
        font-size: 26px;
    }
    
    .association-cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .association-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .association-cta-buttons .btn {
        width: 100%;
        font-size: 15px;
        padding: 16px 30px;
    }
    
    .association-cta-section .stats-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .association-cta-section .stats-icon {
        width: 50px;
        height: 50px;
    }
    
    .association-cta-section .stats-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .association-cta-section .stats-text {
        text-align: center;
    }
    
    .association-cta-section .stats-number {
        font-size: 32px;
    }
    
    .association-cta-section .stats-description {
        font-size: 11px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    /* Contact */
    .contact-info h2 {
        font-size: 26px;
    }
    
    .contact-info > p {
        font-size: 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-form h3 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        width: 120px;
    }
    
    .footer-column h4,
    .footer-col h4 {
        font-size: 17px;
    }
    
    .footer-column p,
    .footer-col ul li,
    .footer-col ul li a {
        font-size: 14px;
    }
    
    /* Tickets */
    .ticket-card {
        padding: 18px 15px;
    }
    
    .ticket-status {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    /* Formulários Small Mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 12px 14px;
    }
    
    /* Botões Small Mobile */
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Hero Small Mobile */
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .login-card {
        padding: 30px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .tickets-section {
        padding: 25px;
    }
    
    .tickets-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .ticket-view-content {
        grid-template-columns: 1fr;
    }
    
    .new-ticket-form {
        padding: 30px;
    }
    
    .collective-benefits {
        grid-template-columns: 1fr;
    }
}

/* Estilos da Tabela de Comparação */
.comparison-section {
    padding: 80px 0;
    background-color: var(--white);
}

.comparison-section .container {
    max-width: 1280px;
}

.comparison-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--blue);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background-color: transparent;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.comparison-table th {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    color: var(--gray-dark);
    text-transform: uppercase;
    background-color: transparent;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 400;
    font-size: 1.05em;
    padding-left: 30px;
    padding-right: 30px;
    width: 35%;
}

.comparison-table td:nth-child(2) {
    width: 12%;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table .checkmark {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #4CAF50;
    border-radius: 50%;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

.comparison-table .dash {
    color: #999;
    font-size: 1.5em;
}

.comparison-table .logo-cell img {
    max-width: 70px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.comparison-table .header-row th:not(:first-child) {
    border-bottom: 2px solid #333;
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-section h2 {
        font-size: 1.6em;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .comparison-section .container {
        padding: 0 20px;
        overflow-x: scroll;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        touch-action: auto;
        max-width: 100vw;
        width: 100%;
    }
    
    .comparison-table {
        min-width: 900px;
        width: 900px;
        display: table;
        margin: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.9em;
    }
    
    .comparison-table td:first-child {
        font-size: 0.85em;
        padding-right: 12px;
    }
    
    .comparison-table th:first-child {
        background: white;
    }
    
    .comparison-table .logo-cell img {
        max-width: 50px;
    }
    
    .comparison-table .checkmark {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .comparison-section h2 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }
    
    .comparison-table {
        min-width: 500px;
        font-size: 0.85em;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 6px;
    }
    
    .comparison-table td:first-child {
        font-size: 0.8em;
        max-width: 150px;
    }
    
    .comparison-table .logo-cell img {
        max-width: 40px;
    }
    
    .comparison-table .checkmark {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
}

/* ========== MODAL DE SOLUÇÕES ========== */
.solutions-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    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;
}

.solutions-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

.solutions-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid #e5e5e5;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
}

.solutions-modal-header h2 {
    color: white;
    font-size: 28px;
    margin: 0;
}

.solutions-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 36px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.solutions-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.solutions-modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

.solution-item {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid var(--green);
    transition: all 0.3s ease;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.solution-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 145, 69, 0.1);
}

.area-card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .solutions-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 10px;
    }
    
    .solutions-modal-header {
        padding: 18px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .solutions-modal-header h2 {
        font-size: 20px;
        font-weight: 600;
    }
    
    .solutions-modal-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .solutions-modal-body {
        padding: 20px 15px;
        max-height: calc(90vh - 80px);
    }
    
    .solution-item {
        font-size: 14px;
        padding: 12px 15px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .solutions-modal-content {
        width: 98%;
        max-height: 95vh;
        margin: 5px;
        border-radius: 15px;
    }
    
    .solutions-modal-header {
        padding: 15px 18px;
        border-radius: 15px 15px 0 0;
    }
    
    .solutions-modal-header h2 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .solutions-modal-close {
        width: 32px;
        height: 32px;
        font-size: 22px;
        flex-shrink: 0;
    }
    
    .solutions-modal-body {
        padding: 15px 12px;
        max-height: calc(95vh - 70px);
    }
    
    .solution-item {
        font-size: 13px;
        padding: 10px 12px;
        margin-bottom: 6px;
        line-height: 1.5;
    }
}
