/* Estilos gerais */
:root {
    --primary-color: #11D25F;
    --primary-dark: #0fb955;
    --text-color: #333;
    --text-light: #777;
    --bg-color: #DBA716;
    ;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    /* Cores Neutras */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Status Colors */
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --error-red: #EF4444;
    --info-blue: #3B82F6;

    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;

    /* Espaçamentos */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transições */
    --transition-base: 250ms ease-in-out;
    --transition-fast: 150ms ease-in-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
}

.main-header {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: max-content;
}

.logo img {
    height: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Menu desktop */
.desktop-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 10px;
}

.nav-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: var(--transition);
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 70%;
}

.nav-item a:hover {
    color: #fff;
}

.nav-item.active a {
    color: #fff;
    font-weight: 600;
}

/* Estilos do Carrossel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    /* Ajuste conforme necessário */
    max-height: 800px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.slide-content h1,
.slide-content h2,
.slide-content h3 {
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.slide-content h1 {
    font-size: 3.5rem;
}

.slide-content h2 {
    font-size: 4rem;
    margin-top: 10px;
}

.slide-content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Controles laterais */
.control-prev,
.control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
}

.control-prev {
    left: 30px;
}

.control-next {
    right: 30px;
}

.control-prev:hover,
.control-next:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content h2 {
        font-size: 3rem;
    }

    .slide-content h3 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .carousel-container {
        height: 100vh;
    }

    .control-prev,
    .control-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content h3 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .carousel-container {
        height: 100vh;
    }

    .control-prev,
    .control-next {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .control-prev {
        left: 15px;
    }

    .control-next {
        right: 15px;
    }
}


/* Botão de ação */
.header-action {
    margin-left: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(17, 210, 95, 0.3);
}

.whatsapp-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 210, 95, 0.4);
}

.whatsapp-button .icon {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .nav-list {
    flex-direction: column;
    padding: 20px;
}

.mobile-menu .nav-item {
    margin: 10px 0;
}

.mobile-menu .nav-item a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

/* Efeito quando o menu está aberto */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsividade */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

    .header-action {
        margin-left: auto;
        margin-right: 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .whatsapp-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 150px;
    }

    .whatsapp-button {
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .whatsapp-button .icon {
        display: none;
    }
}

/* Estilos Gerais */
.partners-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Carrossel CSS puro */
.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    width: calc(250px * 10);
    /* Ajuste conforme número de itens */
}

.partner-item {
    min-width: 200px;
    text-align: center;
    flex-shrink: 0;
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efeitos Hover */
.partner-item:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animação do carrossel */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 4));
        /* Move metade dos itens */
    }
}

/* Pausa a animação no hover */
.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-name {
        font-size: 1rem;
    }

    .partners-track {
        gap: 20px;
        animation-duration: 15s;
    }

    .partner-item {
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .partners-track {
        gap: 15px;
        animation-duration: 10s;
    }

    .partner-item {
        min-width: 140px;
    }
}

/* Estilos base */
.box-benefit {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.box-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #DBA716, #DBA716);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.box-benefit-icon {
    font-size: 2.5rem;
    color: #DBA716;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.box-benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.box-benefit-text {
    color: #7f8c8d;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.box-benefit-hover {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, #DBA716, #DBA716);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    opacity: 0;
}

.box-benefit-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.box-benefit-link i {
    transition: transform 0.3s ease;
}

/* Efeitos hover */
.box-benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.box-benefit:hover::before {
    transform: scaleX(1);
}

.box-benefit:hover .box-benefit-icon {
    transform: rotate(10deg) scale(1.1);
}

.box-benefit:hover .box-benefit-title {
    color: #11D25F;
}

.box-benefit:hover .box-benefit-text {
    color: #34495e;
}

.box-benefit:hover .box-benefit-hover {
    bottom: 0;
    opacity: 1;
}

.box-benefit-link:hover i {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .box-benefit {
        padding: 20px;
    }

    .box-benefit-title {
        font-size: 1.3rem;
    }

    .box-benefit:hover {
        transform: translateY(-5px);
    }
}

