/* Estilos específicos para a página de Consórcio */

/* Hero Section Consórcio */
.consorcio-hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 50%, #0099ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.consorcio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.consorcio-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.consorcio-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.consorcio-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.consorcio-hero .hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #0056b3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0056b3;
    transform: translateY(-2px);
}

/* Como Funciona */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    position: relative;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.step-icon {
    font-size: 3rem;
    color: #007bff;
    margin: 20px 0;
}

.step-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Vantagens */
.advantages {
    padding: 80px 0;
    background: #ffffff;
}

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

.advantage-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.advantage-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Simulador */
.simulator {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.simulator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.simulator-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.15s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn-simulate {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #0099ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-top: 10px;
}

.btn-simulate:hover {
    background: linear-gradient(135deg, #0056b3, #007bff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.simulator-result {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: none;
    font-weight: 600;
}

.result-label {
    font-weight: 500;
    color: #666;
}

.result-value {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.result-item.highlight .result-value {
    color: #007bff;
    font-size: 1.3rem;
}

.btn-contact-simulator {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-top: 25px;
}

.btn-contact-simulator:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #ffffff;
}

.faq-list {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    transition: all 0.15s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.faq-question i {
    color: #007bff;
    transition: transform 0.15s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.15s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-cta-primary, .btn-cta-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-cta-primary {
    background: #ffffff;
    color: #0056b3;
}

.btn-cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cta-secondary:hover {
    background: #ffffff;
    color: #0056b3;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .consorcio-hero {
        height: 60vh;
        padding: 0 20px;
    }
    
    .consorcio-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .consorcio-hero .hero-content p {
        font-size: 1.2rem;
    }
    
    /* Indicador de scroll horizontal */
    .how-it-works::after {
        content: "← Deslize para ver todos os passos →";
        display: block;
        text-align: center;
        color: #007bff;
        font-size: 0.9rem;
        margin-top: 20px;
        font-weight: 500;
        animation: pulse 2s infinite;
    }
    
    .advantages::after {
        content: "← Deslize para ver todas as vantagens →";
        display: block;
        text-align: center;
        color: #007bff;
        font-size: 0.9rem;
        margin-top: 20px;
        font-weight: 500;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .steps-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 20px 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .steps-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .steps-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .steps-grid::-webkit-scrollbar-thumb {
        background: #007bff;
        border-radius: 10px;
    }
    
    .step-item {
        width: calc(100vw - 60px); /* Largura quase da tela toda */
        max-width: 280px;
        height: 280px; /* Altura igual à largura = quadrado */
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .step-item h3 {
        font-size: 1.2rem;
    }
    
    .step-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .advantages-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 20px 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .advantages-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .advantages-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .advantages-grid::-webkit-scrollbar-thumb {
        background: #007bff;
        border-radius: 10px;
    }
    
    .advantage-card {
        width: calc(100vw - 60px);
        max-width: 280px;
        height: 280px;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    
    .advantage-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .simulator-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .simulator-form,
    .simulator-result {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .how-it-works,
    .advantages,
    .simulator,
    .faq,
    .cta {
        padding: 50px 0;
    }
    
    .consorcio-hero {
        height: 50vh;
    }
    
    .consorcio-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .consorcio-hero .hero-content p {
        font-size: 1rem;
    }
    
    .step-item {
        width: calc(100vw - 40px); /* Largura quase da tela toda */
        max-width: 250px;
        height: 250px; /* Altura igual à largura = quadrado */
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .step-item h3 {
        font-size: 1.1rem;
    }
    
    .step-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .advantage-card {
        width: calc(100vw - 40px);
        max-width: 250px;
        height: 250px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .advantage-card h3 {
        font-size: 1.1rem;
    }
    
    .advantage-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .simulator-form,
    .simulator-result {
        padding: 25px 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

/* Hero Section Consórcio Moderno */
.consorcio-hero-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Formas geométricas de fundo */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 50% 20% 50% 20%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #2196f3, #03a9f4);
    border-radius: 20% 50% 20% 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    border-radius: 30%;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite;
}

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

/* Container principal */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Conteúdo do hero */
.hero-content-modern {
    animation: slideInLeft 1s ease-out;
}

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

/* Badge do consórcio */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #007bff;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.badge-highlight {
    background: white;
    color: #007bff;
    padding: 2px 8px;
    border-radius: 50%;
    margin-left: 10px;
    font-weight: 900;
    font-size: 0.8rem;
}

/* Título principal */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    color: #333;
}

.title-line {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line.highlight {
    color: #007bff;
    position: relative;
}

.ampersand {
    color: #333;
    font-weight: 400;
}

/* Descrição */
.hero-description p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Lista de benefícios */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}

.hero-benefits i {
    color: #4caf50;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Seção CTA */
.hero-cta-section {
    margin-top: 40px;
}

.cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-cta-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

/* Parte visual */
.hero-visual-modern {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Veículos */
.hero-vehicles {
    position: relative;
    width: 100%;
    height: 100%;
}

.vehicle-car {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 180px;
    z-index: 3;
}

.vehicle-moto {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 120px;
    z-index: 2;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.vehicle-img:hover {
    transform: scale(1.05);
}

/* Personagens */
.hero-characters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.character {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

.character-1 {
    top: 10%;
    left: 60%;
    animation-delay: 0s;
}

.character-2 {
    top: 60%;
    left: 5%;
    animation-delay: 0.5s;
}

.character-3 {
    bottom: 20%;
    right: 40%;
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Elementos flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.float-1 {
    top: 30%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 70%;
    left: 70%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 40%;
    left: 30%;
    animation-delay: 2s;
}

/* Responsividade do hero moderno */
@media (max-width: 768px) {
    .consorcio-hero-modern {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-description p {
        font-size: 1.1rem;
    }
    
    .hero-visual-modern {
        height: 350px;
        order: 2; /* Imagens depois do conteúdo */
    }
    
    .hero-content-modern {
        order: 1; /* Conteúdo primeiro */
    }
    
    .vehicle-car {
        width: 200px;
        height: 120px;
        left: 20%;
    }
    
    .vehicle-moto {
        width: 120px;
        height: 90px;
        right: 20%;
    }
    
    .character {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .float-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-benefits li {
        font-size: 0.9rem;
    }
    
    .btn-cta-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-visual-modern {
        height: 300px;
    }
    
    .vehicle-car {
        width: 150px;
        height: 90px;
    }
    
    .vehicle-moto {
        width: 100px;
        height: 75px;
    }
}

/* Seção de Cartas Disponíveis */
.cartas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Tabs */
.cartas-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover {
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #007bff, #0099ff);
    color: white;
    border-color: #007bff;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.tab-btn i {
    font-size: 1.2rem;
}

/* Loading */
.cartas-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cartas-loading p {
    color: #666;
    font-size: 1.1rem;
}

/* Error */
.cartas-error {
    text-align: center;
    padding: 60px 20px;
    background: #fff5f5;
    border: 2px solid #fed7d7;
    border-radius: 10px;
    color: #c53030;
}

.cartas-error i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.cartas-error p {
    font-size: 1.1rem;
}

/* Container de Cartas */
.cartas-container {
    animation: fadeIn 0.5s ease-in;
}

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

/* Filtros */
.cartas-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Grid de Cartas */
.cartas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Card de Carta */
.carta-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.carta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0099ff);
}

.carta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

/* Header do Card */
.carta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.carta-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.carta-id {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Imagem da Administradora */
.carta-admin-img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    margin: 15px 0;
    border-radius: 5px;
}

/* Informações da Carta */
.carta-info {
    margin: 20px 0;
}

.carta-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.carta-info-item:last-child {
    border-bottom: none;
}

.carta-info-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.carta-info-value {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.carta-info-value.highlight {
    color: #007bff;
    font-size: 1.3rem;
}

/* Status de Reserva */
.carta-reserva {
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.carta-reserva span {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.carta-reserva.reservado span {
    background: #fff3cd;
    color: #856404;
}

.carta-reserva.disponivel span {
    background: #d1ecf1;
    color: #0c5460;
}

/* Botão de Ação */
.carta-action {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #0099ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carta-action:hover {
    background: linear-gradient(135deg, #0056b3, #007bff);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Empty State */
.cartas-empty {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px dashed #e9ecef;
}

.cartas-empty i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}

.cartas-empty p {
    color: #999;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .cartas-section {
        padding: 60px 0;
    }
    
    .cartas-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cartas-filters {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .cartas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cartas-section {
        padding: 40px 0;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .carta-card {
        padding: 20px;
    }
    
    .carta-info-value.highlight {
        font-size: 1.2rem;
    }
}
