/*
Theme Name: Ciclos Place 1
Theme URI: https://ciclosplace.com
Description: A modern one-page theme for Ciclos Place
Author: Your Name
Version: 1.0
License: GNU General Public License v2 or later
*/

:root {
    --ciclos-yellow: #ECCD6C;
    --ciclos-green: #2C4C23;
    --ciclos-black: #000000;
}

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--ciclos-green), var(--ciclos-black));
    color: var(--ciclos-yellow);
}

/* Header Styles */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Distribute items with space between */
    align-items: center;
    padding: 0 20px;
    position: relative; /* Needed for absolute positioning of nav */
}

.header-container .logo {
    /* flex-grow: 1; */ /* Removed */
    /* text-align: center; */ /* Removed */
    margin-right: auto; /* Push logo to the left, navigation to the right */
}

.header-container .main-navigation {
    position: static; /* Changed to static */
    right: auto; /* Removed */
    top: auto; /* Removed */
    transform: none; /* Removed */
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation .nav-menu li {
    margin-left: 25px; /* Increased spacing for desktop */
}

.main-navigation .nav-menu a {
    color: var(--ciclos-green);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.main-navigation .nav-menu a:hover {
    color: var(--ciclos-yellow);
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--primary-green);
}

/* Hide hamburger menu by default on larger screens by moving it off-screen */
.hamburger-menu {
    position: absolute; /* Use absolute positioning */
    left: -9999px; /* Move off-screen */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Add new SVG animation styles (keep these for both states) */
.hamburger-menu svg {
    width: 40px; /* Default size (can be overridden in media query) */
    height: auto; /* Maintain aspect ratio */
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu.active svg {
    transform: rotate(90deg);
}

.hamburger-menu path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu path:nth-child(1) {
    transform-origin: 36% 40%;
}
.hamburger-menu path:nth-child(2) {
    stroke-dasharray: 29 299;
}
.hamburger-menu path:nth-child(3) {
    transform-origin: 35% 63%;
}
.hamburger-menu path:nth-child(4) {
    stroke-dasharray: 29 299;
}
.hamburger-menu path:nth-child(5) {
    transform-origin: 61% 52%;
}
.hamburger-menu path:nth-child(6) {
    transform-origin: 62% 52%;
}

.hamburger-menu.active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}
.hamburger-menu.active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}
.hamburger-menu.active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.hamburger-menu.active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}
.hamburger-menu.active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.hamburger-menu.active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}


/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--ciclos-black); /* Changed to black for smoother transition */
    z-index: 2; /* Ensure content is above the video */
}

.hero-section > * {
    z-index: 2; /* Ensure all direct children of hero-section are above the video */
}

.video-background.loaded {
    opacity: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0; /* Start with opacity 0 */
    transition: opacity 0.5s ease; /* Smooth transition */
}

