/* --- DADME CUSTOM FRONT-END REDESIGN (VIBRANT LINKTREE CLONE) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;700;800;900&display=swap');

:root {
    --clr-bg-global: #ffffff;
    --clr-text-global: #333333;
    --clr-heading-global: #111111;
    --clr-nav-bg: #ffffff;

    /* Vivid Section Colors */
    --clr-hero-bg: #ffffff;
    /* Clean White */
    --clr-hero-text: #111111;
    /* Black */
    --clr-sec-music: #2563EB;
    /* Bright Blue */
    --clr-sec-store: #FDE047;
    /* Bright Yellow */
    --clr-sec-events: #7C3AED;
    /* Royal Purple */
    --clr-sec-checkout: #F3F4F6;
}

/* OVERRIDES FOR TEMPLATE */
body {
    background-color: var(--clr-bg-global) !important;
    background-image: none !important;
    color: var(--clr-text-global) !important;
    font-family: 'Inter', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--clr-heading-global) !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -0.03em !important;
}

/* NAV ADJUSTMENT for Light/Vibrant theme */
.header-main {
    backdrop-filter: none !important;
    border-bottom: none !important;
}

.header-menu nav ul li a {
    color: var(--clr-hero-text) !important;
    font-weight: 600 !important;
}

/* NEW VIBRANT HERO SECTION */
.hero-section {
    padding: 200px 0 60px 0;
    overflow: hidden;
    position: relative;
    color: var(--clr-hero-text);
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 85px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--clr-hero-text) !important;
    letter-spacing: -3px !important;
}

.hero-subtitle {
    font-size: 24px;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.4;
    color: var(--clr-hero-text);
    font-weight: 500;
}

/* ============================================
   ESTILOS PARA CAPTURAS DE ESCRITORIO (lado a lado)
   ============================================ */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.desktop-screenshot {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    flex: 1;
}

.desktop-screenshot:hover {
    transform: translateY(-4px) scale(1.02);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 300px;
    background: transparent;
}

/* Para pantallas grandes */
@media (min-width: 1200px) {
    .hero-visual-row {
        max-width: 750px;
        gap: 25px;
    }

    .screenshot-img {
        max-height: 340px;
    }
}

/* Para tablets */
@media (max-width: 992px) {
    .hero-visual-row {
        max-width: 550px;
        gap: 15px;
    }

    .screenshot-img {
        max-height: 220px;
    }
}

/* Para móviles */
@media (max-width: 768px) {
    .hero-visual-row {
        flex-direction: column;
        max-width: 100%;
        gap: 15px;
    }

    .screenshot-img {
        max-height: 200px;
    }

    .desktop-screenshot {
        border-radius: 12px;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* BUTTONS */
.lt-btn,
.btn-whatsapp,
.btn-primary-custom,
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #111111, #333333);
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #000;
}

.btn-secondary-custom {
    background-color: transparent;
    color: #111 !important;
    border: 2px solid #ddd;
    margin-left: 16px;
}

.btn-secondary-custom:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
    border-color: #bbb;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff !important;
    gap: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* VIBRANT LINKTREE SECTIONS */
.lt-showcase {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.lt-music {
    background-color: var(--clr-sec-music);
    color: #fff;
}

.lt-store {
    background-color: var(--clr-sec-store);
    color: #000;
}

.lt-events {
    background-color: var(--clr-sec-events);
    color: #fff;
}

.lt-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.lt-grid.reverse {
    flex-direction: row-reverse;
}

.lt-text {
    flex: 1;
}

.lt-text h2 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: inherit !important;
    letter-spacing: -2px !important;
}

.lt-text p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.4;
    color: inherit !important;
    font-weight: 500;
}

.lt-btn.btn-music-action {
    background-color: #E91E63;
    color: #FFF !important;
}

.lt-btn.btn-music-action:hover {
    background-color: #D81B60;
    transform: translateY(-4px);
}

.lt-btn.btn-store-action {
    background-color: #000;
    color: #FFF !important;
}

.lt-btn.btn-store-action:hover {
    transform: translateY(-4px);
}

.lt-btn.btn-events-action {
    background-color: #34D399;
    color: #000 !important;
}

.lt-btn.btn-events-action:hover {
    background-color: #10B981;
    transform: translateY(-4px);
}

/* FLOATING 3D MOCKUPS */
.lt-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.mockup-container {
    position: relative;
    width: 250px;
    height: 500px;
    transform: rotateY(-15deg) rotateX(10deg);
    transform-style: preserve-3d;
    animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
    0% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateY(-10deg) rotateX(15deg) translateY(-20px);
    }

    100% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    }
}

.lt-grid.reverse .mockup-container {
    transform: rotateY(15deg) rotateX(10deg);
    animation: float3DReverse 6s ease-in-out infinite;
}

@keyframes float3DReverse {
    0% {
        transform: rotateY(15deg) rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateY(10deg) rotateX(15deg) translateY(-20px);
    }

    100% {
        transform: rotateY(15deg) rotateX(10deg) translateY(0);
    }
}

.mockup-phone {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 40px;
    border: 8px solid #111;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Screens */
.phone-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
}

.music-screen {
    background-image: linear-gradient(0deg, #ee9ca7 0%, #ffdde1 100%);
}

.store-screen {
    background-color: #f4f4f5;
}

.events-screen {
    background-image: linear-gradient(to right, #b21f1f, #fdbb2d);
}

/* Floating Elements around phone */
.floating-pill {
    position: absolute;
    background: #fff;
    color: #000;
    padding: 16px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.pill-pos-1 {
    top: 20%;
    left: -60px;
    transform: translateZ(50px);
    animation: bob 4s infinite 0.5s;
}

.pill-pos-2 {
    top: 60%;
    right: -80px;
    transform: translateZ(80px);
    animation: bob 5s infinite 1s;
}

.pill-pos-3 {
    bottom: 15%;
    left: -40px;
    transform: translateZ(60px);
    animation: bob 3.5s infinite 0s;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #1DB954;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    top: -20px;
    right: -40px;
    transform: translateZ(100px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: bob 4s infinite 0.2s;
}

@keyframes bob {

    0%,
    100% {
        transform: translateZ(50px) translateY(0);
    }

    50% {
        transform: translateZ(50px) translateY(-15px);
    }
}

/* CHECKOUT SECTION */
.checkout-section {
    padding: 100px 0;
    background-color: var(--clr-sec-checkout);
}

.checkout-card {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.checkout-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111 !important;
}

.checkout-text p {
    font-size: 20px;
    max-width: 500px;
    color: #333 !important;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--clr-heading-global) !important;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    font-size: 20px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-heading-global);
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 16px;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    font-size: 18px;
    color: var(--clr-text-global);
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px 30px;
    max-height: 1000px;
}

/* SUPPORT SECTION */
.support-section {
    padding: 60px 0 100px;
    background-color: #fafafa;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 991px) {

    .lt-grid,
    .lt-grid.reverse {
        flex-direction: column;
        text-align: center;
    }

    .lt-text h2 {
        font-size: 48px;
    }

    .lt-visual {
        height: 400px;
    }

    .mockup-container {
        width: 200px;
        height: 400px;
    }

    .floating-pill {
        font-size: 12px;
        padding: 10px 16px;
    }

    .pill-pos-1 {
        left: -40px;
    }

    .pill-pos-2 {
        right: -50px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: -20px;
    }

    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 16px;
    }
}