/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #223d6c;
    color: white;
}

.btn-primary:hover {
    background-color: #1a2f54;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #223d6c;
    color: white;
}

/* Botão secundário na seção hero - com melhor contraste */
.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #223d6c;
    border: 2px solid white;
}

.hero .btn-secondary:hover {
    background-color: white;
    color: #223d6c;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #223d6c;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #223d6c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #223d6c 0%, #1a2f54 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #223d6c;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

/* Grid específico para a seção "Como Funciona" */
.section:has(.service-icon) .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 100%;
}

.section:has(.service-icon) .container {
    padding: 0 40px;
}

/* Responsividade para o grid de serviços */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section:has(.service-icon) .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section:has(.service-icon) .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section:has(.service-icon) .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section:has(.service-icon) .container {
        padding: 0 20px;
    }
}

/* Cards de Serviços */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Cards específicos para a seção "Como Funciona" */
.section:has(.service-icon) .service-card {
    min-height: 350px;
    padding: 30px 25px;
}

.section:has(.service-icon) .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.section:has(.service-icon) .service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 61, 108, 0.2);
}

.service-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Estatísticas */
.stats-section {
    background-color: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #223d6c;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Formulário de simulação */
.simulation-section {
    background-color: #f8f9fa;
}

.simulation-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #223d6c;
}

/* Footer */
.footer {
    background-color: #223d6c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a5a8a;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
} 

/* Seção Quem Somos */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.about-text h2 {
    color: #223d6c;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-text h3 {
    color: #666;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
}

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

.about-mission {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid #223d6c;
}

.about-mission h4 {
    color: #223d6c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-mission p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.about-image {
    text-align: center;
    position: sticky;
    top: 120px;
}

.about-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Seção de Avaliações */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Avatar com inicial - estilo Google */
.review-avatar-initial {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-right: 20px;
    text-transform: uppercase;
}

/* Cores diferentes para cada avatar */
.review-card:nth-child(1) .review-avatar-initial {
    background-color: #4285f4; /* Azul Google */
}

.review-card:nth-child(2) .review-avatar-initial {
    background-color: #ea4335; /* Vermelho Google */
}

.review-card:nth-child(3) .review-avatar-initial {
    background-color: #34a853; /* Verde Google */
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #f8f9fa;
}

.review-info h4 {
    color: #223d6c;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.review-info small {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-top: 5px;
}

.review-stars {
    font-size: 1.1rem;
    color: #ffc107;
    margin-bottom: 5px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

/* Responsividade para Quem Somos */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image {
        position: static;
        order: -1;
    }
    
    .about-img {
        max-width: 250px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
} 

/* Página Crédito com Garantia de Imóvel */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.content-text h2 {
    color: #223d6c;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.highlight-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #223d6c;
    margin-top: 30px;
}

.highlight-box h3 {
    color: #223d6c;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #223d6c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.content-image {
    text-align: center;
}

.feature-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Seção Vantagens e Riscos */
.benefits-risks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.benefits-card, .risks-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.card-header h3 {
    color: #223d6c;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefits-list, .risks-list {
    list-style: none;
}

.benefits-list li, .risks-list li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.risks-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

/* Seção Exemplo Prático */
.example-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.example-content h3 {
    color: #223d6c;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.example-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.example-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.example-item h4 {
    color: #223d6c;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.example-value {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.example-item small {
    color: #666;
    font-size: 0.9rem;
}

.example-image {
    text-align: center;
}

.example-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsividade para Crédito com Garantia */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .benefits-risks-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .example-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .example-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-img, .example-img {
        max-width: 100%;
    }
} 

/* Seção Como Funciona - Full Width */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 61, 108, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #223d6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #223d6c;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

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

/* Responsividade para Como Funciona */
@media (max-width: 1200px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-card {
        padding: 25px 15px;
    }
    
    .step-card h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 

/* Página Consórcio - Elementos específicos */
.contemplation-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.method-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #223d6c;
}

.method-item h4 {
    color: #223d6c;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.method-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Grid de passos para Consórcio */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Grid de vantagens para Consórcio */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 61, 108, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #223d6c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Responsividade para Consórcio */
@media (max-width: 768px) {
    .contemplation-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 1rem;
}

/* Responsividade para WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        margin-right: 0;
        font-size: 1.8rem;
    }
} 


/* Estilos para a seção de vantagens da página credito-garantia.php */
.advantages-layout {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 80px;
    align-items: start;
}

.advantages-left h2 {
    font-size: 2.2rem;
    color: #223d6c;
    margin-bottom: 40px;
    line-height: 1.1;
    font-weight: 700;
}

.advantages-left .btn {
    font-size: 1.2rem;
    padding: 18px 35px;
    font-weight: 600;
}

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

.advantage-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
}

.advantage-card h3 {
    color: #223d6c;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.advantage-card p {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsividade para a seção de vantagens */
@media (max-width: 1024px) {
    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .advantages-left {
        text-align: center;
    }
    
    .advantages-left h2 {
        font-size: 2.8rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .advantages-left h2 {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 22px 18px;
    }
} 