* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    margin-left: 5px;
    margin-top: -10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #60a5fa;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
    min-height: 60vh;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.person-image {
    width: 400px;
    height: 500px;
    background: url('banco.webp') no-repeat center;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-left: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(251, 191, 36, 0.3);
}

.solutions-section {
    padding: 4rem 0;
    background: rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(10px);
}

.solutions-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.solutions-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.chat-button i {
    font-size: 1.2rem;
}

.chat-button span {
    font-weight: 600;
    white-space: nowrap;
}

.credit-solutions-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    color: #1e3a8a;
}

.credit-solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.credit-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
    border: 2px solid #e5e7eb;
    max-width: 600px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
}

.credit-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.credit-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.credit-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
}

.join-family-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.join-family-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.join-content {
    color: white;
}

.join-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.join-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #e2e8f0;
}

.join-button {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.join-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woman-image {
    width: 450px;
    height: 550px;
    background: url('icone-atendimento.png') no-repeat center;
    background-size: contain;
    position: relative;
}

.pillars-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    position: relative;
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillars-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: rgba(30, 58, 138, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: rgba(30, 58, 138, 0.9);
}

.pillar-compromisso {
    grid-column: 1;
    grid-row: 1;
}

.pillar-reputacao {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pillar-seguranca {
    grid-column: 1;
    grid-row: 2;
}

.pillar-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.pillar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #60a5fa;
    border-radius: 2px;
}

.pillar-description {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.95;
}

.regulatory-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23e0f2fe;stop-opacity:1" /><stop offset="100%" style="stop-color:%2387ceeb;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="400" fill="url(%23skyGrad)"/><g fill="%23475569" opacity="0.7"><rect x="100" y="200" width="40" height="200"/><rect x="160" y="180" width="35" height="220"/><rect x="220" y="150" width="50" height="250"/><rect x="290" y="190" width="30" height="210"/><rect x="340" y="160" width="45" height="240"/><rect x="400" y="170" width="38" height="230"/><rect x="460" y="140" width="42" height="260"/><rect x="520" y="180" width="35" height="220"/><rect x="580" y="160" width="40" height="240"/><rect x="640" y="150" width="55" height="250"/><rect x="720" y="190" width="32" height="210"/><rect x="770" y="170" width="48" height="230"/><rect x="840" y="160" width="36" height="240"/><rect x="900" y="140" width="44" height="260"/><rect x="960" y="180" width="38" height="220"/><rect x="1020" y="170" width="42" height="230"/><rect x="1080" y="200" width="35" height="200"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    overflow: hidden;
}

.regulatory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.75) 50%, rgba(30, 64, 175, 0.85) 100%);
    backdrop-filter: blur(2px);
}

.regulatory-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.regulatory-content {
    max-width: 600px;
    color: white;
}

.regulatory-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.regulatory-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer {
    padding: 3rem 0 2rem 0;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.regulatory-info {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.regulatory-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-weight: 500;
}

.validation-code {
    font-size: 0.9rem;
    color: #3b82f6;
    font-family: 'Courier New', monospace;
    text-align: center;
    margin: 0;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
}

.contact-info {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding-left: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .person-image {
        width: 300px;
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solutions-title {
        font-size: 2rem;
    }
    
    .solutions-description {
        font-size: 1.1rem;
    }
    
    .credit-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .credit-title {
        font-size: 1.5rem;
    }
    
    .credit-description {
        font-size: 1rem;
    }
    
    .join-family-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .join-content {
        order: 2;
    }
    
    .join-image {
        order: 1;
    }
    
    .join-title {
        font-size: 2.5rem;
    }
    
    .join-description {
        font-size: 1.1rem;
    }
    
    .woman-image {
        width: 350px;
        height: 450px;
    }
    
    .chat-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .chat-button span {
        display: none;
    }
    
    .pillars-title {
        font-size: 2.5rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .pillar-compromisso,
    .pillar-reputacao,
    .pillar-seguranca {
        grid-column: 1;
        grid-row: auto;
    }
    
    .pillar-card {
        padding: 2rem 1.5rem;
    }
    
    .pillar-title {
        font-size: 1.5rem;
    }
    
    .pillar-description {
        font-size: 0.95rem;
    }
    
    .regulatory-section {
        padding: 4rem 0;
    }
    
    .regulatory-container {
        padding: 0 1rem;
        text-align: center;
    }
    
    .regulatory-content {
        max-width: 100%;
    }
    
    .regulatory-title {
        font-size: 2.5rem;
    }
    
    .regulatory-description {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .regulatory-info {
        padding: 1.5rem;
    }
    
    .regulatory-text {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .validation-code {
        font-size: 0.85rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .address-text {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .solutions-title {
        font-size: 1.8rem;
    }
    
    .person-image {
        width: 250px;
        height: 350px;
    }
    
    .credit-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .credit-title {
        font-size: 1.3rem;
    }
    
    .join-title {
        font-size: 2rem;
    }
    
    .woman-image {
        width: 280px;
        height: 380px;
    }
    
    .pillars-title {
        font-size: 2rem;
    }
    
    .pillar-card {
        padding: 1.5rem 1rem;
    }
    
    .pillar-title {
        font-size: 1.3rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
    
    .regulatory-title {
        font-size: 2rem;
    }
    
    .regulatory-description {
        font-size: 1rem;
    }
    
    .regulatory-info {
        padding: 1rem;
    }
    
    .regulatory-text {
        font-size: 0.85rem;
    }
    
    .validation-code {
        font-size: 0.8rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .address-text {
        font-size: 0.85rem;
    }
}
