/* app.css **/

:root {
    --primary-color: #2b3a67;
    --accent-color: #ff6b6b;
    --bg-body: #ffffff;
    --bg-hero: linear-gradient(135deg, #fff 0%, #eef2f7 100%);
    --bg-card: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --border-color: #eee;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar {
    background-color: rgba(244, 235, 251, 0.81);
    /*background-color: var(--nav-bg);*/
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: 2px 2px 25px #45454542;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    letter-spacing: -1px;
}

.nav-link {
    color: var(--text-main) !important;
}

.hero {
    padding: 120px 0 80px;
    background: var(--bg-hero);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /*color: var(--primary-color);*/
}

.emoji-container {
    position: relative;
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-emoji {
    position: absolute;
    font-size: 20rem;
    opacity: 0;
    display: none;
    user-select: none;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

.hero-emoji.active {
    display: block;
    opacity: 1;
    animation: emojiPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.feature-card {
    border-radius: 16px;
    padding: 30px;
    background: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #1f77fc;
    /*color: var(--accent-color);*/
    margin-bottom: 20px;
    display: inline-block;
}

.pet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
    gap: 15px;
    justify-content: center;
}

.pet-item {
    font-size: 2rem;
    background: var(--bg-card);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.pet-item:hover {
    transform: scale(1.3) translateY(-10px);
    background-color: #9d39de;
    /*background-color: var(--accent-color);*/
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
    z-index: 10;
}

.app-preview {
    background-color: #4515a7;
    color: white;
    padding: 80px 0;
    /*border-radius: 40px 40px 0 0;*/
}

.mockup-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn {
    box-shadow: 2px 2px 25px #45454578;
    border-color: transparent;
}

.btn:hover {
    border-color: transparent;
}

.btn-primary {
    background-color: #3629be;
    /*background-color: #1e74fa;*/
    /*background-color: var(--primary-color);*/
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
}

.theme-toggle,
.lang-toggle {
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

.lang-toggle:hover {
    color: var(--accent-color);
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-light {
    background-color: var(--bg-card) !important;
}

.pricing-banner {
    background: var(--bg-hero);
    border-radius: 30px;
    /*border: 2px solid var(--accent-color);*/
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-banner:hover {
    transform: scale(1.02);
}

.price-tag {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.price-currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 5px;
}

.btn-buy {
    background-color: #4515a7;
    color: white;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: #2f0e71;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.video-modal-custom {
    max-width: 90vw !important;
    margin: 1.75rem auto;
}

footer {
    background: #4515a7;
    color: #e0e0e0;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
}

@keyframes emojiPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

    .hero-emoji {
        font-size: 10rem;
    }

    .emoji-container {
        height: 250px;
    }

    .price-tag {
        font-size: 4rem;
    }

    footer {
        background: #4515a7;
        color: #e0e0e0;
        padding: 40px 0;
        text-align: center;
    }

    nav .btn-primary {
        width: 100% !important;
    }

    .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgb(142, 54, 219) !important;
}

.navbar-toggler,
.navbar-toggler:focus {
    border: none !important;
}

#features {
    background: linear-gradient(#ab3ade,#1c72f9);
}

#features .fw-bold.mb-5 {
    color:white;
}


/* Donate */
.hero-download {
    text-align: center;
    /*padding: 80px 0;*/
}

.hero-download .logo {
    height: 80px;
    margin-bottom: 20px;
}

.donation-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.donation-card:hover {
    transform: translateY(-5px);
}

.donation-amount {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
    color: #b53bdd;
}

.btn-donate {
    background-color: #b53bdd;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    width: 100%;
}

.btn-donate:hover {
    background-color: #9c2fcc;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.impact-box {
    text-align: center;
    padding: 20px;
}


/* Macos */
.statix-install {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #2c2c2c;
}

.statix-install h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.statix-install .intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.step-number {
    background: #007aff;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
}

.step-card ol {
    padding-left: 20px;
    margin-top: 10px;
}

.step-card li {
    margin-bottom: 6px;
}

.step-img {
    text-align: center;
    margin-top: 15px;
}

.step-img img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid #eaeaea;
}

.note-box {
    background: #f5f9ff;
    border-left: 4px solid #007aff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    color: #444;
}

.success-box {
    text-align: center;
    background: #f0fff5;
    border: 1px solid #c6f6d5;
    padding: 20px;
    border-radius: 16px;
    margin-top: 30px;
}

.success-box h3 {
    margin-bottom: 10px;
}


/* Galley M */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}

/* Botones navegación */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Botón cerrar */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.masonry-gallery {
    column-count: 4;
    column-gap: 1rem;
}

.masonry-gallery img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.masonry-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .masonry-gallery {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-gallery {
        column-count: 1;
    }
}


/*   */
/* download.css **/
:root {
    --primary-color: #2b3a67;
    --accent-color: #ff6b6b;
    --bg-body: #ffffff;
    --bg-hero: linear-gradient(135deg, #fff 0%, #eef2f7 100%);
    --bg-card: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --border-color: #eee;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
}

.hero-download {
    padding: 120px 0 60px;
    background: var(--bg-hero);
    text-align: center;
}

.hero-download h1 {
    font-size: 3rem;
    font-weight: 800;
    /*color: var(--primary-color);*/
}

.hero-download p {
    color: var(--text-muted);
}

.download-section {
    padding: 60px 0 100px;
    background: linear-gradient(#ab3ade,#1c72f9);
}

.platform-card {
    border-radius: 20px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    /*color: var(--accent-color);*/
    color: #8c36da;
}

.btn-download {
    background-color: #4515a7;
    color: white;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.btn-download:hover {
    background-color: #2f0e71;
    color: white;
}

.logo {
    height: 50px;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    footer {
        background: #4515a7;
        color: #e0e0e0;
        padding: 40px 0;
        text-align: center;
    }
}