.video-background.loaded {
    opacity: 1; /* Full opacity when loaded */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section img,
.hero-section .cta-button {
    position: relative;
    z-index: 2;
}

.hero-section.hero-form-active img {
    margin-top: 50px; /* Ajuste este valor conforme necessário para mover a logo para baixo */
}

.hero-section p {
    margin-top: 0px; /* Ajuste este valor para mover o texto para cima */
}

@media (max-width: 768px) {
    .hero-section img {
        max-width: 350px; /* Ajustado para um tamanho menor no mobile */
        height: auto;
    }

    .hero-section p {
        text-align: center;
        margin-top: 30px; /* Ajuste este valor para mover o texto para cima */
    }

    .wpcf7,
    .cta-button {
        margin-top: -50px; /* Ajuste este valor para mover para cima */
    }

    .hero-section.hero-form-active img {
        margin-top: 197px; /* Ajuste este valor conforme necessário para mover a logo para baixo */
    }
}

.hero-logo {
    font-size: 120px;
    font-weight: bold;
    color: var(--ciclos-yellow);
    margin-bottom: 30px;
}

.cta-button {
    background: var(--ciclos-yellow);
    color: var(--ciclos-green);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Contact Form 7 Styles */
.wpcf7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px; /* Adjust as needed */
}

.wpcf7 p {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items within each paragraph */
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border: 1px solid var(--ciclos-yellow); /* Yellow border */
    color: var(--ciclos-yellow); /* Yellow text */
    padding: 15px 20px;
    border-radius: 30px;
    width: 100%; /* Full width within its container */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    margin-bottom: 20px; /* Space between input and button */
}

.wpcf7-form .wpcf7-email::placeholder {
    color: rgba(255, 255, 255, 0.6); /* Cor do placeholder */
    font-style: italic;
    text-align: center;
}


.wpcf7-form .wpcf7-submit {
    background: var(--ciclos-yellow); /* Yellow background */
    color: var(--ciclos-green); /* Green text */
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative; /* For spinner positioning */
    display: inline-flex; /* Use inline-flex to wrap content */
    align-items: center; /* Vertically align content */
    justify-content: center; /* Center content */
    min-width: 150px; /* Ensure button has a minimum width for spinner */
    overflow: hidden; /* Hide overflow content, e.g., spinner when not active */
}

.wpcf7-form .wpcf7-submit span.wpcf7-spinner {
    position: absolute;
    right: 15px; /* Position to the right inside the button */
    margin: 0; /* Remove default margin */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0; /* Hide by default */
    transition: opacity 0.3s ease;
    pointer-events: none; /* Prevent interaction with spinner */
}

.wpcf7-form.submitting .wpcf7-submit span.wpcf7-spinner {
    opacity: 0; /* Keep spinner hidden always */
}

.wpcf7-form.submitting .wpcf7-submit .wpcf7-submit-text {
    opacity: 1; /* Always show text, don't hide it when submitting */
    transition: opacity 0.3s ease;
}

.wpcf7-form .wpcf7-submit:hover {
    transform: scale(1.05);
}

.wpcf7-response-output {
    text-align: center;
    
}

.wpcf7-not-valid-tip {
    text-align: center !important;
    width: 100%; /* Garante que o elemento ocupe a largura total para centralização */
    display: block; /* Garante que o text-align funcione corretamente */
    margin: 0 auto;
    
}

/* Value Proposition Section */
.value-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: brightness(1.1) blur(2px);
    transition: background 0.8s ease;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-content {
    text-align: center;
}

.value-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--ciclos-yellow);
}

.value-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Changed from green to transparent white */
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--ciclos-black);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--ciclos-yellow);
    margin-bottom: 40px;
}

.currency-toggle {
    text-align: center;
    margin-bottom: 40px;
}

.currency-btn {
    background: none;
    border: 2px solid var(--ciclos-yellow);
    color: var(--ciclos-yellow);
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.currency-btn.active {
    background: var(--ciclos-yellow);
    color: var(--ciclos-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.08); /* Slightly less opaque white */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 205, 108, 0.2); /* Add a subtle border */
}

.pricing-item:hover {
    transform: translateY(-8px) scale(1.02); /* More pronounced lift effect and slight scale */
    background: rgba(255, 255, 255, 0.15); /* Slightly more opaque on hover */
    box-shadow:
        0 0 10px var(--ciclos-yellow),
        0 0 20px var(--ciclos-yellow),
        0 0 30px var(--ciclos-green),
        0 0 40px var(--ciclos-green),
        0 0 50px var(--ciclos-yellow),
        0 0 60px var(--ciclos-green),
        0 0 70px var(--ciclos-yellow);
    /* Stronger shadow on hover */
}

.pricing-item h3 {
    color: var(--ciclos-yellow); /* Use yellow for title */
    font-size: 2.2em; /* Slightly larger title */
    margin-bottom: 20px;
}

.price {
    font-size: 3.5em; /* Larger price font size */
    color: var(--ciclos-yellow);
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(236, 205, 108, 0.5); /* Add a subtle text shadow */
}

