/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* SVG Background Patterns */
.svg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
}

.svg-pattern svg {
    width: 100%;
    height: 100%;
}

/* Top Bar */
.top-bar {
    background-color: #2c2c2c;
    padding: 8px 0;
    font-size: 12px;
    color: white;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.fdic-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fdic-logo {
    height: 20px;
    width: auto;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.top-links a:hover {
    text-decoration: underline;
}

/* Main Navigation */
.main-nav {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.online-banco-portal {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-transform: lowercase;
    font-style: italic;
    letter-spacing: -0.5px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 40px;
    margin: 0 40px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.dropdown-toggle:hover {
    color: #3b82f6;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 8px 0;
    border: 1px solid rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 8px;
    position: relative;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 88, 204, 0.2);
}

/* Search and Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10001;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    padding: 8px 15px;
    min-width: 280px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    background: rgba(255,255,255,0.15);
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 14px;
    color: white;
    padding: 0;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #3b82f6;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.flag {
    display: block;
    width: 32px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
}

.flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 4px 4px;
    background-position: 0 0, 0 2px, 2px -2px, -2px 0px;
    opacity: 0.3;
    z-index: 1;
}

.flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.flag:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.flag.active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(204,0,0,0.3);
}

/* Login Button */
.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    visibility: visible !important;
    opacity: 1 !important;
}

.login-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 95, 204, 0.3);
}

.login-btn i {
    font-size: 16px;
}

/* User Menu Styles */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #3b82f6;
}

.user-info i {
    font-size: 16px;
}

.user-info span {
    font-size: 14px;
    font-weight: 500;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 8px 0;
    margin-top: 5px;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.logout-btn:hover {
    background: #f8f9fa;
    color: #3b82f6;
}

.logout-btn i {
    font-size: 14px;
}

/* Mobile User Info */
.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.mobile-user-info i {
    font-size: 18px;
    color: #3b82f6;
}

.mobile-user-info span {
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Navigation Controls */
.mobile-nav-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

/* Mobile Login Button */
.mobile-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

.mobile-login-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 180, 204, 0.3);
    color: white;
    text-decoration: none;
}

.mobile-login-btn i {
    font-size: 14px;
}

.mobile-login-btn span {
    font-size: 12px;
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 146, 204, 0.3);
    cursor: pointer;
    padding: 5px;
    z-index: 100002;
    position: relative;
    outline: none;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 180, 204, 0.5);
    transform: scale(1.05);
}

.mobile-nav-toggle:hover span {
    background: #1d4ed8;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100003;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;

}

.mobile-menu.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #3b82f6;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 100004;
    position: relative;
    backdrop-filter: blur(5px);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #1d4ed8;
    transform: scale(1.1);
}

.mobile-menu-content {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-item {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-item:active {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(0.98);
}

.mobile-menu-item:hover {
    color: #3b82f6;
    padding-left: 10px;
}

.mobile-menu-item.login-mobile {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 0;
    text-align: center;
    margin-top: 30px;
    border: none;
    padding: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 156, 204, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-item.login-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 163, 204, 0.4);
}

.mobile-menu-item.login-mobile:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 180, 204, 0.3);
}

.mobile-search {
    display: none;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    border-radius: 0;
}

/* Mobile dropdown styles */
.mobile-menu .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu .dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-menu .dropdown-menu {
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu .nav-dropdown.active .dropdown-menu {
    max-height: 300px;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu .dropdown-menu a {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    margin: 0 10px;
    border-radius: 0;
}

.mobile-menu .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #3b82f6;
    padding-left: 30px;
    transform: translateX(5px);
}

.mobile-menu .dropdown-menu a:last-child {
    border-bottom: none;
}

/* Mobile-First Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 25px;
        margin: 0 20px;
    }
    
    .search-container {
        min-width: 220px;
    }
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-actions {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .language-selector {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .flag {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .flag img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-menu {
        display: block !important;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure proper spacing and alignment */
    .nav-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Additional debugging for flag images */
    .language-selector .flag {
        min-width: 32px !important;
        min-height: 20px !important;
    }
}

@media (max-width: 768px) {
    .mobile-nav-controls {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-links,
    .nav-actions {
        display: none !important;
    }
    
    .nav-content {
        justify-content: space-between;
        padding: 12px 0;
    }
    
    .logo {
        gap: 8px;
    }
    
    .online-banco-portal {
        font-size: 20px;
    }
    
    .main-nav {
        padding: 0;
    }
    
    .mobile-menu-item {
        font-size: 16px;
        padding: 18px 0;
    }
    
    .mobile-menu-content {
        padding: 30px 20px;
    }
    
    .mobile-menu-header {
        padding: 15px 20px;
    }
    
    /* Mobile menu positioning for mobile devices */
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 100003 !important;
    }
}