/* Estilos Gerais Mobile */
.mobile-consortium-section {
    padding: 30px 0;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 100%;
    padding: 0 15px;
}

/* Cabeçalho */
.section-header {
    margin-bottom: 25px;
    padding: 0 10px;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.section-header p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.view-all-btn {
    display: inline-block;
    color: #11D25F;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

/* Cards de Consórcio */
.consortium-card {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.available {
    background-color: rgba(17, 210, 95, 0.1);
    color: #11D25F;
}

.reserved {
    background-color: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}

.institution {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.institution-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.institution h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.consortium-code {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Corpo do Card */
.card-body {
    padding: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.info-label {
    color: #7f8c8d;
    font-weight: 500;
}

.info-value {
    color: #2c3e50;
    text-align: right;
    font-weight: 500;
}

.highlight .info-value {
    color: #11D25F;
    font-weight: 600;
}

/* Rodapé do Card */
.card-footer {
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
}

.action-btn {
    display: block;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.reserve {
    background-color: #11D25F;
    color: white;
}

.similar {
    background-color: white;
    color: #2c3e50;
    border: 1px solid #ddd;
}

/* Melhorias para Telas Maiores (Tablets) */
@media (min-width: 768px) {
    .mobile-consortium-section {
        padding: 40px 0;
    }

    .container {
        max-width: 720px;
    }

    .consortium-card {
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .institution h3 {
        font-size: 1.2rem;
    }

    .info-row {
        font-size: 1rem;
    }
}

/* Estilos Gerais */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho da Seção */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #11D25F, #2ecc71);
    margin: 0 auto;
}

/* Cards de Depoimento */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(17, 210, 95, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #11D25F;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Carrossel */
.testimonials-carousel .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
}

.testimonials-carousel .owl-nav button {
    background: white !important;
    border-radius: 50% !important;
    margin-left: 10px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: none;
}

.testimonials-carousel .owl-nav button:hover {
    background: #11D25F !important;
    color: white !important;
}

.testimonials-carousel .owl-dots {
    margin-top: 30px !important;
}

.testimonials-carousel .owl-dots button.owl-dot.active span {
    background: #11D25F !important;
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .testimonials-carousel .owl-nav {
        position: relative;
        top: 0;
        text-align: center;
        margin-top: 20px;
    }
}

/* Estilos Gerais do Footer */
.professional-footer {
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.footer-main {
    padding: 60px 0 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid do Footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Colunas do Footer */
.footer-column {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-about {
    color: #b3b3b3;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #11D25F;
}

/* Links de Navegação */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #11D25F;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #11D25F;
}

/* Contato */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: #11D25F;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-contact span {
    color: #b3b3b3;
    flex: 1;
}

.footer-contact a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #11D25F;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #11D25F;
    transform: translateY(-3px);
}

/* Rodapé Inferior */
.footer-bottom {
    background: #111111;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.copyright {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.developer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.developer a {
    color: #11D25F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer a:hover {
    color: #0fa84f;
}

.developer img {
    vertical-align: middle;
}

/* Responsividade */
@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .copyright {
        margin-bottom: 0;
    }
}

/* Quem somos */
/* Estilos Profissionais */
/* CSS personalizado inline seria inserido aqui */
/* Para produção, recomenda-se arquivo CSS externo */

/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Principal */
    --primary-green: #005A3D;
    --primary-green-light: #007A52;
    --primary-green-dark: #003D2A;
    --accent-gold: #D4AF37;
    --accent-gold-light: #F4D03F;

    /* Cores Neutras */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;

    /* Tamanhos de Fonte */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Espaçamentos */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* Transições */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* Configurações Globais */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* Seção Sobre Profissional */
.about-professional {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    padding: var(--space-16) 0;
}

@media (min-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-20);
    }
}

.hero-content {
    padding: var(--space-8);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    transform: scale(1);
    transition: transform var(--transition-slow);
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: var(--space-3);
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -var(--space-2);
    left: 0;
    width: var(--space-12);
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
    border-radius: var(--radius-full);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

/* Botão Principal */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-base);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-top: var(--space-8);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    color: #000;
}

.cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.cta-primary:hover svg {
    transform: translateX(var(--space-1));
}

/* História */
.about-history {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-20) 0;
    background: var(--white);
}

@media (min-width: 1024px) {
    .about-history {
        grid-template-columns: 1fr 1fr;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-12);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    width: var(--space-16);
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
    border-radius: var(--radius-full);
}

.timeline {
    position: relative;
    padding-left: var(--space-8);
}

.timeline::before {
    content: '';
    position: absolute;
    left: var(--space-6);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--accent-gold) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-12);
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: var(--space-2);
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    border: 4px solid var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.history-image {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.history-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.history-image:hover img {
    transform: scale(1.05);
}

/* Diferenciais */
.about-differentials {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-16);
}

@media (min-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.differential-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.differential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.card-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.differential-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.differential-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* MVV */
.about-mvv {
    padding: var(--space-20) 0;
    background: var(--white);
}

.mvv-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
    role: tablist;
}

.mvv-tab {
    padding: var(--space-4) var(--space-8);
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--text-base);
    role: tab;
}

