@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  color: #212529;
  background-color: #f8f9fa;
  font-family: "Segoe UI", sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 3rem;
}

footer {
  margin-top: auto;
}

.navbar {
  background-color: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-brand img {
  width: 100px;
  height: 60px;
}
.navbar .navbar-brand span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.navbar .navbar-nav {
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}
.navbar .navbar-nav .nav-link {
  font-size: 1rem;
  color: #212529;
  transition: 0.3s;
}
.navbar .navbar-nav .nav-link:hover {
  color: #667eea;
  font-weight: 500;
}
.navbar .navbar-nav .nav-link.active {
  color: #fff !important;
  background-color: #667eea;
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 600;
}
.navbar .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #667eea;
}
.navbar .btn-login {
  color: #667eea;
  border-color: #667eea;
  font-weight: bold;
  margin-left: 1rem;
  transition: 0.3s;
}
.navbar .btn-login:hover {
  background-color: #667eea;
  color: #fff;
}
.navbar .navbar-collapse {
  display: none;
}
.navbar .navbar-toggler {
  display: none;
  border: 1px solid rgba(102, 126, 234, 0.2);
  background-color: transparent;
  padding: 0.5rem;
  border-radius: 4px;
}

@media (max-width: 375px) {
  .navbar .navbar-brand img {
    height: 40px;
  }
  .navbar .navbar-brand span {
    font-size: 0.8rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 425px) {
  .navbar .container-fluid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
  }
  .navbar .navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .navbar .navbar-brand img {
    height: 45px;
    width: auto;
    margin-bottom: 0.25rem;
  }
  .navbar .navbar-brand span {
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    max-width: 90%;
  }
  .navbar .navbar-toggler {
    display: block !important;
    margin-top: 0.5rem;
  }
  .navbar .navbar-collapse {
    display: none !important;
  }
  .navbar .btn-login {
    font-size: 0.9rem;
    padding: 4px 10px;
    margin-top: 0.5rem;
  }
}
@media (max-width: 320px) {
  .navbar .navbar-brand img {
    height: 35px;
  }
  .navbar .navbar-brand span {
    font-size: 0.8rem;
    max-width: 100%;
  }
}
@media (min-width: 425px) and (max-width: 767px) {
  .navbar .container-fluid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .navbar .navbar-brand {
    display: flex;
    align-items: center;
  }
  .navbar .navbar-brand img {
    height: 45px;
  }
  .navbar .navbar-brand span {
    font-size: 1rem;
    margin-left: 0.5rem;
    white-space: nowrap;
  }
  .navbar .navbar-toggler {
    display: block !important;
  }
  .navbar .navbar-collapse {
    display: none !important;
  }
  .navbar .btn-login {
    font-size: 0.9rem;
    padding: 4px 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
  }
  .navbar .navbar-brand {
    justify-content: center;
    margin: 0 auto;
  }
  .navbar .navbar-brand img {
    height: 50px;
  }
  .navbar .navbar-brand span {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
  .navbar .navbar-toggler {
    display: block;
  }
  .navbar .navbar-collapse {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1023px) {
  .navbar .navbar-toggler {
    display: none !important;
  }
  .navbar .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 0;
  }
  .navbar .navbar-nav {
    flex-direction: row;
    gap: 1.5rem;
  }
  .navbar .btn-login {
    margin-left: 1.5rem;
    font-size: 1rem;
    padding: 6px 12px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .navbar .container-fluid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
  }
  .navbar .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .navbar .navbar-brand img {
    height: 55px;
  }
  .navbar .navbar-brand span {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    white-space: nowrap;
  }
  .navbar .navbar-toggler {
    display: none !important;
  }
  .navbar .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 0;
    margin-left: 2rem;
  }
  .navbar .navbar-nav {
    flex-direction: row;
    gap: 1.5rem;
  }
  .navbar .btn-login {
    margin-left: 1.5rem;
    font-size: 1rem;
    padding: 6px 12px;
  }
}
@media (min-width: 1440px) and (max-width: 2559px) {
  .navbar .container-fluid {
    padding: 0 3rem;
    gap: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar-toggler {
    display: none !important;
  }
  .navbar-collapse {
    display: flex !important;
  }
  .navbar-brand {
    margin: 0 auto;
  }
  .navbar-brand img {
    width: 120px;
    height: 70px;
  }
  .navbar-brand span {
    font-size: 2rem;
    margin-left: 1rem;
  }
  .navbar-nav {
    gap: 2rem;
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    padding: 8px 14px;
  }
  .btn-login {
    font-size: 1.1rem;
    padding: 8px 16px;
    margin: 0 2rem;
  }
}
@media (min-width: 2560px) {
  .navbar .container-fluid {
    padding: 0 7rem !important;
    gap: 3rem !important;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
  }
  .navbar-toggler {
    display: none !important;
  }
  .navbar-collapse {
    display: flex !important;
  }
  .navbar-brand {
    margin: 0 auto !important;
  }
  .navbar-brand img {
    width: 140px !important;
    height: 80px !important;
  }
  .navbar-brand span {
    font-size: 2.5rem !important;
    margin-left: 1rem !important;
  }
  .navbar-nav {
    gap: 2.5rem !important;
  }
  .navbar-nav .nav-link {
    font-size: 1.4rem !important;
    padding: 10px 16px !important;
  }
  .btn-login {
    font-size: 1.3rem !important;
    padding: 10px 18px !important;
    margin: 0 2rem !important;
  }
}
.offcanvas {
  width: 280px;
  max-width: 80%;
  background: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid #e9ecef;
}
.offcanvas .offcanvas-header .offcanvas-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #667eea;
}
.offcanvas .offcanvas-header .btn-close {
  filter: invert(0.5);
}
.offcanvas .offcanvas-body {
  padding: 1rem;
}
.offcanvas .offcanvas-body .navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
}
.offcanvas .offcanvas-body .navbar-nav .nav-link {
  font-size: 1rem;
  color: #212529;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: 0.3s;
}
.offcanvas .offcanvas-body .navbar-nav .nav-link:hover {
  background: #e9ecef;
  color: #667eea;
}
.offcanvas .offcanvas-body .navbar-nav .nav-link.active {
  background: #667eea;
  color: #fff !important;
  font-weight: 700;
}
.offcanvas .offcanvas-body .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
}
.offcanvas .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 0.95rem;
}
.offcanvas .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #667eea;
}
.offcanvas .offcanvas-body .btn {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  width: 100%;
}

