/* Rodapé */
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid #222; /* Linha sutil */
    font-size: 0.9em;
}

/* Ajustes Responsivos Básicos */
@media (max-width: 768px) {
    section h2 {
        font-size: 2em;
        margin-bottom: 40px;
        text-align: start;
    }

    .hero-section h2 {
        font-size: 3em;
        text-align: start;
    }

    .hero-section p {
        font-size: 1em;
        text-align: start;
    }

    .modalidades-grid {
        /* Adjust columns for medium screens if needed, e.g., 2 or 3 columns */
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Slightly smaller min size */
        gap: 20px;
    }

    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 24px;
    }

    .social-icons {
        padding: 15px 0;
    }

    .partnership-content {
        gap: 20px;
    }

    .header .desktop-banner {
        display: none;
    }
    
    .header .mobile-banner {
        display: block;
    }

    .social-icons-container {
        gap: 20px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .partnership-image img {
        max-width: 100%;
    }
}

/* Media query for larger screens to enforce exactly 4 columns */
/* Using 1024px as the breakpoint for "large" screens */
@media (min-width: 1024px) {
    .modalidades-grid {
        /* Explicitly set 4 columns */
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
     .hero-section h2 {
        font-size: 2.5em;
    }

    section h2 {
        font-size: 1.8em;
    }

     .modalidades-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on very small screens */
        gap: 15px;
    }

     .modalidade-item h3 {
        font-size: 1.3em;
     }

     .modalidade-item button {
        padding: 10px 20px;
        font-size: 0.8em;
     }

    .product-card {
        width: 100%;
    }
    
    .product-image-container {
        height: 400px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
    
    .whatsapp-tooltip {
        width: 200px;
        bottom: 60px;
        font-size: 12px;
        right: -10px;
    }

    .sidemenu {
        width: 250px;
    }
    
    .sidemenu-nav a {
        font-size: 13px;
    }
    
    .sidemenu-nav a svg {
        width: 16px;
        height: 16px;
    }
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    justify-content: center;
    margin-top: 7px;
    align-items: center;
}

.navbar-logo a {
    display: block;
}

.navbar-logo img {
    height: 32px;
    width: auto;
}

/* Sidemenu Styles */
.sidemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1020;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.sidemenu.active {
    transform: translateX(0);
}

.sidemenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1015;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sidemenu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidemenu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidemenu-close {
    cursor: pointer;
    font-size: 24px;
    color: #999;
    transition: color 0.3s;
}

.sidemenu-close:hover {
    color: #333;
}

.sidemenu-content {
    padding: 20px;
}

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

.sidemenu-nav li {
    margin-bottom: 15px;
}

.sidemenu-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

.sidemenu-nav a:hover {
    color: #000;
}

.sidemenu-nav a.highlight {
    color: #000;
    font-weight: 600;
}

.sidemenu-nav a svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.sidemenu-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1010;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
}

/* Social Icons Section */
.social-icons {
    background-color: #000000;
    padding: 28px 0;
    text-align: center;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #000;
}

.social-icon:hover svg {
    fill: #fff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #000;
    transition: fill 0.3s;
}

/* Partnership Section */
.partnership-section {
    background-color: #010101;
    color: #fff;
}

.partnership-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.partnership-text {
    flex: 1;
    min-width: 300px;
}

.partnership-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.partnership-image img {
    max-width: 100%;
    height: auto;
    transition: max-width 0.3s ease;
}