.mvv-tab:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.mvv-tab.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.mvv-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.mvv-pane {
    display: none;
    text-align: center;
}

.mvv-pane.active {
    display: block;
}

.mvv-pane h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.mvv-pane p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-600);
}

.values-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.values-list li {
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-green);
    font-size: var(--text-base);
    line-height: 1.6;
}

.values-list li strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* CTA Final */
.about-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    text-align: center;
    color: var(--white);
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.about-cta p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-12);
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-10);
    background: var(--accent-gold);
    color: var(--gray-900);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.4);
    background: var(--accent-gold-light);
}

.cta-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform var(--transition-base);
}

.cta-button:hover svg {
    transform: translateX(var(--space-2));
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    :root {
        --text-4xl: 2rem;
        --text-5xl: 2.5rem;
        --space-16: 3rem;
        --space-20: 4rem;
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .timeline {
        padding-left: var(--space-4);
    }

    .timeline::before {
        left: var(--space-3);
    }

    .timeline-item::before {
        left: -20px;
    }

    .mvv-tabs {
        flex-direction: column;
        align-items: center;
    }

    .mvv-tab {
        min-width: 200px;
    }

    .about-cta h2 {
        font-size: var(--text-3xl);
    }
}

/* Utilitários */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* consorcios-contemplados */


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* ===============================================
           SEÇÃO DE FILTROS
        =============================================== */
.filter-section {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    position: sticky;
    top: var(--space-4);
    z-index: 100;
    border: 1px solid var(--gray-200);
    margin-top: 10%;
    width: fit-content;
}

.filter-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.filter-section h2::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-gold) 100%);
    border-radius: var(--radius-full);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .filter-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.filter-group label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.filter-group select,
.filter-group input {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: var(--white);
    transition: all var(--transition-base);
    font-family: var(--font-primary);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 90, 61, 0.1);
}

.filter-group select:hover,
.filter-group input:hover {
    border-color: var(--primary-green-light);
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.sort-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.sort-group label {
    font-weight: 500;
    color: var(--gray-600);
}

.sort-group select {
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.875rem;
}

/* Contador de resultados */
.results-counter {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.results-counter .count {
    font-weight: 600;
    color: var(--primary-green);
}

/* ===============================================
           BOTÕES
        =============================================== */
.reserve-btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.reserve-btn::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.reserve-btn:hover::before,
.cta-button:hover::before {
    left: 100%;
}

.reserve-btn:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
}

.cta-button {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--gray-900);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

/* ===============================================
           SEÇÃO DE CARDS
        =============================================== */
.cards-section {
    margin: var(--space-8) 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.consortium-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
}

.consortium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
}