@media (max-width: 425px) {
  .offcanvas-title {
    font-size: 1rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
  }
}
@media (max-width: 375px) {
  .offcanvas-title {
    font-size: 0.95rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 320px) {
  .offcanvas-title {
    font-size: 0.9rem;
  }
  .nav-link {
    font-size: 0.8rem;
  }
  .btn {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}

footer {
  background: #212529;
  color: #f8f9fa;
  padding: 2rem 1rem;
  margin-top: auto;
  border-top: 3px solid #667eea;
  text-align: center;
}
footer h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #667eea;
}
footer p[itemprop=description] {
  color: rgb(161.1158798283, 167.8755364807, 173.8841201717);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
footer .row {
  justify-content: center;
  margin-bottom: 2rem;
}
footer .row h6 {
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #667eea;
}
footer .row small {
  color: rgb(174.7961373391, 180.5708154506, 185.7038626609);
  font-size: 0.9rem;
}
footer .footer-social a {
  text-decoration: none;
  color: #667eea;
  transition: color 0.3s ease;
}
footer .footer-social a:hover {
  color: #00bfff;
}
footer .footer-social a i {
  font-size: 1.5rem;
  display: block;
}
footer .footer-social a span {
  font-size: 1rem;
  display: block;
}
@media (min-width: 425px) {
  footer .footer-social a span {
    display: inline;
  }
}
footer #contadorTotal {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #667eea;
}
footer #infoVisita {
  font-weight: 600;
  color: #f8f9fa;
}
footer hr {
  border-color: #667eea;
  margin: 1rem 0;
}
footer small {
  color: rgb(174.7961373391, 180.5708154506, 185.7038626609);
  font-size: 0.9rem;
}

