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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

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

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

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

.logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo a:hover img {
    opacity: 0.8;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: calc(1.5rem + 20px);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2E7D32;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
    color: #2E7D32;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}

.hero::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(76,175,80,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-stats {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.4;
    animation: pulseStats 3s ease-in-out infinite;
}

.hero-stats-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-stats-number {
    display: inline-block;
}

@keyframes pulseStats {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 20px;
}

.hero-text-content {
    max-width: 100%;
    animation: fadeInLeft 0.8s ease;
    margin-top: -25px;
}

.hero-title {
    font-size: 3.15rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1B5E20;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: #4CAF50;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.26rem;
    margin-bottom: 1.8rem;
    color: #388E3C;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
    letter-spacing: 0.2px;
}

.btn-simule {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    background: #4CAF50;
    color: #fff;
    margin-top: -10px;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-simule:hover {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

/* 3D Parallax Product Slider */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    height: 100%;
    min-height: 500px;
}

.slider-3d-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-3d {
    position: relative;
    width: 100%;
    height: 600px;
    transform-style: preserve-3d;
}

.slide-item {
    position: absolute;
    width: 400px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.slide-item[data-index="0"] {
    transform: translate(-50%, -50%) translateX(-280px) translateZ(-100px) rotateY(25deg) scale(0.8);
    opacity: 0.7;
    z-index: 1;
}

.slide-item[data-index="1"] {
    transform: translate(-50%, -50%) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 3;
}

.slide-item[data-index="2"] {
    transform: translate(-50%, -50%) translateX(280px) translateZ(-100px) rotateY(-25deg) scale(0.8);
    opacity: 0.7;
    z-index: 1;
}

.slide-item[data-index="3"] {
    transform: translate(-50%, -50%) translateX(560px) translateZ(-200px) rotateY(-40deg) scale(0.6);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.slide-content {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 3px solid #4CAF50;
    position: relative;
}

.slide-item:hover .slide-content {
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.3);
    transform: scale(1.05);
}

.slide-image-wrapper {
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease;
}

.slide-item:hover .slide-image-wrapper {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-info {
    height: 30%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 8px;
}

.slide-logo {
    width: 50px;
    height: 50px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.slide-item:hover .slide-logo {
    background: #4CAF50;
    transform: scale(1.1);
}

.slide-item:hover .slide-logo svg path {
    fill: #fff;
}

.slide-logo svg {
    width: 28px;
    height: 28px;
}

.slide-logo svg path {
    transition: fill 0.3s ease;
}

.btn-simular-card {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    background: #4CAF50;
    color: #fff;
    border: 2px solid #4CAF50;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    margin-bottom: 8px;
    text-align: center;
}

.btn-simular-card:hover {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    color: #fff;
}

.slide-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2E7D32;
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.slide-item:hover .slide-title {
    color: #4CAF50;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.slider-arrow:hover {
    background: #45a049;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
    left: -25px;
}

.slider-arrow-right {
    right: -25px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Seção Parceria EMBRACON */
.partnership-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 50%, #4CAF50 100%);
}

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

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F5E9;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2E7D32;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.partnership-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1B5E20;
    margin-bottom: 15px;
    line-height: 1.2;
}

.partnership-title span {
    color: #4CAF50;
}

.partnership-subtitle {
    font-size: 1.3rem;
    color: #388E3C;
    margin-bottom: 25px;
    font-weight: 400;
}

.partnership-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid #4CAF50;
    border-radius: 50px;
}

.partnership-link:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.partnership-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-intro {
    background: #E8F5E9;
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border-left: 5px solid #4CAF50;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2E7D32;
    margin: 0;
}

.intro-text strong {
    color: #1B5E20;
    font-weight: 700;
}

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

.stat-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}

.stat-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1B5E20;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1B5E20;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B5E20;
    margin: 0 0 8px 0;
}

.benefit-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.certification-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.3);
}

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

.cert-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
}

.cert-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Seção Header Genérico */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1B5E20;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title span {
    color: #4CAF50;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #388E3C;
    font-weight: 400;
}

/* Seção Vantagens do Consórcio */
.advantages-section {
    background: #fff;
    padding: 100px 0;
}

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

.advantage-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.advantage-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

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

.advantage-card:hover .advantage-image img {
    transform: scale(1.1);
}

.advantage-content {
    padding: 20px 25px;
}

.advantage-icon {
    margin-bottom: 12px;
}

