:root {
    --primary-color: #D4ED31; /* Verde lima característico */
    --negro: #000000;
    --medium-blue: #1a203c;
    --light-gray: #f0f0f0;
    --text-color: #ffffff;
    --text-secondary: #b0b8d4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: var(--negro);
    line-height: 1.6;
    text-align: center;
    padding: 0 2rem;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Global Font Rules */
h1, h2 {
    font-family: 'Oxygen', sans-serif;
}

h3, p {
    font-family: 'Montserrat', sans-serif;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    border-radius: 20px;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 237, 49, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

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

nav a {
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px; /* Space between flag and text */
}

.flag-icon {
    width: 24px; /* Adjust size as needed */
    height: auto;
    border-radius: 3px; /* Slightly rounded corners for the flag */
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 237, 49, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 0;
    background-color: #000000;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(212, 237, 49, 0.5);
    max-width: 1200px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
    border-radius: 15px;
}

.hero h1 {
    position: relative; /* Needed for z-index to work */
    z-index: 2; /* Bring h1 to the front */
    font-family: 'Oxygen', sans-serif; /* Apply Oxygen font */
    font-size: 3rem;
    font-weight: 400; /* Apply bold effect */
    line-height: 1.2;
    margin-top: 32px; /* Added margin-top as requested */
    margin-bottom: 64px; /* Changed margin-bottom as requested */
    color: #fff; /* Change h1 text color to white */
    text-shadow: 2px 2px 4px var(--primary-color); /* Verde lima text shadow */
}

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

.hero h2.subtitle {
    position: relative; /* Needed for z-index to work */
    z-index: 2; /* Bring p to the front */
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem; /* Increased font size to 2rem */
    font-weight: 700; /* Apply bold effect */
    color: #ffffff; /* Change text color to white */
    max-width: 700px;
    margin: 0 auto 120px;
    text-shadow: 0 0 4px var(--primary-color); /* Verde lima text shadow */
}

.hero-buttons {
    position: relative; /* Needed for z-index to work */
    z-index: 2; /* Bring buttons to the front */
    display: flex;
    justify-content: center;
    gap: 20px;
}



/* Features Section */
.features {
    padding: 100px 0;
    text-align: center;
    background-color: #fff; /* Change background to white */
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #000;
    transition: color 0.3s, font-weight 0.3s;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.features h2:hover {
    color: var(--primary-color); /* Change color to verde lima on hover */
    font-weight: 700; /* Make it bold on hover */
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    flex-wrap: nowrap;
}

.feature-card {
    width: 300px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 15px;
    margin-bottom: 6rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-color);
}





.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}



.column li b {
    color: var(--primary-color);
}

/* Accounts Section */
.accounts {
    padding: 100px 0;
    text-align: center;
}

.accounts h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    transition: color 0.3s ease;
}

.accounts h2:hover {
    color: var(--primary-color);
}

/* Two Column Layout Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRightLong {
    from {
        opacity: 0;
        transform: translateX(200px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Images sliding from right to left (layouts 1, 3, 5, 7 - images on left side) */
.two-column-layout-1 .column:first-child img,
.two-column-layout-3 .column:first-child img,
.two-column-layout-5 .column:first-child img,
.two-column-layout-7 .column:first-child img {
    animation: slideInFromRightLong 1.5s ease-out;
}

/* Images sliding from left to right (layouts 2, 4, 6, 8 - images on right side) */
.two-column-layout-2 .column:first-child img,
.two-column-layout-4 .column:first-child img,
.two-column-layout-6 .column:last-child img,
.two-column-layout-8 .column:last-child img {
    animation: slideInFromLeft 1s ease-out;
}

.two-column-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.column {
    flex: 1;
}

.column img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.column ul {
    list-style: none;
    text-align: left;
}

.column li {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
}

.column li b {
    color: var(--primary-color);
}

/* Mining Section */
.mining {
    margin-bottom: 3rem;
}