@media (max-width: 425px) {
  footer h4 {
    font-size: 1.25rem;
  }
  footer h6 {
    font-size: 1rem;
  }
  footer p, footer span, footer small {
    font-size: 0.9rem;
  }
  footer .footer-social {
    flex-direction: column;
    gap: 1rem;
  }
  footer .footer-social a span {
    display: block;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer {
    font-size: 1rem;
    line-height: 1.6;
  }
  footer h4 {
    font-size: 1.6rem;
  }
  footer h6 {
    font-size: 1.2rem;
  }
  footer p, footer span, footer small {
    font-size: 1rem;
  }
  footer .footer-social a span {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  footer {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  footer h4 {
    font-size: 1.8rem;
  }
  footer h6 {
    font-size: 1.3rem;
  }
  footer p, footer span, footer small {
    font-size: 1.05rem;
  }
  footer .footer-social a span {
    font-size: 1.05rem;
  }
}
@media (min-width: 1440px) and (max-width: 2559px) {
  footer {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  footer h4 {
    font-size: 2rem;
  }
  footer h6 {
    font-size: 1.4rem;
  }
  footer p, footer span, footer small {
    font-size: 1.1rem;
  }
  footer .footer-social a span {
    font-size: 1.1rem;
  }
}
@media (min-width: 2560px) {
  footer {
    font-size: 1.3rem;
    line-height: 2;
  }
  footer h4 {
    font-size: 2.5rem;
  }
  footer h6 {
    font-size: 1.8rem;
  }
  footer p[itemprop=description] {
    font-size: 1.4rem;
  }
  footer small {
    font-size: 1.2rem;
  }
  footer .footer-social a span {
    font-size: 1.3rem;
  }
  footer .footer-social a i {
    font-size: 2rem;
  }
  footer #contadorTotal {
    font-size: 1.5rem;
  }
  footer #infoVisita {
    font-size: 1.3rem;
  }
}
@keyframes pulse-wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.biblical-label {
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem;
  background: #fff;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
}
.biblical-label blockquote {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  color: #212529;
  font-weight: 500;
  line-height: 1.3;
  font-style: italic;
  font-size: clamp(0.85rem, 2.5vw, 1.2rem);
}
.biblical-label blockquote::after {
  content: "— Salmos 125:1";
  display: block;
  margin-top: 0.25rem;
  color: #667eea;
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
}
.biblical-label #contadorHoyLabel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.6rem, 1.2vw, 0.9rem);
  font-weight: 700;
  color: #6c757d;
  background: #e9ecef;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  white-space: nowrap;
}
.biblical-label #contadorHoyLabel::before {
  content: "";
  width: clamp(6px, 1vw, 10px);
  height: clamp(6px, 1vw, 10px);
  background: #667eea;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.biblical-label #contadorHoyLabel::after {
  content: "";
  position: absolute;
  width: clamp(6px, 1vw, 10px);
  height: clamp(6px, 1vw, 10px);
  background: #667eea;
  border-radius: 50%;
  z-index: 1;
  animation: pulse-wave 2s infinite;
}

