﻿







/* Estilos para el formulario de contacto (solo móviles) */
.contact-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: block; /* Visible por defecto */
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(150, 100, 100, 0.2);
}

    .contact-form-section h2 {
        color: #3068f6;
        margin-bottom: 25px;
        font-size: 1.8rem;
        text-align: center;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #555555;
        font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 1rem;
        transition: all 0.3s ease-in-out;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
        }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

.submit-btn {
    background: linear-gradient(90deg, #3068f6, #1d207b);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
    font-size: 1rem;
    margin-top: 10px;
}

    .submit-btn:hover {
        background: linear-gradient(90deg, #4a80fd, #3a3f9e);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(150, 100, 100, 0.2);
    }

    .submit-btn i {
        margin-right: 8px;
    }

/* Ocultar formulario en escritorio */
@media (min-width: 769px) {
    .contact-page-container {
        display: none;
    }
}

/* Mostrar formulario en móviles */
@media (max-width: 768px) {
    .contact-page-container {
        display: block;
    }
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
}
.hero-section {
    background-image: url('https://cdn.pixabay.com/photo/2020/07/11/23/36/meeting-5395615_1280.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    height: 90vh; /* Changed from fixed height to viewport height */
    max-height: 800px; /* Added maximum height */
    min-height: 600px; /* Added minimum height */
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 50, 200, 0.7), rgba(0, 100, 250, 0.7));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.abstract-circle {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
}

.large-circle {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    opacity: 0.1;
}

.medium-circle {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -75px;
    opacity: 0.15;
}

.small-circle {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

/*************************************/

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 80px 0;
    }

    .notification {
        top: 80px;
        right: 20px;
        min-width: 180px;
    }

    .large-circle {
        width: 300px;
        height: 300px;
    }

    .medium-circle {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .notification {
        top: 70px;
        right: 10px;
        padding: 0.8rem 1rem;
        min-width: 160px;
    }
}
:root {
    --primary-blue: #2563eb;
    --blue-dark: #1e40af;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #d1d5db;
    --white: #ffffff;
    --soft-gray: #f9fafb;
    --accent-purple: #8b5cf6;
    --text-heading: #1a202c;
    --text-body: #4a5568;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: var(--soft-gray);
    color: var(--text-body);
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-1 {
    animation-delay: 0.2s;
}

.fade-in-2 {
    animation-delay: 0.4s;
}

.fade-in-3 {
    animation-delay: 0.6s;
}

.fade-in-4 {
    animation-delay: 0.8s;
}

.fade-in-5 {
    animation-delay: 1.0s;
}

.rotate-circle {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scale-up {
    animation: scaleUp 1s ease-out forwards;
    transform: scale(0.9);
    opacity: 0;
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.scale-up-delay {
    animation-delay: 0.5s;
}

.btn-hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background-color: #222;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.phone-bezel {
    width: 100%;
    height: 100%;
    border: 2px solid #333;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .phone-screen::-webkit-scrollbar {
        display: none;
    }

.app-content {
    padding: 1rem;
    background-color: var(--soft-gray);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}


.profile-pic {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
}



.bank-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
    border-radius: 1.5rem;
    padding: 1.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .bank-card:hover {
        transform: translateY(-5px);
    }

    .bank-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 70%);
        transform: rotate(45deg);
    }

.bank-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.card-type {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.balance {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
}

    .balance small {
        font-size: 0.6em;
        margin-left: 0.5rem;
        opacity: 0.8;
    }

.card-number {
    font-size: 0.8rem;
    opacity: 0.8;
}

.card-logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

    .card-logo::before {
        content: 'L';
        font-weight: bold;
    }

.section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.avatar-list {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.avatar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

    .avatar-item img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--primary-blue);
        margin-bottom: 0.3rem;
        transition: transform 0.3s ease;
    }

        .avatar-item img:hover {
            transform: scale(1.1);
        }

    .avatar-item p {
        font-size: 0.75rem;
        color: var(--dark-gray);
    }

.add-person {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--medium-gray);
    border: 2px dashed var(--medium-gray);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .add-person:hover {
        background-color: var(--primary-blue);
        border-color: var(--primary-blue);
        color: var(--white);
    }

.transaction-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .transaction-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 0.8rem;
    color: var(--primary-blue);
}

.transaction-details {
    flex-grow: 1;
}

    .transaction-details .company {
        font-weight: 500;
        font-size: 0.9rem;
    }

    .transaction-details .date {
        font-size: 0.75rem;
        color: var(--medium-gray);
    }

.transaction-amount {
    font-weight: 600;
    font-size: 0.9rem;
}

.amount-negative {
    color: #ef4444;
}

.amount-positive {
    color: #22c55e;
}


.login-screen {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

    .login-screen .logo-large {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    .login-screen h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .login-screen p {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 2rem;
    }

    .login-screen .input-group {
        width: 100%;
        margin-bottom: 1rem;
        text-align: left;
    }

        .login-screen .input-group label {
            display: block;
            font-size: 0.8rem;
            margin-bottom: 0.3rem;
            color: var(--light-gray);
        }

        .login-screen .input-group input {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(0, 0, 0, 0.3);
            color: var(--white);
            font-size: 0.9rem;
            outline: none;
        }

            .login-screen .input-group input::placeholder {
                color: rgba(255, 255, 255, 0.5);
            }

    .login-screen .btn-login {
        width: 100%;
        padding: 0.8rem 1.5rem;
        background-color: var(--primary-blue);
        color: var(--white);
        border-radius: 0.75rem;
        font-weight: 600;
        margin-top: 1.5rem;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

        .login-screen .btn-login:hover {
            background-color: var(--blue-dark);
            transform: translateY(-2px);
        }

.notification {
    position: absolute;
    top: 25%;
    right: 15%;
    background-color: var(--accent-purple);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(150%);
    opacity: 0;
    z-index: 1000;
    animation: showNotification 5s ease-in-out forwards;
    min-width: 200px;
}

.notification-icon {
    font-size: 1.8rem;
    color: var(--white);
}

.notification-content h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.notification-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes showNotification {
    0% {
        transform: translateX(150%);
        opacity: 0;
    }

    10% {
        transform: translateX(0);
        opacity: 1;
    }

    90% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(150%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin-bottom: 2rem;
    }

    .notification {
        top: 10%;
        right: 50%;
        transform: translateX(50%);
        animation: showNotificationMobile 5s ease-in-out forwards;
    }

    @keyframes showNotificationMobile {
        0% {
            transform: translateX(150%);
            opacity: 0;
        }

        10% {
            transform: translateX(50%);
            opacity: 1;
        }

        90% {
            transform: translateX(50%);
            opacity: 1;
        }

        100% {
            transform: translateX(150%);
            opacity: 0;
        }
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .bank-card .balance {
        font-size: 2em;
    }
}

.analytics-screen {
    padding: 1rem;
    background-color: var(--soft-gray);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

    .analytics-screen .title-text {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--dark-gray);
    }

.balance-display {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .balance-display:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .balance-display .amount {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }

    .balance-display .period {
        font-size: 0.9rem;
        color: var(--medium-gray);
    }

    .balance-display .graph {
        height: 80px;
        background-color: #e0e7ff;
        border-radius: 0.5rem;
        margin-top: 1rem;
        position: relative;
        overflow: hidden;
    }

        .balance-display .graph::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background-color: var(--primary-blue);
            border-radius: 0.5rem;
            animation: fillGraph 1.5s ease-out forwards 1s;
        }

@keyframes fillGraph {
    from {
        height: 0%;
    }

    to {
        height: 78%;
    }
}

.category-list .category-item {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-item .category-info .name {
    font-weight: 500;
    font-size: 0.9rem;
}

.category-item .category-info .amount {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.category-item .category-percentage {
    font-weight: 600;
    color: var(--primary-blue);
}

.feature-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.11s ease;
    cursor: pointer;
}

    .feature-card:hover {
        transform: translateY(-33px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .feature-card .feature-number {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-blue);
        opacity: 0.5;
        transition: color 0.3s ease, opacity 0.3s ease;
    }


    .feature-card h3 {
        color: var(--text-heading);
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        color: var(--text-body);
    }
    
/* Estilos para el video */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

    .video-container video {
        width: 100%;
        display: block;
    }

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.video-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

