/* =====================
   BASE
===================== */
body {
    font-family: "Poppins", sans-serif;
    background: #f7f7f7;
    color: #333;
    line-height: 1.7;
}

/* =====================
   NAV
===================== */
.nav-blur {
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.45);
}

.navbar-brand {
    letter-spacing: 0.5px;
}

/* =====================
   HERO
===================== */
.hero-section {
    height: 90vh;
    overflow: hidden;
}

.hero-img {
    height: 90vh;
    object-fit: cover;
    filter: brightness(60%);
}

.carousel-caption {
    bottom: 20%;
}

.carousel-caption h1 {
    font-size: 3.2rem;
    text-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.carousel-caption p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: auto;
    text-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

/* =====================
   SECCIONES
===================== */
.section {
    padding: 90px 0;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #2e5e4e;
    text-align: center;
    margin-bottom: 40px;
}

/* =====================
   SOBRE NOSOTROS
===================== */
#sobre p {
    max-width: 900px;
    margin: auto;
    font-size: 1.05rem;
    color: #444;
}

/* =====================
   ACCORDION IDENTIDAD
===================== */
.accordion-item {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.accordion-button {
    font-weight: 600;
    padding: 18px;
}

.accordion-button:not(.collapsed) {
    background-color: #e8fff4;
    color: #2e5e4e;
}

/* =====================
   SERVICIOS
===================== */
.service-card {
    background: white;
    border-radius: 18px;
    border-left: 6px solid #6abf98;
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: #f3fff9;
}

/* =====================
   EQUIPO
===================== */
.team-card {
    background: white;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.card-short {
    font-weight: 500;
}

.card-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 10px;
    color: #555;
}

.team-card:hover .card-full {
    max-height: 220px;
}

/* =====================
   TECNOLOGÍA
===================== */
#tecnologia p {
    max-width: 800px;
    margin: auto;
    font-size: 1.05rem;
}

/* =====================
   WHATSAPP CTA
===================== */
.whatsapp-btn {
    background-color: #25d366;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

/* =====================
   REVEAL SCROLL
===================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    #que-es-rv {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* Centrar títulos visibles del accordion (Bootstrap 5) */
#metodosRecarga .accordion-button {
    justify-content: center;
}

#metodosRecarga .accordion-button::after {
    position: absolute;
    right: 1.25rem;
}
#que-es-rv h5 {
    text-align: justify;
}
.link-estudios {
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
}

.link-estudios:hover {
    color: #0d6efd;
}
.evidence-link {
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #198754;
    padding-bottom: 2px;
    color: #198754;
    transition: all 0.3s ease;
}

.evidence-link span {
    font-size: 0.85em;
    margin-left: 4px;
}

.evidence-link:hover {
    color: #145c32;
    border-bottom-color: #145c32;
}
.accordion-button {
  font-weight: 600;
}

.accordion-body p {
  margin-bottom: 0.6rem;
  text-align: justify;
}