.consortium-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.card-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.card-body {
    padding: var(--space-6);
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.card-row:last-child {
    border-bottom: none;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Destacar valores importantes */
.card-row:nth-child(1) .card-value,
.card-row:nth-child(4) .card-value {
    color: var(--primary-green);
    font-size: 1rem;
}

.card-actions {
    padding: var(--space-6);
    background: var(--gray-50);
    text-align: center;
}

/* ===============================================
           SEÇÃO DE CONTATO
        =============================================== */
.contact-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: var(--space-16) var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    margin: var(--space-12) 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-section>* {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.contact-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-4);
    opacity: 0.9;
    color: #000;
}

.contact-section .cta-button {
    margin-top: var(--space-8);
    font-size: 1.125rem;
    padding: var(--space-5) var(--space-10);
}

/* ===============================================
           LOADING E ESTADOS
        =============================================== */
.loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    padding: var(--space-8);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-300);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-results {
    display: none;
    text-align: center;
    padding: var(--space-16);
    color: var(--gray-500);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: var(--space-4);
    color: var(--gray-400);
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    color: var(--gray-700);
}

/* ===============================================
           ANIMAÇÕES
        =============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===============================================
           RESPONSIVIDADE
        =============================================== */
@media (max-width: 768px) {
    .filter-section {
        position: static;
        margin: var(--space-4) 0;
        padding: var(--space-6);
    }

    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cards-grid {
        gap: var(--space-4);
    }

    .contact-section {
        padding: var(--space-12) var(--space-6);
        margin: var(--space-8) 0;
    }

    .contact-section h2 {
        font-size: 1.875rem;
    }
}

/* ===============================================
           UTILITÁRIOS
        =============================================== */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Melhorar acessibilidade */
*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===============================================
           MELHORIAS ESPECÍFICAS
        =============================================== */

/* Badge de empresa */
.card-header h3[data-empresa="caixa"]+.card-badge {
    background: linear-gradient(135deg, #004B87 0%, #0066CC 100%);
}

.card-header h3[data-empresa="bradesco"]+.card-badge {
    background: linear-gradient(135deg, #CC092F 0%, #E31837 100%);
}

.card-header h3[data-empresa="itau"]+.card-badge {
    background: linear-gradient(135deg, #EC7000 0%, #FF8C00 100%);
}

.card-header h3[data-empresa="santander"]+.card-badge {
    background: linear-gradient(135deg, #EC0000 0%, #FF1744 100%);
}

/* Filtros ativos */
.filter-group select.active,
.filter-group input.active {
    border-color: var(--primary-green);
    background: rgba(0, 90, 61, 0.05);
}

/* Indicador de filtros aplicados */
.filter-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
}


/* Financiamneto */
/* Container hero principal */
.elementor-element-80db4f9 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
    /* Fallback caso a imagem não carregue */
}

#contemplados::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/fundocontemplados.jpg");
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#quem-somos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/fundoquem-somos.jpg");
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay para melhor contraste (ajustado) */
#financeiro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/fundofinanceiro.jpg");
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#consorcio::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/fundoconsorcio.jpg");
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#capital-de-giro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/fundocapitadegiro.jpg");
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Container de conteúdo */
.e-con-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    color: white;
}

/* Estilo do ícone */
.elementor-element-592bebb {
    margin-bottom: 20px;
}

.elementor-element-592bebb img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    /* Transforma o ícone em branco */
}

/* Estilo do título */
.elementor-element-ba350a2 {
    text-align: left;
}

.elementor-heading-title.elementor-size-default {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 199, 199, 0.027);
    animation: fadeInUp 1s ease-out;
}