.advantage-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 10px;
    line-height: 1.3;
}

.advantage-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Seção FAQ */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1B5E20;
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #4CAF50;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Seção Carta Contemplada */
.contemplated-section {
    background: #fff;
    padding: 100px 0;
}

.contemplated-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    padding: 40px 0;
}

.intro-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.intro-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s ease-out infinite;
}

.intro-icon-wrapper svg {
    width: 50px;
    height: 50px;
    z-index: 1;
}

.intro-icon-wrapper svg path {
    fill: #fff;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1B5E20;
    margin: 0 0 20px 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.intro-text-contemplated {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2E7D32;
    margin: 0;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.intro-text-contemplated strong {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1em;
}

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

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Página de Simulação */
.simulation-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
    min-height: calc(100vh - 100px);
    padding: 80px 0 100px;
    display: flex;
    align-items: center;
}

.simulation-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.simulation-header {
    text-align: center;
    margin-bottom: 50px;
}

.simulation-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1B5E20;
    margin-bottom: 15px;
    line-height: 1.2;
}

.simulation-title span {
    color: #4CAF50;
}

.simulation-subtitle {
    font-size: 1.3rem;
    color: #388E3C;
    font-weight: 400;
}

.simulation-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.simulation-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1B5E20;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4CAF50;
    z-index: 1;
}

.form-input,
.credit-input,
.form-select {
    width: 100%;
    padding: 15px;
    padding-left: 45px;
    font-size: 1rem;
    border: 2px solid #E8F5E9;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
}

.credit-input {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B5E20;
}

.form-select {
    padding-left: 15px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.form-input:focus,
.credit-input:focus,
.form-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

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

.btn-submit {
    flex: 1;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-cancel {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    text-align: center;
}

.btn-cancel:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-2px);
}

.simulation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.info-icon {
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B5E20;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contemplated-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contemplated-cards-container {
    width: 100%;
}

.contemplated-cards-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-button-container {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-view-all:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.contemplated-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.contemplated-list-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4CAF50;
    padding: 20px 24px;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto auto auto 1fr auto auto auto auto auto;
    gap: 15px;
    align-items: center;
}

.list-item-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4CAF50;
}

.card-checkbox:checked + label {
    background: #4CAF50;
}

/* Controles de Seleção */
.selection-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.selection-info {
    font-size: 1rem;
    font-weight: 600;
    color: #1B5E20;
}

.btn-calculate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.btn-calculate:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-calculate:not(:disabled):hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

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

.list-item-id {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.id-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.id-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B5E20;
}

.contemplated-list-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.list-item-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
}

.list-item-category svg {
    width: 20px;
    height: 20px;
}

.list-item-category.imovel {
    color: #2196F3;
}

.list-item-category.veiculo {
    color: #FF9800;
}

.list-item-administradora {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.list-item-administradora img {
    max-width: 80px;
    max-height: 35px;
    object-fit: contain;
}

.list-item-administradora span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.list-item-credito,
.list-item-entrada,
.list-item-parcela {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.credito-label,
.entrada-label,
.parcela-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credito-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B5E20;
}

.entrada-value,
.parcela-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.list-item-reserva {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.list-item-reserva.reservado {
    background: #ffebee;
    color: #c62828;
}

.list-item-reserva.disponivel {
    background: #e8f5e9;
    color: #2e7d32;
}

.list-item-action {
    min-width: 140px;
}

.btn-list-simulate {
    padding: 10px 20px;
    text-align: center;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
}

.btn-list-simulate:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.loading-message,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

.error-message {
    color: #c62828;
}

/* Modal de Cálculo */
.calculation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.calculation-modal.active {
    opacity: 1;
    pointer-events: all;
}

.calculation-modal.closing {
    opacity: 0;
}

.calculation-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.calculation-modal .modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

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

.calculation-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    outline: none;
    z-index: 10002;
}

.calculation-modal .modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.calculation-modal .modal-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculation-modal .modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #1B5E20;
    font-weight: 700;
}

.modal-card-count {
    background: #E8F5E9;
    color: #1B5E20;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.calculation-modal .modal-body {
    padding: 30px;
}

