﻿:root {
    --tab-active-bg: #094780;
    --tab-hover-color: #0D6ABF;
    --tab-color: #99c1b8;
    --tab-inactive-text: #094780;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.btn-verde {
    background-color: #3ac791;
    color: white; /* Color del texto */
    border: none;
    padding: 10px 20px; /* Ajusta según necesites */
    border-radius: 4px; /* Bordes redondeados */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transición suave */
    font-weight: 500; /* Grosor de la fuente */
}

    .btn-verde:hover {
        background-color: #3be992; /* Versión más oscura del color original */
        color: white;
    }

    /* Estilo para cuando el botón está activo (opcional) */
    .btn-verde:active {
        background-color: #5c7e33;
        transform: scale(0.98); /* Efecto de "presionado" */
    }

.contenedor-personalizado {
    /* padding: 20px 20px 20px 20px;        */
    max-width: 1480px;
}
@media (min-width: 768px) {
    .contenedor-personalizado {
        /* padding: 0 100px 0px 100px; */
    }

    button {
        width: 250px !important; /* límite para móvil */
    }
}

button {
    width: 250px; /* tamaño normal */
}

.is-invalid {
    border-color: #28a745 !important; /* Verde */
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%2328a745' viewBox='0 0 16 16'%3e%3cpath d='M7.001 2a1 1 0 0 1 .998 1l.29 5.8a1 1 0 0 1-1 1h-.578a1 1 0 0 1-1-1L6.003 3a1 1 0 0 1 .998-1zm.999 10a1.5 1.5 0 1 1-3.001 0 1.5 1.5 0 0 1 3.001 0z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.invalid-feedback {
    color: #28a745 !important; /* Mensaje también verde */
}



.pqrsd-footer {
    margin-top: auto;
}

html, body {
    margin: 0;
    padding: 0;
}

/* Tabs estilo tema */
.nav-pills .nav-link {
    color: var(--tab-inactive-text);
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

    /* Hover */
    .nav-pills .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--tab-hover-color, #000);
    }

    /* Activo */
    .nav-pills .nav-link.active {
        background-color: var(--tab-active-bg, #0d6efd);
        color: #fff;
        font-weight: 600;
    }

    /* Focus (accesibilidad) */
    .nav-pills .nav-link:focus {
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .25);
    }

.brand-text {
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

body {
    background-color: #f2f2f2;
}

.app-wrapper {
    background: #fff;
    max-width: 1880px;
    margin: 0 auto;
    min-height: 100vh;
}
/* ===============================
   HEADER / NAVBAR
================================ */

.header-navbar {
    width: 100%;
}

/* Logo */
.header-logo {
    height: 100px;
    max-width: 100%;
}

/* Contenedor texto */
.header-text {
    line-height: 1.1;
}

/* Título principal */
.header-title {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    white-space: normal;
}

/* Subtítulo */
.header-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.75;
}

/* Texto resaltado */
.header-highlight {
    color: #41A4FF;
    font-weight: 700;
}

/* ===============================
   RESPONSIVE (MÓVIL)
================================ */
@media (max-width: 576px) {

    .header-brand {
        flex-wrap: wrap;
    }

    .header-logo {
        height: 60px;
    }

    .header-text {
        width: 100%;
    }

    .header-title {
        font-size: 1.1rem;
    }

    .header-subtitle {
        font-size: 0.85rem;
        margin-top: 2px;
    }
}

/* Desktop: todo en una sola línea */
.subtitle-break {
    display: inline;
}

/* 📱 Móvil: salto de línea */
@media (max-width: 576px) {
    .subtitle-break {
        display: block;
    }
}


/* ===============================
   NAV-TABS (independiente)
================================ */
.nav-tabs .nav-link {
    color: var(--tab-inactive-text);
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    border: none; /* elimina borde default */
}

    /* Hover */
    .nav-tabs .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--tab-hover-color, #000);
    }

    /* Activo */
    .nav-tabs .nav-link.active {
        background-color: var(--tab-active-bg, #0d6efd);
        color: #fff;
        font-weight: 600;
    }

    /* Focus (accesibilidad) */
    .nav-tabs .nav-link:focus {
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .25);
    }

/* Opcional: quitar línea inferior */
.nav-tabs {
    border-bottom: none;
}

.app-header-custom {
    background: #fff;
    max-width: 1820px;
    margin: 0 auto;
    min-height: 0vh;
}

.stat-text-white {
    color: #ffffff;
    font-size: 0.95rem; /* ligeramente más pequeño = más fino */
    line-height: 1.7; /* 👈 aire entre líneas */
    letter-spacing: 0.3px; /* 👈 separación sutil de letras */
    max-width: 90%; /* evita líneas muy largas */
    margin: 0 auto;
}

.padding-lg {
    padding-right: 250px;
}

@media (max-width: 991px) {
    .padding-lg {
        padding-right: 0;
    }
}

