/* ===========================================
   Punto BanCo - Página informativa
   Colores institucionales Banco de Corrientes
   =========================================== */

/* Montserrat se carga desde /portals/0/vendor/fonts/montserrat/montserrat.css */

:root {
    --banco-azul: #003366;
    --banco-celeste: #7BB5E3;
    --banco-amarillo: #F3D600;
    --banco-text: #666666;
    --banco-bg: #f8f9fa;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-rotis: 'Rotis Sans Serif', Arial, sans-serif;
}

/* ---- Base ---- */
.punto-banco {
    font-family: var(--font-montserrat);
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

.punto-banco h1, .punto-banco h2, .punto-banco h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
}

.punto-banco h4, .punto-banco h5, .punto-banco h6 {
    font-family: var(--font-montserrat);
    font-weight: 500;
}

.punto-banco p {
    font-family: var(--font-montserrat);
}

/* ---- Decoradores ---- */
.decorator-line {
    width: 6rem;
    height: 4px;
    background-color: var(--banco-amarillo);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.decorator-line-left {
    width: 6rem;
    height: 4px;
    background-color: var(--banco-amarillo);
    margin: 0 0 2rem;
    border-radius: 2px;
}

/* ---- Section backgrounds ---- */
.section-white {
    background-color: #fff;
}

.section-gradient-yellow {
    background: linear-gradient(to right, rgba(243, 214, 0, 0.12), rgba(255, 249, 204, 0.12));
}

.section-lightblue-soft {
    background-color: rgba(123, 181, 227, 0.15);
}

.section-azul {
    background-color: var(--banco-azul);
    color: #fff;
}

/* ---- Hero Banner ---- */
/* Hero: imagen sola, sin overlay */
.hero-punto-banco {
    width: 100%;
    overflow: hidden;
}

.hero-punto-banco img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bloque de texto debajo de la imagen */
.hero-texto {
    background-color: var(--banco-azul);
    text-align: center;
    padding: 2.5rem 1rem;
}

.hero-texto h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-texto .hero-subtitle {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--banco-amarillo);
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-texto .hero-bajada {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Cards ---- */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 51, 102, 0.15) !important;
}

.icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background-color: var(--banco-azul);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-yellow {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background-color: var(--banco-amarillo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-celeste {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(123, 181, 227, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Operaciones cards ---- */
.operacion-card {
    border-top: 4px solid var(--banco-azul);
    border-radius: 0.5rem;
}

.operacion-card .card-header-custom {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.operacion-card .monto-badge {
    display: inline-block;
    background-color: rgba(243, 214, 0, 0.2);
    color: var(--banco-azul);
    font-family: var(--font-montserrat);
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pasos-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: paso;
}

.pasos-lista li {
    counter-increment: paso;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #444;
}

.pasos-lista li::before {
    content: counter(paso);
    min-width: 28px;
    height: 28px;
    background-color: var(--banco-azul);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* ---- Cómo operar: pasos grandes ---- */
.step-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background-color: var(--banco-azul);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.step-card h4 {
    font-size: 1rem;
    color: var(--banco-azul);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--banco-text);
    margin: 0;
}

/* ---- FAQ Accordion ---- */
.faq-item {
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--banco-amarillo);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 1rem;
    color: var(--banco-azul);
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: rgba(123, 181, 227, 0.08);
}

.faq-question:focus {
    outline: 2px solid var(--banco-celeste);
    outline-offset: -2px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--banco-amarillo);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.25rem 1rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--banco-text);
    margin: 0;
    line-height: 1.6;
}

/* ---- Seguridad ---- */
.seguridad-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.seguridad-item .icon-shield {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--banco-amarillo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.seguridad-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* ---- Contacto ---- */
.contacto-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.contacto-item .contacto-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: rgba(123, 181, 227, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contacto-item .contacto-text {
    font-size: 0.95rem;
    color: #444;
}

.contacto-item .contacto-text strong {
    color: var(--banco-azul);
    display: block;
    font-family: var(--font-montserrat);
    font-weight: 600;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---- Section padding ---- */
.section-padding {
    padding: 4rem 0;
}

/* ---- Nota al pie ---- */
.nota-pie {
    background-color: rgba(243, 214, 0, 0.15);
    border-left: 4px solid var(--banco-amarillo);
    padding: 0.75rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.9rem;
    color: var(--banco-text);
    margin-top: 1.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .hero-texto h1 {
        font-size: 1.8rem;
    }

    .hero-texto .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-texto .hero-bajada {
        font-size: 0.9rem;
    }

    .section-padding {
        padding: 2.5rem 0;
    }

    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }
}