/* Image Carousel Section */
.carousel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Cpath d='M50 50c0 27.614-22.386 50-50 50v-100c27.614 0 50 22.386 50 50z'/%3E%3C/g%3E%3C/svg%3E");
}

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.carousel-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.carousel-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    background: white;
    position: relative;
}

.carousel-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.carousel-slide:hover .carousel-image img {
    transform: scale(1.05);
}

.carousel-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.carousel-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.carousel-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.carousel-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204,0,0,0.3);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-btn-prev,
.carousel-btn-next {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-btn-prev:hover,
.carousel-btn-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.carousel-btn-prev i,
.carousel-btn-next i {
    color: #3b82f6;
    font-size: 18px;
    font-weight: bold;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 0;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.indicator:hover {
    background: #3b82f6;
    transform: scale(1.1);
}

/* Carousel Responsive Design */
@media (max-width: 768px) {
    .carousel-slide {
        flex-direction: column;
    }
    
    .carousel-image img {
        height: 250px;
    }
    
    .carousel-content {
        padding: 30px 20px;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .carousel-btn-prev,
    .carousel-btn-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev i,
    .carousel-btn-next i {
        font-size: 14px;
    }
    
    .carousel-header h2 {
        font-size: 2rem;
    }
    
    .carousel-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        padding: 60px 0;
    }
    
    .carousel-image img {
        height: 200px;
    }
    
    .carousel-content {
        padding: 20px 15px;
    }
    
    .carousel-content h3 {
        font-size: 1.3rem;
    }
    
    .carousel-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .carousel-header h2 {
        font-size: 1.8rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(153, 0, 0, 0.8) 100%);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 600px;
}

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

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

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

.btn-primary {
    background: white;
    color: #3b82f6;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Quick Services */
.quick-services {
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.quick-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

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

.quick-services .service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Cpath d='M30 30c0 16.569-13.431 30-30 30v-60c16.569 0 30 13.431 30 30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-services .service-card:hover::before {
    opacity: 1;
}

.quick-services .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.quick-services .service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    background: none;
    border-radius: 0;
}

.quick-services .service-icon i {
    font-size: 24px;
    color: #3b82f6;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Products Section */
.products {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

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

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.product-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v-40c11.046 0 20 8.954 20 20z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.product-card:hover .product-icon {
    background: #3b82f6;
}

.product-icon i {
    font-size: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.product-card:hover .product-icon i {
    color: white;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.product-card p {
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Banking Features Section */
.banking-features {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banking-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Cpath d='M50 50c0 27.614-22.386 50-50 50v-100c27.614 0 50 22.386 50 50z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.banking-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 20px;
    color: white;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Account Types Section */
.account-types {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.account-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Cpath d='M60 60c0 33.137-26.863 60-60 60v-120c33.137 0 60 26.863 60 60z'/%3E%3Cpath d='M60 60c0-33.137 26.863-60 60-60v120c-33.137 0-60-26.863-60-60z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.account-types h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.account-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.03'%3E%3Cpath d='M40 40c0 22.091-17.909 40-40 40v-80c22.091 0 40 17.909 40 40z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.account-card:hover::before {
    opacity: 1;
}

.account-card:hover {
    border-color: #3b82f6;
    background: white;
    transform: translateY(-3px);
}

.account-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.account-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.account-card .btn {
    background: transparent;
    color: #3b82f6;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.account-card .btn:hover {
    background: transparent;
    color: #1d4ed8;
    transform: translateX(5px);
}

.account-card .btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.account-card .btn:hover i {
    transform: translateX(3px);
}

/* BIA Section */
.bia-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.03'%3E%3Cpath d='M50 50c0 27.614-22.386 50-50 50v-100c27.614 0 50 22.386 50 50z'/%3E%3Cpath d='M50 50c0-27.614 22.386-50 50-50v100c-27.614 0-50-22.386-50-50z'/%3E%3C/g%3E%3C/svg%3E");
}

.bia-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bia-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.bia-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.bia-qr {
    margin: 30px 0;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    color: #666;
    position: relative;
    overflow: hidden;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.05'%3E%3Cpath d='M15 15c0 8.284-6.716 15-15 15v-30c8.284 0 15 6.716 15 15z'/%3E%3C/g%3E%3C/svg%3E");
}

.bia-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    background: white;
    padding: 20px;
    border-radius: 0;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #333;
}

/* Top Footer Section */
.footer-top {
    background: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-top-content {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-dropdown {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-dropdown:hover {
    color: #3b82f6;
}

.dropdown-label {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-label i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-dropdown:hover .dropdown-label i {
    transform: rotate(180deg);
}

/* Main Footer Section */
.footer-main {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 50%, #660066 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Social Media Section */
.social-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-label {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 12px;
}

/* Company Information */
.company-info {
    text-align: center;
    flex: 1;
    margin: 0 40px;
}

.company-details p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: white;
}

/* Footer Logo */
.footer-logo {
    text-align: right;
}

.online-banco-portal-footer {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-transform: lowercase;
    font-style: italic;
    letter-spacing: -0.5px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

.separator {
    color: white;
    font-size: 12px;
    font-weight: 300;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-top-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-main-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .company-info {
        margin: 0;
        order: 2;
    }
    
    .social-section {
        order: 1;
    }
    
    .footer-logo {
        order: 3;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .online-banco-portal {
        font-size: 24px;
    }
} 

/* Banking Images Styling */
.service-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

/* Banking App Section */
.banking-app-section {
    background: linear-gradient(135deg, #3b82f6 0%, #e767eb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banking-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.03'%3E%3Cpath d='M50 50c0 27.614-22.386 50-50 50v-100c27.614 0 50 22.386 50 50z'/%3E%3C/g%3E%3C/svg%3E");
}

.banking-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banking-app-text {
    max-width: 500px;
}

.banking-app-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banking-app-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.banking-app-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banking-app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: white;
}

.banking-app-features li::before {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.banking-app-image {
    text-align: center;
}

.banking-app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.banking-app-image img:hover {
    transform: translateY(-5px);
}

/* Credit Cards Section */
.credit-cards-section {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.credit-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc0000' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.credit-cards-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.credit-cards-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.credit-cards-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.credit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.credit-card-item {
    background: white;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.credit-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    flex-shrink: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.credit-card-item img {
    width: 100%;
    max-width: 280px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.credit-card-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.credit-card-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Banking Team Section */
.banking-team-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.banking-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0 27.614-22.386 50-50 50v-100c27.614 0 50 22.386 50 50z'/%3E%3C/g%3E%3C/svg%3E");
}

.banking-team-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.banking-team-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banking-team-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banking-team-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Images */
@media (max-width: 768px) {
    .service-image {
        height: 100px;
        margin-top: 10px;
    }
    
    .banking-app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .banking-app-text {
        max-width: 100%;
    }
    
    .banking-app-text h2 {
        font-size: 2rem;
    }
    
    .credit-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credit-card-item {
        padding: 20px;
    }
    
    .credit-card-item img {
        max-width: 200px;
    }
    
    .banking-team-content h2 {
        font-size: 2rem;
    }
    
    .banking-team-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 80px;
    }
    
    .banking-app-text h2 {
        font-size: 1.8rem;
    }
    
    .credit-cards-content h2 {
        font-size: 1.8rem;
    }
    
         .banking-team-content h2 {
         font-size: 1.8rem;
     }
 }

/* Cookie Consent Modal */
.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    color: white;
}

.cookie-header {
    text-align: center;
    margin-bottom: 25px;
}

.cookie-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.cookie-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cookie-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cookie-btn i {
    font-size: 14px;
}

.cookie-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.cookie-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Cookie Modal Responsive */
@media (max-width: 768px) {
    .cookie-content {
        padding: 20px 15px;
    }
    
    .cookie-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-header p {
        font-size: 0.9rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .cookie-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-link {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .cookie-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-header p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Cookie Message Notifications */
.cookie-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    z-index: 100001;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    max-width: 350px;
    border-left: 4px solid;
}

.cookie-message.show {
    transform: translateX(0);
}

.cookie-message.success {
    border-left-color: #28a745;
}

.cookie-message.warning {
    border-left-color: #ffc107;
}

.cookie-message-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-message i {
    font-size: 18px;
    flex-shrink: 0;
}

.cookie-message.success i {
    color: #28a745;
}

.cookie-message.warning i {
    color: #ffc107;
}

.cookie-message span {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Cookie Message Responsive */
@media (max-width: 768px) {
    .cookie-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
         .cookie-message.show {
         transform: translateY(0);
     }
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 100006;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Ensure no invisible overlays block interaction */
/* Remove any potential blocking elements */
.login-modal::before,
.login-modal::after {
    display: none !important;
}

/* Mobile-specific input override - completely bypass any conflicts */
@media (max-width: 768px) {
    .login-modal input[type="text"],
    .login-modal input[type="password"],
    .login-modal input[type="email"],
    .login-modal input[type="number"] {
        /* Use the same approach as the working test page */
        width: 100% !important;
        height: 50px !important;
        padding: 15px !important;
        margin: 10px 0 !important;
        font-size: 16px !important;
        font-family: inherit !important;
        border: 2px solid #e0e0e0 !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        background: white !important;
        color: #333 !important;
        display: block !important;
        position: relative !important;
        z-index: 999999 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        user-select: text !important;
        -webkit-user-select: text !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        cursor: text !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        transform: none !important;
        filter: none !important;
        -webkit-transform: none !important;
        -webkit-filter: none !important;
    }
    
    .login-modal input[type="text"]:focus,
    .login-modal input[type="password"]:focus,
    .login-modal input[type="email"]:focus,
    .login-modal input[type="number"]:focus {
        border-color: #3b82f6 !important;
        outline: none !important;
        background: white !important;
        box-shadow: none !important;
    }
    
    /* Ensure form groups don't interfere */
    .login-modal .form-group {
        position: relative !important;
        z-index: 999998 !important;
        pointer-events: auto !important;
        margin-bottom: 20px !important;
    }
    
    /* Ensure password input container doesn't block */
    .login-modal .password-input {
        position: relative !important;
        z-index: 999998 !important;
        pointer-events: auto !important;
    }
    
    /* Remove any potential blocking elements */
    .login-modal::before,
    .login-modal::after {
        display: none !important;
    }
    
    /* Ensure modal content is accessible */
    .login-modal-content {
        position: relative !important;
        z-index: 999997 !important;
        pointer-events: auto !important;
    }
    
    .login-modal-body {
        position: relative !important;
        z-index: 999997 !important;
        pointer-events: auto !important;
    }
}

.login-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* When modal is shown, ensure all inputs are interactive */
.login-modal.show .form-group input[type="text"],
.login-modal.show .form-group input[type="password"],
.login-modal.show .form-group input[type="email"],
.login-modal.show .form-group input[type="number"] {
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    cursor: text !important;
    z-index: 100012 !important;
    /* Force input to be interactive on mobile */
    -webkit-appearance: none !important;
    appearance: none !important;
    background: white !important;
    color: #333 !important;
    border: 2px solid #e0e0e0 !important;
    padding: 12px !important;
    font-size: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    outline: none !important;
    position: relative !important;
    display: block !important;
}

.login-modal-content {
    background: white;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    transform: scale(1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 100007;
    pointer-events: auto;
}

.login-modal.show .login-modal-content {
    transform: scale(1);
}

.login-modal-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.login-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.login-modal-close:hover {
    opacity: 0.8;
}

.login-modal-body {
    padding: 30px;
    background: white;
    position: relative;
    z-index: 100008;
    pointer-events: auto;
}

.login-form {
    position: relative;
    z-index: 100009;
    pointer-events: auto;
    /* Ensure form doesn't block input interaction */
    background: transparent;
    border: none;
    outline: none;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 100010;
    pointer-events: auto;
}

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

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    background: white;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.15s ease-in-out;
    position: relative;
    z-index: 100011;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    /* Force input to be interactive */
    cursor: text !important;
    outline: none !important;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="number"]:focus {
    border-color: #3b82f6;
    outline: none;
    background: white;
    box-shadow: none;
}

.password-input {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    z-index: 100015;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.remember-me {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    pointer-events: auto;
}

/* Custom Checkbox Styles */
.checkbox-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 0;
    margin-right: 10px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label:hover .checkmark {
    border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    margin-top: 30px;
}

.login-submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.login-submit-btn:hover {
    opacity: 0.9;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-links a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    pointer-events: auto;
}

.login-links a:hover {
    text-decoration: underline;
}

/* hCAPTCHA positioning - ensure it doesn't block inputs */
.h-captcha {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    pointer-events: auto;
}

.h-captcha iframe {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .login-modal {
        z-index: 100008;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
    
    /* Force all form elements to be interactive on mobile */
    .login-modal .form-group,
    .login-modal .form-group input,
    .login-modal .password-input,
    .login-modal .password-toggle,
    .login-modal .checkbox-label,
    .login-modal .checkbox-label input[type="checkbox"],
    .login-modal .login-submit-btn {
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        user-select: auto !important;
        -webkit-user-select: auto !important;
    }
    
    /* Ensure inputs are always interactive */
    .login-modal .form-group input[type="text"],
    .login-modal .form-group input[type="password"],
    .login-modal .form-group input[type="email"],
    .login-modal .form-group input[type="number"] {
        pointer-events: auto !important;
        user-select: text !important;
        -webkit-user-select: text !important;
        -moz-user-select: text !important;
        -ms-user-select: text !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        cursor: text !important;
        z-index: 100013 !important;
        /* Force input properties */
        -webkit-appearance: none !important;
        appearance: none !important;
        background: white !important;
        color: #333 !important;
        border: 2px solid #e0e0e0 !important;
        padding: 12px !important;
        font-size: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 0 !important;
        outline: none !important;
        position: relative !important;
        display: block !important;
        /* Ensure input is focusable */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .login-modal.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .login-modal-content {
        width: 95%;
        max-width: 350px;
        margin: 20px;
        background: white;
        border-radius: 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 100009;
        pointer-events: auto;
    }
    
    .login-modal-body {
        padding: 20px;
        background: white;
        position: relative;
        z-index: 100010;
        pointer-events: auto;
    }
    
    .login-modal-header {
        padding: 15px 20px;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
    }
    
    .login-modal-header h3 {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
        position: relative;
        z-index: 100011;
        pointer-events: auto;
    }
    
    .form-group input[type="text"],
    .form-group input[type="password"],
    .form-group input[type="email"],
    .form-group input[type="number"] {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border: 2px solid #e0e0e0;
        border-radius: 0;
        background: white;
        color: #333;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        position: relative;
        z-index: 100012;
        pointer-events: auto;
        user-select: text;
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
    }
    
    .form-group input[type="text"]:focus,
    .form-group input[type="password"]:focus,
    .form-group input[type="email"]:focus,
    .form-group input[type="number"]:focus {
        border-color: #3b82f6;
        outline: none;
        background: white;
        box-shadow: none;
    }
    
    .password-input {
        position: relative;
        width: 100%;
    }
    
    .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #666;
        cursor: pointer;
        padding: 5px;
        z-index: 100013;
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    .login-submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        border: none;
        border-radius: 0;
        cursor: pointer;
        pointer-events: auto;
    }
    
    .login-links {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }
    
    .login-links a {
        color: #3b82f6;
        text-decoration: none;
        font-size: 14px;
        pointer-events: auto;
    }
    
    .remember-me {
        margin-bottom: 20px;
    }
    
    .checkbox-label {
        display: flex;
        align-items: center;
        cursor: pointer;
        pointer-events: auto;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: auto;
        margin-right: 8px;
        pointer-events: auto;
    }
    
    /* Mobile hCAPTCHA fixes */
    .login-modal .h-captcha {
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
        pointer-events: auto;
    }
    
    .login-modal .h-captcha iframe {
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    color: white;
    text-align: center;
    z-index: 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(153, 0, 0, 0.8) 100%);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    color: #6c757d;
}

.breadcrumb-nav span:last-child {
    color: #6c757d;
    font-weight: 500;
}

/* About Section Base */
.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* História Section */
.historia-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.historia-timeline {
    position: relative;
}

.historia-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 180, 204, 0.3);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
}

.historia-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.historia-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
}

.historia-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #3b82f6;
}

/* Valores Section */
.valores-image-section {
    position: relative;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.valores-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.valores-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.valores-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(220, 38, 38, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.valores-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}

.valor-item {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.valor-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.valor-item h3 i {
    color: #ffd700;
    font-size: 1.5rem;
}

.valor-item p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Sustentabilidade Section */
.sustentabilidade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sustentabilidade-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.sustentabilidade-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sustentabilidade-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.sustentabilidade-info p {
    color: #6c757d;
    line-height: 1.6;
}

.sustentabilidade-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: #6c757d;
    font-weight: 500;
}

/* Imprensa Section */
.imprensa-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.imprensa-card {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imprensa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.imprensa-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.imprensa-image .image-placeholder i {
    font-size: 3rem;
    color: #3b82f6;
}

.imprensa-info {
    padding: 25px;
}

.imprensa-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.imprensa-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.imprensa-info p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

.imprensa-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Trabalhe Conosco Section */
.trabalhe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trabalhe-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.beneficio-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 20px;
}

.beneficio-item span {
    font-weight: 500;
    color: #1a1a1a;
}

.trabalhe-actions {
    display: flex;
    gap: 15px;
}

.trabalhe-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trabalhe-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
}

.trabalhe-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #3b82f6;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 112, 204, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 204, 0.4);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Active Navigation State */
.nav-dropdown .dropdown-toggle.active {
    color: #3b82f6;
    font-weight: 600;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .historia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sustentabilidade-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trabalhe-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .imprensa-grid {
        grid-template-columns: 1fr;
    }
    
    .valores-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .valores-overlay {
        padding: 30px 20px;
    }
    
    .valor-item {
        padding: 15px;
    }
    
    .imprensa-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .trabalhe-actions {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .valor-card {
        padding: 30px 20px;
    }
    
    .imprensa-info {
        padding: 20px;
    }
    
    .beneficio-item {
        padding: 12px;
    }
    
    /* Mobile navigation for small screens */
    .mobile-menu-item {
        font-size: 15px;
        padding: 16px 0;
    }
    
    .mobile-menu-content {
        padding: 25px 15px;
    }
    
    .mobile-menu-header {
        padding: 12px 15px;
    }
    
    .mobile-nav-toggle {
        width: 28px;
        height: 22px;
    }
    
    .mobile-nav-toggle span {
        height: 2.5px;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* Security Key Section */
.security-key-section {
    position: relative;
}

/* Advantages Section */
.security-advantages {
    background: linear-gradient(90deg, #3b82f6 0%, #67cceb 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.security-advantages h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.advantages-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.advantage-card {
    background: white;
    border-radius: 8px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 350px;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #67cceb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 24px;
    color: white;
}

.advantage-text p {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

/* Register Section */
.security-register {
    background: white;
    padding: 80px 0;
    position: relative;
}

.register-content {
    max-width: 800px;
    margin: 0 auto;
}

.register-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.register-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 3px;
    background: #3b82f6;
}

.register-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.register-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.register-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.register-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 2px;
}

.register-list li strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Security Key Section Responsive */
@media (max-width: 768px) {
    .security-advantages h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .advantages-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .advantage-card {
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .register-content h2 {
        font-size: 2rem;
    }
    
    .register-content > p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .security-advantages {
        padding: 60px 0;
    }
    
    .security-advantages h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .advantage-card {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon i {
        font-size: 20px;
    }
    
    .advantage-text p {
        font-size: 0.9rem;
    }
    
    .security-register {
        padding: 60px 0;
    }
    
    .register-content h2 {
        font-size: 1.8rem;
    }
    
    .register-content > p {
        font-size: 0.95rem;
    }
    
    .register-list li {
        font-size: 0.95rem;
        padding-left: 25px;
    }
    
    .register-list li::before {
        width: 10px;
        height: 10px;
        top: 6px;
    }
} 

/* Services Page Styles */

/* Services Hero Section */
.services-hero {
    position: relative;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
    color: white;
    text-align: center;
    z-index: 1;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(231, 103, 235, 0.8) 100%);
    z-index: 1;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.services-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.services-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.services-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-stats .stat-item {
    text-align: center;
}

.services-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-stats .stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Services Sections */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-section:nth-child(even) {
    background: #f8f9fa;
}

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

.services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.services-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Investment Timeline Layout */
.investment-timeline {
    max-width: 1200px;
    margin: 0 auto;
}

.investment-item {
    margin-bottom: 80px;
    position: relative;
}

.investment-item:last-child {
    margin-bottom: 0;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.investment-item.reverse .investment-content {
    direction: rtl;
}

.investment-item.reverse .investment-text {
    direction: ltr;
}

.investment-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #67cceb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.investment-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #67cceb 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.investment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.investment-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.investment-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.investment-btn:hover i {
    transform: translateX(3px);
}

.investment-visual {
    text-align: center;
    position: relative;
}

.investment-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #67cceb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.investment-icon i {
    font-size: 40px;
    color: white;
}

.investment-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 0;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #67cceb);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.services-section .service-icon i {
    font-size: 28px;
    color: white;
}

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

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1rem;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #67cceb);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background: linear-gradient(135deg, #003fb3, #67cceb);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Contact Services Section */
.contact-services {
    background: linear-gradient(135deg, #3b82f6 0%, #67cceb 100%);
    color: white;
}

.contact-services .section-header h2,
.contact-services .section-header p {
    color: white;
}

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

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Backgrounds */
.personal-banking {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.business-banking {
    background: white;
}

.investment-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.insurance-services {
    background: white;
}

.digital-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.specialized-services {
    background: white;
}

/* Responsive Design for Quick Services */
@media (max-width: 1024px) {
    .quick-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .quick-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-services .service-card {
        padding: 25px 15px;
    }
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero {
        height: 400px;
        min-height: 400px;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .services-stats {
        gap: 30px;
    }
    
    .services-stats .stat-number {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 350px;
        min-height: 350px;
    }
    
    .services-hero-content h1 {
        font-size: 2rem;
    }
    
    .services-stats {
        gap: 20px;
    }
    
    .services-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .services-stats .stat-label {
        font-size: 0.9rem;
    }
    
    .service-item {
        padding: 25px 15px;
    }
    
    .quick-services .service-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Investment Timeline Responsive */
    .investment-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .investment-item.reverse .investment-content {
        direction: ltr;
    }
    
    .investment-text h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .investment-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .investment-highlights {
        justify-content: center;
        gap: 8px;
    }
    
    .highlight {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .investment-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .investment-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .investment-icon i {
        font-size: 32px;
    }
    
    .investment-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .services-section .service-icon i {
        font-size: 24px;
    }
}

/* Personal Banking Section - New Design */
.personal-banking {
    background: white;
    position: relative;
    overflow: hidden;
}

.personal-banking::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e767eb 0%, #3b82f6 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.personal-banking-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.personal-banking-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #67cceb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.personal-banking-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.quick-service-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-service-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.15);
}

.quick-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #67cceb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.quick-service-icon i {
    font-size: 24px;
    color: white;
}

.quick-service-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* Responsive Design for Personal Banking Section */
@media (max-width: 1024px) {
    .personal-banking-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .personal-banking-text h2 {
        font-size: 2.4rem;
    }
    
    .quick-services-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .personal-banking-content {
        padding: 60px 0;
    }
    
    .personal-banking-text h2 {
        font-size: 2rem;
    }
    
    .personal-banking-text p {
        font-size: 1.1rem;
    }
    
    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }
    
    .quick-service-card {
        padding: 25px 15px;
    }
    
    .quick-service-icon {
        width: 50px;
        height: 50px;
    }
    
    .quick-service-icon i {
        font-size: 20px;
    }
    
    .quick-service-label {
        font-size: 0.8rem;
    }
}

/* Business Banking Section - New Design */
.business-banking {
    background: white;
    position: relative;
    overflow: hidden;
}

.business-banking-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.business-banking-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-banking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(103, 193, 235, 0.8) 100%);
    z-index: 1;
}

.business-banking-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.business-banking-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.business-banking-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.business-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.business-service-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.business-service-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.15);
}

.business-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #e767eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.business-service-icon i {
    font-size: 24px;
    color: white;
}

.business-service-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* Responsive Design for Business Banking Section */
@media (max-width: 1024px) {
    .business-banking-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .business-banking-text h2 {
        font-size: 2.4rem;
    }
    
    .business-services-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .business-banking-content {
        padding: 60px 0;
    }
    
    .business-banking-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .business-banking-text p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .business-services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }
    
    .business-service-card {
        padding: 25px 15px;
    }
    
    .business-service-icon {
        width: 50px;
        height: 50px;
    }
    
    .business-service-icon i {
        font-size: 20px;
    }
    
    .business-service-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .personal-banking-text h2 {
        font-size: 1.8rem;
    }
    
    .quick-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
    }
    
    .quick-service-card {
        padding: 20px 15px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    font-size: 16px;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
}

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

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #333;
    font-weight: 600;
}

/* Sustentabilidade Section Styles */
.sustentabilidade-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.sustentabilidade-content {
    margin-top: 50px;
}

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

.sustentabilidade-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sustentabilidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sustentabilidade-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.sustentabilidade-icon i {
    font-size: 32px;
    color: white;
}

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

.sustentabilidade-card p {
    color: #666;
    line-height: 1.6;
}

.sustentabilidade-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.sustentabilidade-stats .stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sustentabilidade-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
}

.sustentabilidade-stats .stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sustentabilidade Responsive Design */
@media (max-width: 768px) {
    .sustentabilidade-section {
        padding: 60px 0;
    }
    
    .sustentabilidade-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sustentabilidade-card {
        padding: 30px 20px;
    }
    
    .sustentabilidade-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sustentabilidade-stats .stat-number {
        font-size: 2rem;
    }
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 15px 18px;
    }
}

/* Bootstrap Offcanvas Overrides for Custom Mobile Menu Design */
.offcanvas.mobile-menu {
    /* Override Bootstrap's default offcanvas styles */
    background: rgba(0, 0, 0, 0.95) !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 100005 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 100vh !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.offcanvas.mobile-menu.show {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.offcanvas.mobile-menu .offcanvas-header {
    /* Override Bootstrap's offcanvas header */
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px !important;
}

.offcanvas.mobile-menu .btn-close {
    /* Override Bootstrap's close button */
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 30px !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    z-index: 100004 !important;
    position: relative !important;
    opacity: 1 !important;
    filter: none !important;
}

.offcanvas.mobile-menu .btn-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.offcanvas.mobile-menu .btn-close::before {
    content: "×" !important;
    color: white !important;
    font-size: 30px !important;
    line-height: 1 !important;
}

.offcanvas.mobile-menu .offcanvas-body {
    /* Override Bootstrap's offcanvas body */
    padding: 40px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: transparent !important;
}

/* Ensure mobile dropdowns work with Bootstrap offcanvas */
.offcanvas.mobile-menu .nav-dropdown {
    margin-bottom: 0 !important;
}

.offcanvas.mobile-menu .dropdown-toggle {
    color: white !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
}

.offcanvas.mobile-menu .dropdown-toggle:hover {
    color: #3b82f6 !important;
    padding-left: 10px !important;
}

.offcanvas.mobile-menu .dropdown-menu {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    display: block !important;
    backdrop-filter: blur(10px) !important;
}

.offcanvas.mobile-menu .nav-dropdown.active .dropdown-menu {
    max-height: 300px !important;
    padding: 10px 0 !important;
    overflow: visible !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.offcanvas.mobile-menu .dropdown-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    padding: 15px 20px !important;
    display: block !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0 10px !important;
    border-radius: 0 !important;
}

.offcanvas.mobile-menu .dropdown-menu a:hover {
    color: #3b82f6 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding-left: 30px !important;
    transform: translateX(5px) !important;
}

.offcanvas.mobile-menu .mobile-menu-item.login-mobile {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-radius: 0 !important;
    text-align: center !important;
    margin-top: 30px !important;
    border: none !important;
    padding: 20px !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
}

.offcanvas.mobile-menu .mobile-menu-item.login-mobile:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3) !important;
}

.offcanvas.mobile-menu .mobile-menu-item.login-mobile:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.2) !important;
}

/* Ensure the mobile nav toggle button works with Bootstrap */
.mobile-nav-toggle[data-bs-toggle="offcanvas"] {
    /* Keep existing custom styles */
    display: none !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    width: 30px !important;
    height: 25px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(204, 0, 0, 0.3) !important;
    cursor: pointer !important;
    padding: 5px !important;
    z-index: 100002 !important;
    position: relative !important;
    outline: none !important;
    border-radius: 4px !important;
    backdrop-filter: blur(5px) !important;
}

@media (max-width: 768px) {
    .mobile-nav-toggle[data-bs-toggle="offcanvas"] {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Additional Bootstrap offcanvas fixes */
.offcanvas.mobile-menu {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.offcanvas.mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

.offcanvas.mobile-menu .btn-close {
    filter: invert(1) !important;
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
}

.offcanvas.mobile-menu .btn-close:hover {
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.1) !important;
}

/* Ensure proper z-index for mobile menu */
.offcanvas.mobile-menu {
    z-index: 100003 !important;
}

/* Fix for mobile menu backdrop */
.offcanvas-backdrop {
    z-index: 100002 !important;
}

/* Verification Modal Styles */
.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 100007;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.verification-modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.verification-modal-content {
    background: white;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    transform: scale(1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 100008;
}

.verification-modal-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verification-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.verification-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.verification-modal-close:hover {
    opacity: 0.8;
}

.verification-modal-body {
    padding: 30px;
    background: white;
}

.verification-info {
    text-align: center;
    margin-bottom: 30px;
}

.verification-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.verification-info p {
    margin: 10px 0;
    color: #555;
    font-size: 14px;
}

.email-info {
    color: #888;
    font-size: 12px;
}

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

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

.verification-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 16px;
    transition: border-color 0.3s ease;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 600;
}

.verification-form input:focus {
    outline: none;
    border-color: #3b82f6;
}

.verification-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verification-submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
}

.verification-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.verification-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.verification-links a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.verification-links a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive styles for verification modal */
@media (max-width: 480px) {
    .verification-modal-content {
        width: 95%;
        margin: 20px;
        max-width: 350px;
    }
    
    .verification-modal-body {
        padding: 20px;
    }
    
    .verification-modal-header {
        padding: 15px 20px;
    }
    
    .verification-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .verification-form input {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .verification-submit-btn {
        padding: 12px;
        font-size: 16px;
    }
}