/* Social Media Section */
.social-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.social-feeds {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.social-feed {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    height: 400px;
    background-color: #fff;
    border: 1px solid rgb(22 24 35 / 12%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sponsors Section */
.sponsors-section {
    background-color: #F3F4F6;
    padding: 40px 0;
    text-align: center;
}

.sponsors-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sponsors-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.sponsor-item {
    background-color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sponsor-item svg {
    max-height: 47px;
    max-width: 100%;
}

/* Footer Section */
.footer {
    background-color: #fff;
    color: #333;
    padding: 40px 0 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.footer-menu, .footer-social {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 200px;
}

.menu-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.footer-menu ul, .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #000;
}

.social-inner ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.social-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-text {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* Tooltip styles for WhatsApp button */
.whatsapp-tooltip {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 14px;
    line-height: 1.4;
    z-index: 99;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 25px;
    margin-left: -5px;
    border-width: 8px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Popup Overlay Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #000;
}

.popup-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-icon svg {
    width: 30px;
    height: 30px;
    fill: #00b300;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.popup-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.popup-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-button:hover {
    background-color: #333;
}

/* Sponsors Section */
.sponsors-section {
    background-color: #F3F4F6; /* Mantido o cinza claro consistente */
    padding: 40px 0;
    text-align: center;
}

/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Social Section */
.social-section {
    background-color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Basic styles for the WhatsApp Landing Page features */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica World', Montserrat, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth; /* For smooth scrolling to anchors */
    scroll-padding-top: 100px; /* Ensures scrolling to anchors accounts for fixed navbar */
}

body {
    font-family: 'Montserrat', Helvetica, sans-serif;
    background-color: #fff;
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Enhanced header styling with greater prominence */
header {
    text-align: center;
    padding: 220px 0 140px; /* Significantly increased padding for an even larger header area */
    background: #000000 url('assets/header3.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    margin-top: 76px; /* To account for the fixed navbar */
}

/* Add a dark overlay to ensure text readability on the background image */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Slightly lighter overlay for better image visibility */
    z-index: 1;
}

header h1, header p {
    position: relative;
    z-index: 2; /* Make sure text appears above the overlay */
    max-width: 1000px; /* Increased max-width for more prominence */
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    font-size: 60px; /* Significantly increased font size */
    font-weight: 800;
    margin-bottom: 40px; /* Increased space between header and paragraph */
    text-transform: uppercase;
    letter-spacing: 2px; /* Increased letter spacing for greater impact */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6); /* Stronger shadow for better visibility */
    line-height: 1.2; /* Better line height for larger text */
}

header p {
    font-size: 28px; /* Increased font size */
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Stronger shadow for better visibility */
    margin-bottom: 30px; /* Add more space below the paragraph */
    max-width: 800px; /* Slightly constrained width for better readability */
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for the enhanced header */
@media (max-width: 992px) {
    header {
        padding: 180px 0 120px;
    }
    
    header h1 {
        font-size: 48px;
    }
    
    header p {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 160px 0 100px;
    }
    
    header h1 {
        font-size: 42px;
        letter-spacing: 1.5px;
    }
    
    header p {
        font-size: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 140px 0 80px;
    }
    
    header h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    header p {
        font-size: 18px;
        padding: 0 15px;
    }
}

/* Container styling */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Feature section styling */
.feature {
    padding: 60px 0;
    position: relative;
    scroll-margin-top: 100px; /* Increased from 90px to provide more space above section when scrolling */
    transition: box-shadow 0.3s ease;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
    left: 0;
    right: 0;
}

/* Alternating background colors for feature sections */
.feature:nth-child(even) {
    background-color: #fff;
}

.feature:nth-child(odd) {
    background-color: #F3F4F6;
}

.feature h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: start;
    position: relative;
    padding-bottom: 15px;
}

/* Individual feature section styling - similar to the modalidades from quem-somos-LP */
/* Each section has a unique left border color for visual distinction */

#jogos-ao-vivo {
    position: relative;
    overflow: hidden;
}


#campeonato-clipadores {
    position: relative;
    overflow: hidden;
}

#calendario {
    position: relative;
    overflow: hidden;
}



#lojinha {
    position: relative;
    overflow: hidden;
}



#esports-news {
    position: relative;
    overflow: hidden;
}



#criadores-streamers {
    position: relative;
    overflow: hidden;
}



#furia-cash {
    position: relative;
    overflow: hidden;
}



#bate-papo {
    position: relative;
    overflow: hidden;
}