.license-details {
    margin-top: 25px; /* Increased top margin */
    padding-top: 25px; /* Increased top padding */
    border-top: 1px solid rgba(236, 205, 108, 0.4); /* Slightly more visible border */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out; /* Smooth transition for details */
}

.license-details.expanded {
    max-height: 500px; /* Adjust based on content height */
    opacity: 1;
}

.license-details h4 {
    color: var(--ciclos-yellow);
    margin-bottom: 15px;
    font-size: 1.3em; /* Slightly larger heading */
}

.license-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.license-details li {
    margin-bottom: 12px; /* Increased spacing between list items */
    color: var(--ciclos-yellow);
    opacity: 0.9; /* Slightly less transparent */
    font-size: 1.1em; /* Slightly larger text */
}

.expand-details {
    background: none;
    border: 2px solid var(--ciclos-yellow); /* Add a border */
    color: var(--ciclos-yellow);
    cursor: pointer;
    margin-top: 30px; /* Increased top margin */
    padding: 10px 25px; /* Adjusted padding */
    border-radius: 25px; /* Rounded corners */
    font-size: 1em;
    transition: all 0.3s ease; /* Smooth transition */
    display: inline-flex; /* Use inline-flex for centering */
    align-items: center;
    justify-content: center;
    gap: 8px; /* Increased gap */
}

.expand-details:hover {
    background: var(--ciclos-yellow); /* Solid background on hover */
    color: var(--ciclos-black); /* Dark text on hover */
}

.expand-details::after {
    content: '▼';
    font-size: 0.9em; /* Slightly larger arrow */
    transition: transform 0.3s ease;
}

.expand-details.expanded::after {
    transform: rotate(180deg);
}

/* Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: var(--ciclos-green);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--ciclos-yellow);
    font-size: 1.5em;
    cursor: pointer;
}

/* Contact Form 7 Styles */
.wpcf7-form {
    color: var(--ciclos-yellow);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--ciclos-yellow);
    background: rgba(0, 0, 0, 0.2);
    color: var(--ciclos-yellow);
    border-radius: 5px;
}

.wpcf7-form input[type="submit"] {
    background: var(--ciclos-yellow);
    color: var(--ciclos-green);
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    transform: scale(1.05);
}

.exclusive-chat {
    text-align: center;
    margin-top: 40px;
}

.luna-one-section {
    background: linear-gradient(45deg, #000000, #17142b);
    padding: 4rem 2rem;
}

.luna-one-container {
    max-width: 1200px;
    margin: 0 auto;
}

.luna-one-section h2 {
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.luna-one-container p {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.luna-one-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin: 2rem auto 0;
    display: block;
    width: fit-content;
    transition: transform 0.3s ease;
}

.luna-one-button:hover {
    transform: scale(1.05);
}

.luna-images {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.luna-mobile {
    margin-left: 10%; /* Adjust this value as needed */
}

.luna-desktop {
    margin-right: 10%; /* Adjust this value as needed */
}

.luna-desktop img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;

}

.luna-mobile img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;

}

@media (max-width: 768px) {
    .luna-one-section {
        padding: 3rem 1rem;
    }

    .luna-one-section h2 {
        font-size: 2rem;
    }

    .luna-one-container p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .luna-one-button {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }

    .luna-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .luna-desktop {
        order: 1;
        margin-right: 0; /* Remove margin for centering */
    }

    .luna-mobile {
        order: 2;
        margin-left: 0; /* Remove margin for centering */
    }

    .luna-desktop img,
    .luna-mobile img {
        height: 250px;
        margin: 0 auto; /* Center images */
    }

    .luna-one-button {
        margin-top: 1.5rem;
        padding: 0.8rem 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-item {
        margin-bottom: 20px;
    }
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2); /* Changed hover background to a slightly more opaque white */
}

.feature-item h3 {
    color: var(--ciclos-yellow);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.value-image {
    max-width: 100px; /* Set a small maximum width */
    height: auto; /* Maintain aspect ratio */
    margin: 40px auto 0 auto; /* Center the image and keep top margin */
    display: block; /* Make it a block element to apply auto margins */
    border-radius: 10px; /* Keep the border radius */
}

@media (max-width: 768px) {
    .value-features {
        grid-template-columns: 1fr;
    }
    
    .value-content h2 {
        font-size: 2em;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--ciclos-yellow);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    will-change: transform;
}

.testimonial-item {
    flex: 0 0 300px;
    margin: 0 15px;
    padding: 20px;
    background: rgba(44, 76, 35, 0.2);
    border-radius: 10px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--ciclos-yellow);
}

.testimonial-name {
    font-size: 1.2em;
    color: var(--ciclos-yellow);
    margin: 0;
}

/* Music Section */
.music-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px; /* Adjusted padding for better spacing */
}

