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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-background iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    min-width: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #3b82f6;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #1e40af, #3b82f6, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line2 {
    display: block;
    background: linear-gradient(45deg, #1e40af, #3b82f6, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 50px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

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

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #ffffff;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Strategies Section */
.strategies {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.strategy-card:hover {
    transform: translateY(-10px);
}

.strategy-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.strategy-card:hover .strategy-image img {
    transform: scale(1.1);
}

.strategy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strategy-card:hover .strategy-overlay {
    opacity: 1;
}

.strategy-video-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.strategy-video-btn:hover {
    transform: scale(1.1);
}

.strategy-video-btn i {
    color: #000000;
    font-size: 1.5rem;
}

.strategy-info {
    padding: 1.5rem;
}

.strategy-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.strategy-info p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.strategy-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.strategy-stats span {
    background: rgba(30, 64, 175, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-thumbnail .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: #000000;
    font-size: 1.5rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.video-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Trading Section */
.trading {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
}

.trading-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.trading-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.trading-card:hover {
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header i {
    font-size: 2rem;
    color: #dc2626;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.trading-card p {
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trading-card ul {
    list-style: none;
}

.trading-card li {
    padding: 0.5rem 0;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.trading-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #dc2626;
}

/* Parallax Section */
.parallax-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1200') center/cover;
    transform: translateY(0);
    will-change: transform;
}

.parallax-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.parallax-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parallax-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link.instagram i { color: #e4405f; }
.social-link.youtube i { color: #dc2626; }
.social-link.twitter i { color: #1da1f2; }
.social-link.tiktok i { color: #000000; }
.social-link.telegram i { color: #0088cc; }

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    opacity: 0.7;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 5% auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #dc2626;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-scroll="fade-up"] {
    transform: translateY(30px);
}

[data-scroll="slide-left"] {
    transform: translateX(-50px);
}

[data-scroll="slide-right"] {
    transform: translateX(50px);
}

[data-scroll="slide-up"] {
    transform: translateY(50px);
}

[data-scroll="zoom-in"] {
    transform: scale(0.8);
}

[data-scroll="parallax"] {
    transform: translateY(0);
}

[data-scroll].animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .strategies-grid,
    .trading-content,
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

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

/* Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.3s ease;
}

.bento-item:hover .bento-bg {
    transform: scale(1.05);
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bento-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.bento-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.bento-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bento-stats .stat {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Responsive Design for Bento Grid */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 180px);
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 160px);
        gap: 0.8rem;
    }
    
    .bento-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 140px);
        gap: 0.6rem;
    }
    
    .bento-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .bento-content {
        padding: 1rem;
    }
    
    .bento-content h3 {
        font-size: 1.1rem;
    }
    
    .bento-content p {
        font-size: 0.8rem;
    }
} 

.footer {
    background: #181818;
    color: #fff;
    padding: 2.5rem 0 0.5rem 0;
    font-size: 1rem;
    margin-top: 3rem;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.footer-logo {
    height: 38px;
    width: auto;
    background: #fff1;
    border-radius: 6px;
    padding: 4px 8px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.footer-links a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: #1e40af;
    font-size: 1.4rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #bbb;
    border-top: 1px solid #222;
    padding-top: 1rem;
}
@media (max-width: 800px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .footer-brand {
        justify-content: center;
        width: 100%;
    }
    .footer-links {
        justify-content: center;
        width: 100%;
    }
    .footer-social {
        justify-content: center;
        width: 100%;
    }
}

.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #bbb;
    border-top: 1px solid #222;
    padding-top: 1rem;
}
.footer-disclaimer {
    margin-top: 1.2rem;
    font-size: 0.92rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.footer-disclaimer strong {
    color: #1e40af;
    font-weight: 600;
    font-size: 1rem;
}
@media (max-width: 600px) {
    .footer-disclaimer {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
}

.testimonios-section {
    background: #181818;
    color: #fff;
    padding: 3rem 0 2rem 0;
}
.testimonios-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e40af;
}
.testimonios-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonio-card {
    background: #232323;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    max-width: 340px;
    box-shadow: 0 2px 16px #0002;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.testimonio-text {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    color: #eee;
}
.testimonio-autor {
    font-size: 0.98rem;
    color: #1e40af;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}
.autor-nombre {
    font-weight: bold;
}
.autor-profesion {
    font-size: 0.92rem;
    color: #bbb;
}
@media (max-width: 900px) {
    .testimonios-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}
.testimonios-extra {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
}
@media (max-width: 900px) {
    .testimonios-extra {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
}

.beneficios-section {
    background: linear-gradient(120deg, #181818 60%, #232b3a 100%);
    padding: 5rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}
.beneficios-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1e40af;
    font-weight: 900;
    letter-spacing: -1px;
}
.bento-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.bento-beneficio {
    background: rgba(30, 64, 175, 0.10);
    border-radius: 18px;
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    box-shadow: 0 4px 24px #0002;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #1e40af22;
    transition: transform 0.25s, box-shadow 0.25s;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: bentoFadeIn 0.7s cubic-bezier(.6,.2,.3,1.1) forwards;
    animation-delay: var(--delay, 0s);
}
.bento-beneficio:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #67e9cc33;
    border-color: #1e40af;
}
.bento-icono {
    background: linear-gradient(135deg, #1e40af 60%, #1e40af 100%);
    color: #fff;
    border-radius: 12px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px #1e40af33;
}
.bento-beneficio h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}
.bento-beneficio p {
    color: #d3f7f0;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 400;
}
@keyframes bentoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@media (max-width: 900px) {
    .beneficios-section {
        padding: 3rem 0 2rem 0;
    }
    .bento-beneficios-grid {
        gap: 1.2rem;
    }
    .beneficios-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}
/* Beneficios Grid (reemplaza About) */
.beneficios-section {
    background: rgba(24, 24, 24, 0.92);
    padding: 4rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}
.beneficios-section .section-header h2 {
    color: #1e40af;
    font-weight: 900;
    letter-spacing: -1px;
}
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-top: 2.5rem;
}
.beneficio-card {
    background: rgba(30, 64, 175, 0.13);
    border-radius: 18px;
    padding: 2.2rem 1.2rem 1.7rem 1.2rem;
    box-shadow: 0 4px 24px #0002;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #1e40af22;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.beneficio-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px #67e9cc33;
    border-color: #1e40af;
    z-index: 2;
}
.beneficio-icon {
    background: linear-gradient(135deg, #1e40af 60%, #1e40af 100%);
    color: #fff;
    border-radius: 12px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px #67e9cc33;
}
.beneficio-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
    text-align: center;
}
.beneficio-card p {
    color: #d3f7f0;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
}
@media (max-width: 1100px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 700px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .beneficios-section {
        padding: 2.5rem 0 1.5rem 0;
    }
}

/* Botón CTA animado en Parallax */
.cta-parallax-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #1e40af, #67e9cc, #1e40af, #1e40af);
    background-size: 300% 100%;
    border: none;
    border-radius: 40px;
    box-shadow: 0 4px 24px #67e9cc55;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.18s, box-shadow 0.18s;
    animation: cta-gradient-move 3s linear infinite;
    outline: none;
}
.cta-parallax-btn:hover, .cta-parallax-btn:focus {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 8px 32px #67e9cc99;
    animation-play-state: paused;
}

@keyframes cta-gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.98rem;
    color: #dc2626;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.testimonio-foto {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid #dc2626;
    box-shadow: 0 2px 8px #0002;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonio-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.autor-nombre {
    display: block;
    font-weight: bold;
}
.autor-profesion {
    display: block;
    font-size: 0.92rem;
    color: #bbb;
    font-weight: 400;
}