/* Feature section hover effects */
.feature {
    transition: box-shadow 0.3s ease;
}

.feature:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Add the interactive example elements for WhatsApp chat simulation */
.chat-container {
    max-width: 100%;
    margin: 30px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.chat-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.chat-name {
    font-weight: 600;
}

.chat-messages {
    padding: 15px;
    background-color: #E5DDD5;
    max-height: 300px;
    overflow-y: auto;
}

.message {
    max-width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 7.5px;
    position: relative;
    clear: both;
}

.message.received {
    background-color: white;
    float: left;
}

.message.sent {
    background-color: #DCF8C6;
    float: right;
}

.message-time {
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-top: 5px;
}

.message:after {
    content: "";
    display: table;
    clear: both;
}

/* Add a CTA button in the style of FURIA branding */
.cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 25px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
    .feature {
        padding: 40px 0;
    }
    
    .feature h2 {
        font-size: 20px;
    }
    
    header {
        padding: 100px 0 40px;
    }
    
    header h1 {
        font-size: 28px;
    }
    
    header p {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 30px 0;
    }
    
    .feature h2 {
        font-size: 18px;
    }
    
    header {
        padding: 90px 0 30px;
    }
    
    header h1 {
        font-size: 24px;
    }
    
    .chat-container {
        margin: 20px 0;
    }
}

/* Features grid layout for larger screens */
@media (min-width: 992px) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid .feature {
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 0;
        margin-bottom: 0;
        /* Keep the background color alternation even in grid mode */
    }
}
/* CTA Section */
.cta-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Add WhatsApp screenshot examples styling */
.whatsapp-example {
    margin: 25px 0;
    text-align: center;
}

.whatsapp-screenshot {
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* Responsive adjustments for WhatsApp screenshots */
@media (max-width: 480px) {
    .whatsapp-screenshot {
        max-width: 240px;
    }
}

/* Feature section styling with flex layout for side-by-side content */
.feature .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* Text content container */
.feature-content {
    flex: 1;
    min-width: 300px;
}

/* WhatsApp screenshot examples styling - default positioning */
.whatsapp-example {
    flex: 0 0 auto;
    margin: 0;
    text-align: center;
}

/* Alternating image positions - left for odd sections, right for even sections */
.feature:nth-child(odd) .whatsapp-example {
    order: -1; /* Image appears first (on the left) */
}

.feature:nth-child(even) .whatsapp-example {
    order: 1; /* Image appears last (on the right) */
}

.whatsapp-screenshot {
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* Responsive adjustments for WhatsApp screenshots */
@media (max-width: 768px) {
    .feature .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .whatsapp-example {
        margin: 15px 0;
        order: -1 !important; /* Force images to appear first on mobile regardless of section */
    }
}

/* Responsive adjustments for WhatsApp screenshots */
@media (max-width: 768px) {
    .feature .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .whatsapp-example {
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-screenshot {
        max-width: 240px;
    }
}

/* FURIA WhatsApp Button styling */
.whatsapp-button {
    display: inline-flex;
    background-color: #000000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    width: 160px; /* Fixed width for consistency */
    margin-left: auto;
    margin-right: auto;
}

/* Container for the button to allow centering */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.whatsapp-button:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-button svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: #fff;
}

/* Responsive adjustments for button */
@media (max-width: 480px) {
    .whatsapp-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Feature section animation styles */
.feature {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation delays for alternating sections */
.feature:nth-child(odd) .whatsapp-example {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.feature:nth-child(even) .whatsapp-example {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.feature.animate .whatsapp-example {
    opacity: 1;
    transform: translateX(0);
}

.feature .feature-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
}

.feature.animate .feature-content {
    opacity: 1;
    transform: translateY(0);
}

/* Add a subtle scale effect to the buttons when the section becomes visible */
.feature .button-container {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.6s;
}

.feature.animate .button-container {
    opacity: 1;
    transform: scale(1);
}