@media (max-width: 992px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .music-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.music-item {
    background: rgba(44, 76, 35, 0.3);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.music-item:hover {
    transform: translateY(-5px);
    background: rgba(44, 76, 35, 0.5);
}

.music-title {
    color: var(--ciclos-yellow);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        font-size: 80px;
    }
    
    .nav-menu {
        padding: 0 20px;
    }

    .header-container {
        justify-content: flex-end; /* Align items to the right */
        align-items: center; /* Vertically align items */
    }

    .header-container .logo {
        flex-grow: 1; /* Allow logo to take available space */
        text-align: center; /* Center the logo image */
        margin: 0; /* Remove auto margin */
        position: absolute; /* Position absolutely to center */
        left: 50%; /* Start from the middle */
        transform: translateX(-50%); /* Adjust to truly center */
    }

    .header-container .main-navigation {
        display: none; /* Hide main navigation on mobile */
        position: static; /* Remove absolute positioning */
        transform: none; /* Remove transform */
    }

    /* Show hamburger menu on mobile and reset position */
    .hamburger-menu {
        position: static; /* Reset position to be in flow */
        left: auto; /* Reset left property */
        display: block; /* Make it visible and participate in layout */
        /* Keep other properties like background, border, cursor, padding, z-index */
    }

    /* Increase SVG size on mobile */
    .hamburger-menu svg {
        width: 40px; /* Increased size for mobile */
        height: auto; /* Maintain aspect ratio */
    }

    .main-navigation.active {
        display: block; /* Show navigation when active */
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        width: 100%;
        background: white; /* Or a color that fits the design */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .main-navigation.active .nav-menu {
        flex-direction: column;
        align-items: center;
        padding: 20px 20px; /* Added horizontal padding */
    }

    .main-navigation.active .nav-menu li {
        margin: 10px 0;
    }
}

.music-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.music-embed iframe, .music-embed object, .music-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.load-more-container .cta-button {
    background: none;
    border: 2px solid var(--ciclos-yellow);
    color: var(--ciclos-yellow);
    padding: 10px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.load-more-container .cta-button:hover {
    background: var(--ciclos-yellow);
    color: var(--ciclos-green);
    transform: none;
}
/* Add this at the beginning of the file, after the theme information comment */
html {
    scroll-behavior: smooth;
}

/* Update the existing dashicons styling */
.dashicons {
    font-family: dashicons !important;
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    vertical-align: middle;
}

/* Styles for the new Login button */
.login-button {
    background: var(--ciclos-yellow);
    color: var(--ciclos-green);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block; /* Ensure padding and border-radius apply */
}

.login-button:hover {
    background: var(--ciclos-green);
    color: var(--ciclos-yellow);
}

/* Styles for smaller desktop screens (e.g., 769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    /* Removed styles related to scroll-logo-shift.js */
    .header-container.shifted {
        justify-content: flex-start; 
    }

    .header-container .logo.shift-left {
        margin-left: 0; 
        margin-right: 20px; 
        transition: margin-left 0.3s ease, margin-right 0.3s ease; 
    }

    .header-container .main-navigation {
        right: 20px; 
        transition: right 0.3s ease; 
    }

    .header-container .main-navigation.shifted {
        position: static; 
        transform: none; 
        margin-left: 0; 
    }
}