.calculation-results {
    display: grid;
    gap: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.result-item.highlight {
    background: #E8F5E9;
    border-left-color: #1B5E20;
    border-left-width: 5px;
}

.result-item.card-numbers {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.result-label {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-weight: 700;
    color: #1B5E20;
    font-size: 1.3rem;
}

.result-item.highlight .result-value {
    font-size: 1.5rem;
    color: #1B5E20;
}

.result-item.card-numbers .result-value {
    font-size: 1rem;
    word-break: break-all;
    font-weight: 600;
}

.calculation-modal .modal-footer {
    padding: 20px 30px 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.btn-modal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-modal-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.contemplated-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.benefit-icon-contemplated {
    width: 50px;
    height: 50px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item-contemplated:hover .benefit-icon-contemplated {
    background: #4CAF50;
    transform: scale(1.1);
}

.benefit-item-contemplated:hover .benefit-icon-contemplated svg path {
    fill: #fff;
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1B5E20;
    margin: 0 0 10px 0;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contemplated-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-contemplated-simulate {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    background: #4CAF50;
    color: #fff;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-contemplated-simulate:hover {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

/* Seção Todas as Cartas Contempladas */
.all-contemplated-section {
    background: #fff;
    padding: 100px 0;
    min-height: 80vh;
}

.filters-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1B5E20;
    margin-bottom: 5px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #4CAF50;
    background: #fff;
    color: #4CAF50;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-btn.active {
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.price-filter-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.6);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.price-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.6);
}

.price-display {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B5E20;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #4CAF50;
}

.all-cards-container {
    width: 100%;
    margin-bottom: 50px;
}

.all-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.total-cards-count {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B5E20;
    padding: 20px;
    background: #E8F5E9;
    border-radius: 12px;
    margin-bottom: 20px;
}

.list-item-taxa,
.list-item-fundo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 100px;
}

.list-item-taxa .taxa-label,
.list-item-fundo .fundo-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.list-item-taxa .taxa-value,
.list-item-fundo .fundo-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1B5E20;
}

.back-button-container {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.btn-back:hover {
    background: #e0e0e0;
    border-color: #4CAF50;
    color: #4CAF50;
    transform: translateY(-2px);
}

/* Seção Sobre Nós */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2E7D32;
    margin-bottom: 15px;
}

.about-description strong {
    color: #1B5E20;
    font-weight: 700;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.15);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: #4CAF50;
    transform: scale(1.1);
}

.highlight-item:hover .highlight-icon svg path {
    fill: #fff;
}

.highlight-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B5E20;
    margin: 0 0 8px 0;
}