/* Crypto Carousel */
.crypto-carousel {
    overflow: hidden;
    padding: 2rem 0 0.5rem 0;
    white-space: nowrap;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.carousel-track {
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.carousel-track img {
    height: 113px;
    width: auto;
    margin: 0 20px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes animated-border {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.how-it-works {
    position: relative;
    border-radius: 18px; /* Should be slightly larger than inner radius */
    z-index: 1;
    overflow: hidden;
    padding: 8px; /* The width of the border */
    background: linear-gradient(to right, var(--negro), #000000, #D4ED31, #ffffff, #000000, #D4ED31, var(--negro));
    background-size: 200% 100%;
    animation: animated-border 5s linear infinite;
    box-shadow: 0 0 15px rgba(212, 237, 49, 0.5);
}

.how-it-works-inner {
    background-color: var(--negro);
    padding: 100px 0;
    text-align: center;
    border-radius: 15px;
}

.how-it-works-inner h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
    text-shadow: 2px 2px 4px var(--primary-color);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.step {
    max-width: 300px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    text-shadow: 2px 2px 4px var(--primary-color);
}

.step p {
    color: var(--text-color);
    font-size: 1.2em;
    font-weight: bold;
}

/* Team Section */
.team {
    padding: 100px 0;
    text-align: center;
}

.team h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    transition: color 0.3s ease;
}

.team h2:hover {
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
}

.team-member h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--negro);
}

/* Team Grid Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* CTA Section */
.cta {
    position: relative;
    border-radius: 18px; /* Should be slightly larger than inner radius */
    z-index: 1;
    overflow: hidden;
    padding: 8px; /* The width of the border */
    background: linear-gradient(to right, var(--negro), #000000, #D4ED31, #ffffff, #000000, #D4ED31, var(--negro));
    background-size: 200% 100%;
    animation: animated-border 5s linear infinite; /* Reuse the same animation */
    box-shadow: 0 0 15px rgba(212, 237, 49, 0.5);
}

.cta-inner {
    background-color: var(--negro);
    padding: 100px 0;
    text-align: center;
    border-radius: 15px;
}

.cta-inner h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.cta-inner p {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    color: var(--primary-color);
    border-top: 1px solid rgba(212, 237, 49, 0.2);
}

footer p {
    color: #CCCCCC; /* Light gray color */
    font-size: 12px; /* 25% reduction from assumed 16px default */
}

.footer-copyright {
    color: #FFFFFF; /* White color */
    font-size: 16px; /* 16px font size */
}

/* Blog Content Section */
.blog-content {
    padding: 80px 0;
    background-color: #fff;
}

.blog-content .two-column-layout {
    margin-bottom: 2rem;
}

.blog-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Info Section */
.info-section .container {
    margin-top: 5rem;
}

.info-section h1:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 15px;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    background-color: var(--negro);
    margin-top: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 1248px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block; /* Ensure it's a block-level element for margin: auto to work */
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.vimeo-embed-container {
    max-width: 1248px; /* Match video-wrapper max-width */
    margin: 0 auto; /* Center the container */
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .separator-container {
        height: 60px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .separator-container h2 {
        font-family: 'Montserrat', sans-serif; /* Apply Montserrat font */
        font-size: 1.8rem; /* Only adjust font size for mobile */
    }

    .logo img {
        height: 30px;
    }

    .btn-primary {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .hero .hero-buttons .btn-primary.btn-large {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero::before {
        background-size: 52.5% auto; /* Increased size for mobile by 50% */
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        background-position: center center;
        animation: slideInFromBottomMobile 1s ease-out forwards;
    }

    @keyframes slideInFromBottomMobile {
        from {
            transform: translate(-50%, 100%);
            opacity: 0;
        }
        to {
            transform: translate(-50%, -50%);
            opacity: 0.8;
        }
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .feature-card {
        height: auto;
        margin-bottom: 0;
    }

    .feature-card p {
        color: #000000;
    }

    .two-column-layout {
        flex-direction: column;
    }

    .two-column-layout-6 .column:nth-child(1) { /* Text column */
        order: 2;
    }
    .two-column-layout-6 .column:nth-child(2) { /* Image column */
        order: 1;
    }

    .two-column-layout-8 .column:nth-child(1) { /* Text column */
        order: 2;
    }
    .two-column-layout-8 .column:nth-child(2) { /* Image column */
        order: 1;
    }

    .two-column-layout .column {
        text-align: center;
    }

    .two-column-layout .column img {
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .two-column-layout-2 .column:nth-child(1) { /* Image column */
        order: 2;
    }
    .two-column-layout-2 .column:nth-child(2) { /* Text column */
        order: 1;
    }

    .two-column-layout-4 .column:nth-child(1) { /* Image column */
        order: 2;
    }
    .two-column-layout-4 .column:nth-child(2) { /* Text column */
        order: 1;
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #000;
    margin-top: 60px;
    margin-bottom: 79px;
    opacity: 0; /* Start with opacity 0 */
    transform: translateX(-100%); /* Start off-screen to the left */
    animation: slideInFromLeft 1s ease-out forwards;
}

.section-title:hover {
    color: var(--primary-color);
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float img {
    width: 60px;
    height: 50px;
    object-fit: cover;
}

/* Floating Telegram Icon */
.telegram-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    left: 40px;
    background-color: #0088cc;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.telegram-float img {
    width: 60px;
    height: 50px;
    object-fit: cover;
}

.feature-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 0.9em;
    margin-top: 60px; /* Increased space */
}

.btn-large:hover {
    box-shadow: 0 0 25px var(--primary-color);
}

.blog-post {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

.video-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 237, 49, 0.5); /* Verde lima shadow */
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-bottom: 1px solid #eee;
}

.video-card h2 {
    font-size: 1.3rem;
    padding: 15px;
    color: #000;
}

.video-card a {
    text-decoration: none;
    color: inherit;
}
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 20px;
    border-bottom: 1px solid rgba(212, 237, 49, 0.2);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.mobile-nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    header nav, header .btn-primary {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    body {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2.subtitle {
        font-size: 1.5rem;
    }

    .features-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-card {
        width: 100%;
        margin-bottom: 0;
    }

    .two-column-layout {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-whatsapp, .floating-telegram {
        bottom: 20px;
    }

    .floating-whatsapp {
        right: 20px;
    }

    .floating-telegram {
        left: 20px;
    }
}

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

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--text-color);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 101; /* Higher than other elements */
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-consent-banner.active {
    transform: translateY(0);
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-banner .btn-primary {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero QR Code */
.hero-qr-code {
    position: absolute;
    bottom: 20px; /* Adjust as needed */
    right: 40px; /* Adjust as needed */
    width: 100px; /* Set a fixed size */
    height: auto;
    z-index: 3; /* Ensure it's above video and other hero content */
    border-radius: 5px; /* Slightly rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add some shadow */
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-qr-code {
        display: none; /* Hide on mobile */
    }
}