@media (max-width: 320px) {
  .biblical-label {
    padding: 0.6rem 0.5rem;
  }
  .biblical-label blockquote {
    font-size: 0.8rem;
  }
  .biblical-label blockquote::after {
    font-size: 0.65rem;
  }
  .biblical-label #contadorHoyLabel {
    font-size: 0.65rem;
  }
}
@media (max-width: 425px) {
  .biblical-label {
    padding: 0.6rem 0.5rem;
  }
  .biblical-label blockquote {
    font-size: 0.9rem;
  }
  .biblical-label blockquote::after {
    font-size: 0.7rem;
  }
  .biblical-label #contadorHoyLabel {
    font-size: 0.7rem;
  }
}
@media (min-width: 1024px) {
  .biblical-label {
    padding: 1rem 2rem;
  }
  .biblical-label blockquote {
    font-size: 1.1rem;
  }
  .biblical-label blockquote::after {
    font-size: 0.9rem;
  }
  .biblical-label #contadorHoyLabel {
    font-size: 0.9rem;
  }
}
@media (min-width: 1440px) {
  .biblical-label {
    padding: 1.2rem 3rem;
  }
  .biblical-label blockquote {
    font-size: 1.3rem;
  }
  .biblical-label blockquote::after {
    font-size: 1rem;
  }
  .biblical-label #contadorHoyLabel {
    font-size: 1rem;
  }
}
@media (min-width: 2560px) {
  .biblical-label {
    padding: 1.5rem 5rem;
  }
  .biblical-label blockquote {
    font-size: 1.8rem;
  }
  .biblical-label blockquote::after {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
  .biblical-label #contadorHoyLabel {
    font-size: 1.2rem;
    padding: 0.4rem 1.5rem;
  }
  .biblical-label #contadorHoyLabel::before {
    width: 12px;
    height: 12px;
  }
  .biblical-label #contadorHoyLabel::after {
    width: 12px;
    height: 12px;
  }
}
.intro-text {
  max-width: 90%;
  margin: 0 auto 2rem;
  text-align: center;
}
.intro-text h1 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  color: #667eea;
  margin: 1.5rem 0;
  line-height: 1.3;
  font-size: clamp(1.4rem, 4vw, 2rem);
}
.intro-text p {
  font-family: "Segoe UI", sans-serif;
  color: #212529;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.row.g-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.row.g-4 .col-md-6 {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
}
.row.g-4 .flip-card {
  background: transparent;
  width: 100% !important;
  max-width: 100% !important;
  height: 280px;
  perspective: 1000px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: idlePulse 6s infinite ease-in-out;
}
.row.g-4 .flip-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}
.row.g-4 .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.row.g-4 .flip-card:hover .flip-card-inner, .row.g-4 .flip-card.active .flip-card-inner {
  transform: rotateY(180deg);
}
.row.g-4 .flip-card .flip-card-front, .row.g-4 .flip-card .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.row.g-4 .flip-card .flip-card-front {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  color: #0d6efd;
}
.row.g-4 .flip-card .flip-card-front h2 {
  font-weight: 700;
  font-size: 1.5rem;
  animation: fadeInDown 1s ease;
}
.row.g-4 .flip-card .flip-card-back {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  transform: rotateY(180deg);
}
.row.g-4 .flip-card .flip-card-back h2 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}
.row.g-4 .flip-card .flip-card-back p {
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeIn 1s ease;
}
.row.g-4 .flip-card .flip-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.row.g-4 .flip-card .flip-card-back ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  animation: fadeIn 1s ease;
}
.row.g-4 .flip-card .flip-card-back .text-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  max-height: 90%;
  overflow-y: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes idlePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}
@media (min-width: 2560px) {
  .row.g-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 350px;
  }
  .flip-card-front h2 {
    font-size: 2rem;
  }
  .flip-card-back h2 {
    font-size: 1.8rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 1.3rem;
    line-height: 2;
  }
}
@media (min-width: 1440px) and (max-width: 2559px) {
  .row.g-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 320px;
  }
  .flip-card-front h2 {
    font-size: 1.8rem;
  }
  .flip-card-back h2 {
    font-size: 1.6rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 1.15rem;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .row.g-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 300px;
  }
  .flip-card-front h2 {
    font-size: 1.6rem;
  }
  .flip-card-back h2 {
    font-size: 1.4rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .row.g-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 240px;
  }
  .flip-card-front h2 {
    font-size: 1.3rem;
  }
  .flip-card-back h2 {
    font-size: 1.2rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 0.95rem;
  }
}
@media (max-width: 425px) {
  .row.g-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 220px;
  }
  .flip-card-front h2 {
    font-size: 1.2rem;
  }
  .flip-card-back h2 {
    font-size: 1.1rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 0.9rem;
  }
}
@media (max-width: 375px) {
  .row.g-4 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 200px;
  }
  .flip-card-front h2 {
    font-size: 1.1rem;
  }
  .flip-card-back h2 {
    font-size: 1rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 0.85rem;
  }
}
@media (max-width: 325px) {
  .row.g-4 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 190px;
  }
  .flip-card-front h2 {
    font-size: 1rem;
  }
  .flip-card-back h2 {
    font-size: 0.95rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 0.8rem;
  }
}
@media (max-width: 320px) {
  .row.g-4 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 20px 0;
  }
  .flip-card {
    height: 180px;
  }
  .flip-card-front h2 {
    font-size: 0.95rem;
  }
  .flip-card-back h2 {
    font-size: 0.9rem;
  }
  .flip-card-back p, .flip-card-back ul li {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style_nosotros.css.map */