.highlight-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-location {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-info {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.location-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 25px;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.address-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.address-line {
    font-size: 1rem;
    color: #2E7D32;
    margin: 0 0 5px 0;
    line-height: 1.6;
}

.address-line:last-child {
    margin-bottom: 0;
}

.location-map {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção Contato */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #E8F5E9;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #4CAF50;
    transform: scale(1.1);
}

.contact-item:hover .contact-icon svg path {
    fill: #fff;
}

.contact-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 1rem;
    color: #2E7D32;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 2px solid #E8F5E9;
    height: 100%;
    min-height: 500px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-media {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #E8F5E9;
}

.social-media h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #4CAF50;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.social-icon:hover svg path,
.social-icon:hover svg rect,
.social-icon:hover svg circle,
.social-icon:hover svg line {
    fill: #fff;
    stroke: #fff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    min-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    display: block;
    object-fit: contain;
    opacity: 1;
    visibility: visible;
}

.footer-logo p {
    font-size: 1rem;
    line-height: 1.6;
    color: #E8F5E9;
    max-width: 300px;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.footer-column ul li a {
    color: #E8F5E9;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-column ul li.footer-text {
    color: #E8F5E9;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-bottom-logo {
    width: 150px;
    height: auto;
    min-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    opacity: 1;
    visibility: visible;
}

.footer-bottom p {
    color: #E8F5E9;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsividade */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-right {
        min-height: 500px;
    }

    .slider-3d {
        height: 500px;
    }

    .slide-item {
        width: 320px;
        height: 420px;
    }

    .slide-item[data-index="0"] {
        transform: translate(-50%, -50%) translateX(-210px) translateZ(-80px) rotateY(20deg) scale(0.75);
    }

    .slide-item[data-index="2"] {
        transform: translate(-50%, -50%) translateX(210px) translateZ(-80px) rotateY(-20deg) scale(0.75);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow-left {
        left: -15px;
    }

    .slider-arrow-right {
        right: -15px;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-logo {
        width: 45px;
        height: 45px;
    }

    .slide-logo svg {
        width: 26px;
        height: 26px;
    }

    .btn-simular-card {
        padding: 7px 18px;
        font-size: 0.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contemplated-cards-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contemplated-list-item {
        grid-template-columns: auto 1fr auto auto;
        gap: 15px;
    }

    .list-item-credito,
    .list-item-entrada,
    .list-item-parcela {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 1.05rem;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-stats {
        top: 10px;
        z-index: 1;
        opacity: 0.3;
    }

    .hero-stats-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-container {
        position: relative;
        z-index: 2;
    }

    .hero-container {
        padding: 0 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.25;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-right {
        min-height: 500px;
    }

    .slider-3d {
        height: 500px;
    }

    .slide-item {
        width: 320px;
        height: 420px;
    }

    .slide-item[data-index="0"] {
        transform: translate(-50%, -50%) translateX(-200px) translateZ(-60px) rotateY(15deg) scale(0.75);
    }

    .slide-item[data-index="2"] {
        transform: translate(-50%, -50%) translateX(200px) translateZ(-60px) rotateY(-15deg) scale(0.75);
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-arrow-left {
        left: -10px;
    }

    .slider-arrow-right {
        right: -10px;
    }

    .slide-title {
        font-size: 1.2rem;
    }

    .slide-logo {
        width: 42px;
        height: 42px;
    }

    .slide-logo svg {
        width: 24px;
        height: 24px;
    }

    .btn-simular-card {
        padding: 7px 16px;
        font-size: 0.75rem;
    }

    .slide-info {
        padding: 20px;
        gap: 10px;
    }

    .btn-simule {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Novas Seções Responsivo 768px */
    .section-title {
        font-size: 2.5rem;
    }

    .advantages-section,
    .faq-section,
    .contemplated-section {
        padding: 70px 0;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }


    .contemplated-intro {
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .intro-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .intro-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .intro-icon-wrapper::before {
        width: 100px;
        height: 100px;
    }

    .intro-title {
        font-size: 1.6rem;
    }

    .intro-text-contemplated {
        font-size: 1.1rem;
    }

    .contemplated-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contemplated-cards-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .contemplated-list-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .list-item-id {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .list-item-category,
    .list-item-administradora,
    .list-item-credito,
    .list-item-entrada,
    .list-item-parcela,
    .list-item-reserva,
    .list-item-action {
        min-width: auto;
    }

    .list-item-action {
        width: 100%;
    }

    .btn-list-simulate {
        width: 100%;
    }
    
    .selection-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn-calculate {
        width: 100%;
        justify-content: center;
    }
    
    .calculation-modal .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .calculation-modal .modal-header {
        padding: 20px 20px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .calculation-modal .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .calculation-modal .modal-body {
        padding: 20px;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .result-value {
        font-size: 1.1rem;
    }
    
    .result-item.highlight .result-value {
        font-size: 1.3rem;
    }
    
    .calculation-modal .modal-footer {
        padding: 15px 20px 20px;
    }
    
    .btn-modal-whatsapp {
        width: 100%;
    }

    .contemplated-benefits {
        order: 1;
    }

    /* Parceria Responsivo 768px */
    .partnership-section {
        padding: 70px 0;
    }

    .partnership-title {
        font-size: 2.2rem;
    }

    .partnership-subtitle {
        font-size: 1.1rem;
    }

    .partnership-intro {
        padding: 25px 30px;
    }

    .intro-text {
        font-size: 1.1rem;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .certification-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    /* Parceria Responsivo Tablet */
    .partnership-section {
        padding: 80px 0;
    }

    .partnership-title {
        font-size: 2.5rem;
    }

    .partnership-subtitle {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certification-badge {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        top: 5px;
        opacity: 0.25;
    }

    .hero-stats-text {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.99rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }

    .nav-menu ul {
        gap: 0.8rem;
    }

    .nav-menu a {
        font-size: 0.84rem;
    }

    .hero-right {
        min-height: 450px;
    }

    .slider-3d {
        height: 450px;
    }

    .slide-item {
        width: 280px;
        height: 370px;
    }

    .slide-item[data-index="0"] {
        transform: translate(-50%, -50%) translateX(-180px) translateZ(-50px) rotateY(10deg) scale(0.7);
    }

    .slide-item[data-index="2"] {
        transform: translate(-50%, -50%) translateX(180px) translateZ(-50px) rotateY(-10deg) scale(0.7);
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .slider-arrow-left {
        left: -5px;
    }

    .slider-arrow-right {
        right: -5px;
    }

    .slide-title {
        font-size: 1rem;
    }

    .slide-logo {
        width: 38px;
        height: 38px;
    }

    .slide-logo svg {
        width: 22px;
        height: 22px;
    }

    .btn-simular-card {
        padding: 6px 14px;
        font-size: 0.7rem;
    }

    .slide-info {
        padding: 10px;
    }

    /* Parceria Responsivo */
    .partnership-section {
        padding: 60px 0;
    }

    .partnership-title {
        font-size: 2rem;
    }

    .partnership-subtitle {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .certification-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .cert-content h4 {
        font-size: 1.5rem;
    }

    /* Responsivo - Novas Seções */
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .advantages-section,
    .faq-section,
    .contemplated-section,
    .all-contemplated-section {
        padding: 60px 0;
    }

    .all-contemplated-section {
        padding: 80px 0;
    }

    .filters-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .price-display {
        font-size: 1rem;
    }

    .total-cards-count {
        font-size: 1rem;
        padding: 15px;
    }

    .btn-view-all {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .advantage-card {
        flex-direction: column;
    }

    .advantage-image {
        width: 100%;
        min-width: auto;
        height: 200px;
    }

    .advantage-image img {
        min-height: 200px;
    }

    .contemplated-intro {
        padding: 25px 15px;
        margin-bottom: 40px;
    }

    .intro-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .intro-icon-wrapper svg {
        width: 35px;
        height: 35px;
    }

    .intro-icon-wrapper::before {
        width: 90px;
        height: 90px;
    }

    .intro-title {
        font-size: 1.4rem;
    }

    .intro-text-contemplated {
        font-size: 1rem;
    }

    .contemplated-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contemplated-cards-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .contemplated-list-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .list-item-id {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .list-item-category,
    .list-item-administradora,
    .list-item-credito,
    .list-item-entrada,
    .list-item-parcela,
    .list-item-reserva,
    .list-item-action {
        min-width: auto;
    }

    .list-item-action {
        width: 100%;
    }

    .btn-list-simulate {
        width: 100%;
    }

    .contemplated-benefits {
        order: 1;
    }

    .contemplated-cta {
        margin-top: 40px;
    }

    .btn-contemplated-simulate {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    /* Sobre Nós Responsivo 768px */
    .about-section {
        padding: 70px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro h3 {
        font-size: 1.6rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .location-map {
        height: 350px;
    }

    /* Simulação Responsivo */
    .simulation-section {
        padding: 60px 0;
    }

    .simulation-title {
        font-size: 2.2rem;
    }

    .simulation-subtitle {
        font-size: 1.1rem;
    }

    .simulation-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .simulation-form {
        padding: 30px 25px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit,
    .btn-cancel {
        width: 100%;
    }
}

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

    .simulation-title {
        font-size: 1.8rem;
    }

    .simulation-subtitle {
        font-size: 1rem;
    }

    .simulation-form {
        padding: 25px 20px;
    }

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

    .form-input,
    .credit-input,
    .form-select {
        padding: 12px;
        padding-left: 40px;
        font-size: 0.95rem;
    }

    .credit-input {
        font-size: 1.1rem;
    }

    .btn-submit,
    .btn-cancel {
        padding: 15px 25px;
        font-size: 1rem;
    }

    /* Sobre Nós Responsivo Mobile */
    .about-section {
        padding: 50px 0;
    }

    .about-intro h3 {
        font-size: 1.4rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .location-info {
        padding: 25px 20px;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }

    .address-line {
        font-size: 0.9rem;
    }

    .location-map {
        height: 300px;
    }

    .highlight-item {
        padding: 15px;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
    }

    .highlight-text h4 {
        font-size: 1.1rem;
    }

    .highlight-text p {
        font-size: 0.9rem;
    }

    /* Contato Responsivo Mobile */
    .contact-section {
        padding: 50px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item {
        padding: 25px 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-details h3 {
        font-size: 1.2rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .contact-image {
        height: 300px;
        border-radius: 15px;
    }

    .social-media {
        padding: 30px 20px;
    }

    .social-media h3 {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    /* Footer Responsivo Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-column ul li a,
    .footer-column ul li.footer-text {
        font-size: 0.9rem;
    }

    .footer-bottom-logo {
        width: 120px;
        margin-bottom: 15px;
    }
}

