﻿
.custom-headline-title {
    text-align: center;
    font-size:1.8rem;
    margin: 30px 0 40px;
    font-weight: 700;
    color: black;
}

.custom-headline-carousel {
    perspective: 1200px;
    width: 100%;
}

/* IMPORTANT: Keep .swiper class for Swiper.js to work */
.custom-swiper {
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
}
.black
{
    color:black !important;
}
.custom-swiper-slide {
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #ebeef5;
}

.custom-slide-content {
    text-align: center;
    max-width: 500px;
    z-index: 2;
}

.custom-slide-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    background:black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.custom-swiper-slide h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: black;
}

.custom-swiper-slide p {
    color: #64748b;
    line-height: 1.6;
}

/* Pagination */
.custom-swiper-pagination {
    position: relative;
    margin-top: 20px;
}

    .custom-swiper-pagination .swiper-pagination-bullet {
        background: #6c63ff;
        opacity: 0.6;
    }

    .custom-swiper-pagination .swiper-pagination-bullet-active {
        background: #007bff;
        opacity: 1;
    }

/* Responsive */
@media (max-width: 600px) {
    .custom-swiper
    {
        height:35%;
    }
  
    .custom-swiper-slide {
        padding: 1.5rem;
    }

    .custom-slide-icon {
        font-size: 2.4rem;
    }
}

/* SCOPED COMPONENT: .cashgrow-hero */
.cashgrow-hero {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #1a1a22, #050508);
    color: #fff;
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh; /* self-contained height */
    isolation: isolate;
}

    .cashgrow-hero .hero {
        max-height: 50vh;
        width: 100%;
        max-width: 1200px;
        text-align: center;
        padding: 2rem 1.2rem;
        margin-top: 18vh;
        position: relative;
        z-index: 2;
    }

        .cashgrow-hero .hero::before {
            content: "";
            position: absolute;
            inset: -30%;
            background: radial-gradient(circle, rgba(255,211,0,0.15), transparent 60%);
            animation: pulse 6s ease-in-out infinite;
            z-index: -1;
        }

@keyframes pulse {
    0%, 100% {
        transform: scale(0.5);
        opacity: 0.6;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TEXT STYLES */
.cashgrow-hero .welcome {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #bfc3c7;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.cashgrow-hero .brand {
    font-size: clamp(3.6rem, 11vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

    .cashgrow-hero .brand span {
        color: #ffd300;
    }

.cashgrow-hero .tagline {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 800;
    color: #ff3b3b;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
}

/* BUTTON */
.cashgrow-hero .cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, #ffd300, #ffea80);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(35px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
    box-shadow: 0 20px 45px rgba(255,211,0,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .cashgrow-hero .cta:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 70px rgba(255,211,0,0.6);
    }

    .cashgrow-hero .cta span {
        animation: arrow 1.4s ease-in-out infinite;
    }

@keyframes arrow {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(7px);
    }
}

/* DECORATIVE LINES */
.cashgrow-hero .lines {
    margin-top: 2.2rem;
    display: flex;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.8s;
}

    .cashgrow-hero .lines span {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #ffd300, transparent);
    }
/* The container state */
.landing-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.8s ease-in-out, visibility 0.8s !important;
    /* Ensure children don't override the fade */
    pointer-events: none !important;
}

    /* Ensure all nested elements inherit the hidden state */
    .landing-hidden * {
        pointer-events: none;
    }

/* The active state */
.landing-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

    .landing-visible * {
        pointer-events: auto !important;
    }
/* MOBILE OPTIMIZATION */
@media (max-width: 480px) {
    .cashgrow-hero .hero::before {
        inset: -15%;
    }

    .cashgrow-hero .hero {
        margin-top: 25vh;
    }

    .cashgrow-hero .brand {
        font-size: 4.2rem;
    }

    .cashgrow-hero .tagline {
        font-size: 1.9rem;
    }

    .cashgrow-hero .cta {
        padding: 20px 52px;
        font-size: 1.05rem;
    }
}

.section-title {
    text-align: center;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 30px 0 50px;
    color: var(--primary);
}

.pricing-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    width: 100%;
    max-width: 330px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-8px);
    }

.card__outer {
    background: #ebecee;
    position: relative;
    height: 20.438rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    transition: all 0.3s ease-in-out;
}

.card__inner {
    background: #fff;
    position: absolute;
    bottom: 3.75rem;
    right: 1.25rem;
    width: calc(100% - 2.5rem);
    height: 90%;
    border-radius: 0.625rem;
    padding: 1.875rem 2.188rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

    .card__inner .title {
        text-transform: capitalize;
        font-weight: bold;
        font-size: 1rem;
        display: inline-block;
        margin-top: 0.313em;
        margin-bottom: 0.938em;
    }

    .card__inner .price {
        position: relative;
        display: inline-flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .card__inner .price--number {
        color:black;
        font-size: 3rem;
        font-weight: 600;
    }

    .card__inner .price--dolar {
        font-size: 1.1rem;
        margin-top: 0.625em;
        font-weight: 500;
    }

    .card__inner .price::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        display: block;
        background: #f5f5f5;
        height: 0.125rem;
        width: 100%;
    }

    .card__inner ul {
        margin: 0;
        padding: 0;
        list-style: none;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }

        .card__inner ul li {
            font-size: 15px;
            font-weight:600;
            font-family:'Manrope';
        }


.card:nth-child(1) .theme-font,
.card:nth-child(2) .theme-font,
.card:nth-child(3) .theme-font {
    color: #CC5803 !important;
}

.card:nth-child(4) .theme-font,
.card:nth-child(5) .theme-font,
.card:nth-child(6) .theme-font {
    color: #00ABD6 !important;
}

.card:nth-child(7) .theme-font,
.card:nth-child(8) .theme-font {
    color: black !important;
}


.card__outer a {
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

    .card__outer a svg {
        margin-left: 0.375em;
        width: 1.125rem;
    }

/* Active States & Color Themes */
.card.active .card__outer a {
    color: #fff;
}

.card.active .card__inner svg,
.card.active .card__inner .title,
.card.active .card__outer a {
    color: #fff;
}

.card:nth-child(1).active .card__outer {
    background: #CC5803;
}

.card:nth-child(2).active .card__outer {
    background: #CC5803;
}

.card:nth-child(3).active .card__outer {
    background: #CC5803;
}

.card:nth-child(4).active .card__outer {
    background: #00ABD6;
}

.card:nth-child(5).active .card__outer {
    background: #00ABD6;
}

.card:nth-child(6).active .card__outer {
    background: #00ABD6;
}

.card:nth-child(7).active .card__outer {
    background: black;
}

.card:nth-child(8).active .card__outer {
    background: black;
}

.card--purple .card__inner svg,
.card--purple .card__inner .title,
.card--purple .card__outer a {
    color: #6824d6;
}

.card--red .card__inner svg,
.card--red .card__inner .title,
.card--red .card__outer a {
    color: #fe3258;
}

.card--green .card__inner svg,
.card--green .card__inner .title,
.card--green .card__outer a {
    color: #4ccda7;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .pricing-container {
        gap: 1rem;
    }

    .card {
        max-width: 90%;
    }

    .card__inner {
        padding: 1.5rem 1.5rem;
    }

        .card__inner .price--number {
            font-size: 2.5rem;
        }
}

@media screen and (max-width: 480px) {
    .card__inner .price--number {
        font-size: 2rem;
    }

    .card__inner .title {
        font-size: 0.9rem;
    }

    .card__outer a {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}