/* Efeito de animação suave */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .elementor-heading-title.elementor-size-default {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .elementor-element-80db4f9 {
        height: 80vh;
        min-height: 500px;
    }

    .elementor-heading-title.elementor-size-default {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .elementor-heading-title.elementor-size-default {
        font-size: 2.2rem;
    }

    .elementor-element-592bebb img {
        width: 48px;
        height: 48px;
    }
}

/* Container principal */
.elementor-element-5d9b4f2 {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Container interno */
.e-con-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

/* Seção do formulário */
.elementor-element-b3894fc {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 90, 61, 0.1);
}

/* Títulos */
.elementor-heading-title.elementor-size-default {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.elementor-element-5440205 .elementor-heading-title {
    color: #11D25F;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elementor-element-3b02752 .elementor-heading-title {
    color: #005A3D;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Formulário */
.elementor-form {
    margin-top: 20px;
}

.elementor-form-fields-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.elementor-field-group {
    margin-bottom: 0;
}

.elementor-field {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.elementor-field:focus {
    outline: none;
    border-color: #11D25F;
    box-shadow: 0 0 0 3px rgba(17, 210, 95, 0.2);
    background-color: #fff;
}

.elementor-field::placeholder {
    color: #999;
}

/* Select personalizado */
.elementor-select-wrapper {
    position: relative;
}

.select-caret-down-wrapper {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.elementor-select-wrapper svg {
    width: 12px;
    height: 12px;
    fill: #666;
}

/* Botão */
.elementor-button {
    background-color: #11D25F;
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elementor-button:hover {
    background-color: #0EA84F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 210, 95, 0.3);
}

/* Seção de texto sobre financiamento */
.elementor-element-7be5837 {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 90, 61, 0.1);
}

.elementor-icon-list-items {
    padding: 0;
    margin: 0 0 20px 0;
    list-style: none;
}

.elementor-icon-list-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #005A3D;
    position: relative;
    padding-left: 30px;
}

.elementor-icon-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background-color: #11D25F;
}

.elementor-element-9c7065c p {
    font-family: 'Poppins', sans-serif;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
    .e-con-inner {
        flex-direction: column;
    }

    .elementor-element-b3894fc,
    .elementor-element-7be5837 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .elementor-element-5d9b4f2 {
        padding: 60px 0;
    }

    .elementor-element-3b02752 .elementor-heading-title {
        font-size: 1.8rem;
    }

    .elementor-element-b3894fc,
    .elementor-element-7be5837 {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .elementor-element-3b02752 .elementor-heading-title {
        font-size: 1.5rem;
    }

    .elementor-field {
        padding: 12px 15px;
    }
}

/* Seção Depoimentos */
.testimonials-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #2d3748;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: #2d3748;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author::before {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Seção Propósito */
.purpose-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.purpose-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #DBA716 0%, #11D25F 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.purpose-card:hover {
    transform: scale(1.05);
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.purpose-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.purpose-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.purpose-content {
    line-height: 1.8;
    font-size: 16px;
    opacity: 0.95;
}

.values-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.values-title {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.values-content {
    color: #4a5568;
    line-height: 1.9;
    font-size: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção Contato */
.contact-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-title {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-text {
    color: #4a5568;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 35px;
}

.simulate-btn {
    background: #11D25F;
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.simulate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.simulate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.simulate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #DBA716 0%, #11D25F 100%);

}

.contact-image::before {
    content: '📊';
    font-size: 150px;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.contact-image-placeholder {
    position: absolute;
    color: white;
    text-align: center;
    padding: 20px;
}

.contact-image-placeholder h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-image-placeholder p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .purpose-card {
        padding: 30px 20px;
    }

    .testimonials-section,
    .purpose-section,
    .contact-section {
        padding: 40px 20px;
    }

    .contact-image {
        min-height: 300px;
    }
}

.witr_widget_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas de largura igual */
    gap: -1px 30px;
    /* espaçamento vertical e horizontal */
    padding: 0;
    margin: 0;
    list-style: none;
}
/* Versão para telas pequenas (como celular) */
@media (max-width: 768px) {
  .witr_widget_list ul {
    grid-template-columns: 1fr; /* Apenas 1 coluna no celular */
    gap: 10px 0;
  }
}


.area-destaques {
    margin-top: -150px;
}

/* Videos */
.video-container-wrapper {
    position: relative;
    width: 53%;
    max-width: 100%;
}

.video-container {
    position: relative;
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
}

.custom-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 5;
    animation: float 3s ease-in-out infinite alternate;
}

.video-decoration img {
    max-width: 80px;
    height: auto;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .video-decoration {
        top: -15px;
        right: -15px;
    }
    
    .video-decoration img {
        max-width: 60px;
    }
}

@media (max-width: 768px) {
    .video-decoration {
        top: -10px;
        right: -10px;
    }
    
    .video-decoration img {
        max-width: 50px;
    }
    
    .witr_shape_item {
        margin-top: 3rem !important;
    }
}

/* Estilo opcional para botão de play customizado */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: rgb(255 255 255 / 24%);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button::before {
    
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #2c3e50;
    margin-left: 3px;
}