@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Courier, monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1f2937 100%);
    min-height: 100vh;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2.5rem;
    color: #fff;
}

.banner-track {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: radial-gradient(1200px 400px at 20% 20%, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.banner-slide {
    display: none;
    padding: 2rem 2.5rem;
}
.banner-slide.active { display: block; animation: fadeBanner .6s ease both; }

.banner-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    min-height: 340px;
}

.banner-text h2 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: .75rem;
    background: linear-gradient(135deg,#fff,#e5f0ff);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.banner-sub { font-size: 1.25rem; color: #fbbf24; font-weight: 600; }
.banner-ctas { margin-top: 1.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.banner-media { display: flex; justify-content: center; }
.banner-image { max-width: 520px; width: 100%; height: auto; filter: drop-shadow(0 22px 35px rgba(0,0,0,.35)); }

.banner-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    color: #fff;
    border: none; border-radius: 50%;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
    transition: background .2s ease, transform .2s ease;
    z-index: 5;
}
.banner-arrow:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.05); }
.banner-prev { left: 12px; }
.banner-next { right: 12px; }

.banner-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1rem; }
.banner-dots button {
    width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.35);
}
.banner-dots button.active { background: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.25); }

@keyframes fadeBanner { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.header {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    padding: 1.2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e40af;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.btn-login {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.btn-login:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-register:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
}

.btn-download {
    background: linear-gradient(135deg, #7010b9 0%, #2c0596 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(103, 16, 185, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
}

.btn-download:hover {
    background: linear-gradient(135deg, #3d0596 0%, #1d0478 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 16, 185, 0.4);
    animation: none;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(120, 16, 185, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(129, 16, 185, 0.5);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1e40af;
    cursor: pointer;
    padding: 0.5rem;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0.05" /></linearGradient></defs><circle cx="100" cy="100" r="50" fill="%23ffffff" opacity="0.1"/><circle cx="1100" cy="500" r="80" fill="%23ffffff" opacity="0.08"/><rect x="200" y="300" width="60" height="40" rx="5" fill="%23ffffff" opacity="0.1"/><rect x="900" y="150" width="80" height="50" rx="8" fill="%23ffffff" opacity="0.08"/></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.card-container {
    perspective: 1000px;
    width: 500px;
    height: 300px;
}

.rotating-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateCard 8s infinite linear;
}

@keyframes rotateCard {
    0% { transform: rotateY(0deg); }
    25% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    75% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    overflow: hidden;
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}



.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 40px;
    left: 30px;
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #1e40af;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.features {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 4rem 2rem;
    border-radius: 20px;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.features h2 {
    text-align: center;
    color: #1e40af;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.security-section {
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
    margin: 4rem 2rem;
    border-radius: 20px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-container h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-item i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.security-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.security-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.testimonials {
    margin: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-container h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.services-detail {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    margin: 4rem 2rem;
    border-radius: 25px;
    padding: 5rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Investimentos (Investments) */
.investments {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 4rem 2rem;
    border-radius: 20px;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.investments-container h2 {
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.investments-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.investments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.investment-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(30, 64, 175, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.investment-card:hover::before {
    opacity: 1;
}

.investment-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.investment-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
}

.investment-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af, #60a5fa);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.investment-card:hover .investment-icon::after {
    opacity: 1;
}

.investment-title {
    flex: 1;
}

.investment-title h3 {
    color: #1e293b;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.investment-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-badge.highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
}

.investment-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.investment-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.investment-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: color 0.2s ease;
}

.investment-features li:last-child {
    border-bottom: none;
}

.investment-features li:hover {
    color: #3b82f6;
}

.investment-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.investment-features li::after {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.investment-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    margin-top: auto;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.investment-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

/* Investment cards animation */
.investment-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.investment-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.investment-card:nth-child(1) { transition-delay: 0.1s; }
.investment-card:nth-child(2) { transition-delay: 0.2s; }
.investment-card:nth-child(3) { transition-delay: 0.3s; }
.investment-card:nth-child(4) { transition-delay: 0.4s; }
.investment-card:nth-child(5) { transition-delay: 0.5s; }
.investment-card:nth-child(6) { transition-delay: 0.6s; }

/* Contato */
.contact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 4rem 2rem;
    border-radius: 20px;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container h2 {
    text-align: center;
    color: #1e40af;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.info-card {
    background: #f8fafc;
    border: 1px solid rgba(30, 64, 175, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
}

.info-card i { color: #1e40af; font-size: 1.4rem; }
.info-card h3 { color: #1e293b; margin: .5rem 0; }
.info-card p { color: #475569; }

/* Neon hover for contact info cards */
.info-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow:
        0 0 0 2px rgba(59, 130, 246, 0.35),
        0 0 24px rgba(59, 130, 246, 0.45),
        0 10px 30px rgba(30, 64, 175, 0.15);
    transform: translateY(-2px);
}

.contact-form {
    background: #ffffff;
    border: 1px solid rgba(30,64,175,.12);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row .full { grid-column: 1 / -1; }

.form-field label { display: block; color: #1f2937; font-weight: 600; margin-bottom: 0.4rem; }
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(30,64,175,.2);
    outline: none;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.form-field input:hover,
.form-field textarea:hover {
    box-shadow: 0 0 0 3px rgba(59,130,246,.12), 0 0 18px rgba(59,130,246,.25);
}
.form-field input:focus,
.form-field textarea:focus { border-color: #1e40af; box-shadow: 0 0 0 4px rgba(30,64,175,.12); }

.contact-btn {
    margin-top: 1rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
}
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 2px rgba(59,130,246,.5),
        0 0 26px rgba(59,130,246,.6),
        0 12px 36px rgba(30,64,175,.28);
    animation: neonPulse 1.6s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(59,130,246,0.0));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(59,130,246,0.55));
    }
}

@media (max-width: 768px) {
    .contact { margin: 2rem 1rem; padding: 2rem 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

.services-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #10b981 100%);
}

.services-container {
    position: relative;
    z-index: 2;
}

.services-container h2 {
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.services-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #10b981);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-title {
    flex: 1;
}

.service-title h3 {
    color: #1e293b;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sobre (About) */
.about {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('assets/global.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    margin: 4rem 2rem;
    border-radius: 20px;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    color: #1e40af;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: left;
}

.about-content p {
    color: #374151;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0.75rem 0;
    text-align: left;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
}

.about-photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.05);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-block {
    background: #f8fafc;
    border: 1px solid rgba(30, 64, 175, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
}

.about-block h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.about-block ul {
    margin-left: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.about-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1000px; 
    margin-left: 0;
}

.about-highlight > div {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.25);
}

.about-highlight strong { 
    font-size: 1.6rem; 
    display: block; 
}

.about-highlight span { 
    opacity: 0.95; 
    font-weight: 500; 
}

.service-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: color 0.2s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: #1e40af;
}

.service-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* New Site Footer */
.site-footer {
    margin-top: 4rem;
    background: #0b1226;
    color: #e5e7eb;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem 2rem;
}

.site-footer h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: .6rem 0; }
.site-footer a { color: #c7d2fe; text-decoration: none; }
.site-footer a:hover { color: #93c5fd; }

.cert-badge {
    width: 56px; height: 56px; border-radius: 10px; background: #101b3c; border: 1px solid rgba(255,255,255,.12);
    display: grid; place-items: center; font-weight: 800; color: #93c5fd;
    margin-bottom: 1rem;
}

.store-badges { display: flex; flex-direction: column; gap: .8rem; }
.badge-btn {
    display: inline-flex; align-items: center; gap: .8rem; padding: .7rem 1rem; border-radius: 10px;
    background: #0f1a39; color: #e5e7eb; border: 1px solid rgba(255,255,255,.12);
}
.badge-btn i { font-size: 1.4rem; }
.badge-btn span { display: grid; line-height: 1.1; }
.badge-btn small { color: #9aa6d1; font-size: .7rem; }
.badge-btn:hover { background: #13214a; border-color: rgba(148,163,184,.35); }

.numbers div { margin: .6rem 0; }
.numbers strong { display: block; color: #e5e7eb; font-weight: 600; }
.numbers a { color: #93c5fd; text-decoration: none; }
.numbers a:hover { text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
}

.footer-bottom .social a { color: #93c5fd; margin-right: .8rem; }
.footer-bottom .social a:hover { color: #bfdbfe; }
.footer-bottom .legal a { color: #9aa6d1; margin-left: 1rem; text-decoration: none; }
.footer-bottom .legal a:hover { color: #c7d2fe; }
.footer-bottom .copyright { grid-column: 1 / -1; color: #9aa6d1; margin-top: .5rem; text-align: center; }

@media (max-width: 768px) {
    .store-badges { flex-direction: row; }
    .footer-bottom { grid-template-columns: 1fr; text-align: center; }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for grid items */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }
.feature-card:nth-child(7) { transition-delay: 0.7s; }
.feature-card:nth-child(8) { transition-delay: 0.8s; }

/* Service cards animation */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

/* Mobile Lateral Menu Styles */
.mobile-lateral-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    transition: right 0.3s ease-in-out;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.mobile-lateral-menu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-lateral-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
}

.mobile-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-x: hidden;
    max-width: 100%;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(30, 64, 175, 0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.mobile-nav-links a:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    transform: translateX(5px);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-btn.btn-login {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.mobile-nav-btn.btn-login:hover {
    background: #1e40af;
    color: white;
}

.mobile-nav-btn.btn-register {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.mobile-nav-btn.btn-register:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.mobile-nav-btn.btn-download {
    background: linear-gradient(135deg, #7010b9 0%, #2c0596 100%);
    color: white;
}

.mobile-nav-btn.btn-download:hover {
    background: linear-gradient(135deg, #3d0596 0%, #1d0478 100%);
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
    }
    
    .header {
        padding: 1rem 0;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo i {
        font-size: 1.7rem;
    }

    /* Hide desktop navigation on mobile */
    .nav-center {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #1e40af;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: rgba(30, 64, 175, 0.1);
        transform: scale(1.1);
    }

    /* Ensure mobile menu only shows on mobile */
    .mobile-lateral-menu {
        display: block;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

@media (min-width: 769px) {
    /* Hide mobile menu on desktop */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-lateral-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-images {
        flex-direction: column;
        gap: 1rem;
    }

    .card-container {
        width: 280px;
        height: 175px;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image {
        max-width: 100%;
    }

    .about-photo-container {
        max-width: 100%;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 0.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bank-illustration {
        width: 300px;
        height: 225px;
    }

    .bank-illustration svg {
        width: 300px;
        height: 225px;
    }

    .floating-card {
        padding: 0.8rem;
    }

    .floating-card i {
        font-size: 1.2rem !important;
    }

    .floating-card div {
        font-size: 0.7rem !important;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

    .about-photo-container {
        max-width: 100%;
        max-height: 300px;
    }

    .features {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .stats {
        margin: 2rem 1rem;
    }

    .security-section {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .security-container h2 {
        font-size: 2rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials {
        margin: 2rem 1rem;
    }

    .testimonials-container h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-detail {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .services-container h2 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .investments {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }

    .investments-container h2 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .investments-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .investments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .investment-card {
        padding: 2rem 1.5rem;
    }

    .investment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .investment-title {
        width: 100%;
    }

    .investment-title h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .investment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        align-self: center;
    }

    .investment-badge {
        align-self: flex-start;
    }

    .investment-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .investment-features li {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-title {
        width: 100%;
    }

    .service-title h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        align-self: center;
    }

    .service-badge {
        align-self: flex-start;
    }

    .service-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-features li {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
}

/* Investment Chart Container */
.investment-chart-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    position: relative;
    z-index: 1;
}

.investment-chart-container canvas {
    max-height: 120px;
}

/* Investment Modal Styles */
.investment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.investment-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(30, 64, 175, 0.05));
}

.modal-header h2 {
    color: #1e40af;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.modal-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
}

.modal-investment-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(30, 64, 175, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.modal-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.modal-investment-type {
    color: #1e40af;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.calculator-form {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    color: #64748b;
    font-weight: 600;
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:not(.currency-symbol ~ input) {
    padding-left: 1rem;
}

.form-group input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12),
                0 0 24px rgba(59, 130, 246, 0.3);
    background: white;
}

.form-group input:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.2);
}

.calculator-result {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: resultFadeIn 0.5s ease;
}

@keyframes resultFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.result-item:last-child {
    border-bottom: none;
}

.result-total {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(16, 185, 129, 0.3);
}

.result-label {
    color: #475569;
    font-weight: 500;
    font-size: 1rem;
}

.result-value {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.2rem;
}

.result-highlight {
    color: #10b981;
    font-size: 1.4rem;
}

.result-total .result-value {
    font-size: 1.6rem;
    color: #1e40af;
}

.modal-footer {
    border-top: 2px solid rgba(59, 130, 246, 0.15);
    padding-top: 2rem;
}

.modal-cta-text {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-modal-login {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.btn-modal-login:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-modal-register {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-modal-register:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
}

@media (max-width: 480px) {
    .services-detail {
        margin: 1rem 0.5rem;
        padding: 2rem 1rem;
    }

    .services-container h2 {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-header {
        margin-bottom: 1rem;
    }

    .service-title h3 {
        font-size: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .service-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .investments {
        margin: 1rem 0.5rem;
        padding: 2rem 1rem;
    }

    .investments-container h2 {
        font-size: 1.8rem;
    }

    .investments-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .investment-card {
        padding: 1.5rem 1rem;
    }

    .investment-header {
        margin-bottom: 1rem;
    }

    .investment-title h3 {
        font-size: 1.2rem;
    }

    .investment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .investment-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    /* Modal Responsiveness */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .modal-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-investment-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
    }

    .modal-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .modal-investment-type {
        font-size: 1.1rem;
    }

    .calculator-result {
        padding: 1.5rem;
    }

    .result-value {
        font-size: 1rem;
    }

    .result-highlight {
        font-size: 1.2rem;
    }

    .result-total .result-value {
        font-size: 1.3rem;
    }

    .modal-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .modal-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Chart Container Mobile */
    .investment-chart-container {
        padding: 0.75rem;
        margin: 1rem 0;
    }

    .investment-chart-container canvas {
        max-height: 100px;
    }
}

@media (max-width: 360px) {
    .modal-content {
        width: 98%;
    }

    .modal-header h2 {
        font-size: 1.1rem;
    }

    .form-group input {
        font-size: 1rem;
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    }

    .currency-symbol {
        font-size: 1rem;
        left: 0.9rem;
    }
}

