:root {
  --conv-primary: #035ad9;
  --conv-secondary: #00b2ef;
  --conv-deep: #0058a8;
  --conv-teal: #009eab;
  --conv-green: #68bf45;
  --conv-yellow: #f2cf41;
  --conv-text: #5f6c7b;
  --conv-title: #0f5fbb;
  --conv-white: #ffffff;
  --card-text: #3983A5;
  --conv-shadow: 0 18px 46px rgba(3, 90, 217, 0.12);
  --border-blue: #b3e5f5;
  --bg-card-fases: #fdfdfd;

  --base-metric: 4px;

  --metric-x1: calc(var(--base-metric) * 1);
  --metric-x2: calc(var(--base-metric) * 2);
  --metric-x3: calc(var(--base-metric) * 3);
  --metric-x4: calc(var(--base-metric) * 4);
  --metric-x5: calc(var(--base-metric) * 5);
  --metric-x6: calc(var(--base-metric) * 6);
  --metric-x7: calc(var(--base-metric) * 7);
  --metric-x8: calc(var(--base-metric) * 8);
  --metric-x9: calc(var(--base-metric) * 9);
  --metric-x10: calc(var(--base-metric) * 10);
  --metric-x11: calc(var(--base-metric) * 11);
  --metric-x12: calc(var(--base-metric) * 12);
  --metric-x13: calc(var(--base-metric) * 13);
  --metric-x14: calc(var(--base-metric) * 14);
  --metric-x15: calc(var(--base-metric) * 15);
  --metric-x16: calc(var(--base-metric) * 16);
  --metric-x17: calc(var(--base-metric) * 17);
  --metric-x18: calc(var(--base-metric) * 18);
  --metric-x19: calc(var(--base-metric) * 19);
  --metric-x20: calc(var(--base-metric) * 20);

  --rounded-x1: var(var(--metric-x1));
  --rounded-x2: calc(var(--metric-x1) * 2);
  --rounded-x3: calc(var(--metric-x1) * 4);
  --rounded-pill: 200px
}

/*======================================================= Fonts =======================================================*/

@font-face {
  font-family: "FuenteTitulo";
  src: local("CoconPro Bold"), local("CoconPro-Bold"),
    url("../fonts/CoconPro/CoconPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "mr-eaves-sans", "FuenteReserva", sans-serif !important;
  color: var(--conv-text);
  background: #fff;
  font-variant-numeric: lining-nums;
  font-weight: 300;
  letter-spacing: .3px;
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "FuenteTitulo", "FuenteReserva", sans-serif;
  font-weight: 700;
}

header.container-fluid {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(3, 90, 217, 0.08) !important;
}

header .container {
  max-width: 1180px;
}

header .navbar {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

header .navbar-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 1.25rem;
}

header .navbar-brand img {
  width: 88px;
  height: auto;
}

header .navbar-nav {
  gap: 0.5rem;
}

header .nav-link {
  padding: 0.35rem 0.6rem !important;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--conv-primary);
}

header .nav-link:hover,
header .nav-link:focus {
  color: var(--conv-secondary);
}

header .btn.btn-primary {
  border: 0;
  border-radius: 0.45rem;
  padding: 0.72rem 1rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(40deg, #2abefe 0%, #028ae0 100%);
  box-shadow: 0 10px 20px rgba(0, 180, 239, 0.28);
}

header .btn.btn-primary:hover,
header .btn.btn-primary:focus {
  background: var(--conv-white);
  color: var(--conv-primary);
  box-shadow: 0 10px 20px rgba(0, 180, 239, 0.18);
}

header .navbar-toggler {
  border-color: rgba(3, 90, 217, 0.15);
  box-shadow: none;
}

main > section:first-of-type {
  position: relative;
  overflow: hidden;
  /* min-height: 690px;
  padding-top: 7.5rem !important;
  padding-bottom: 7.25rem !important; */
  background:
    linear-gradient(180deg, rgba(0, 79, 160, 0.12) 0%, rgba(0, 117, 184, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 76, 164, 0.45) 0%, rgba(0, 176, 239, 0.32) 100%),
    url("../img/bg/bg-std.png") center center / cover no-repeat;
}

main > section:first-of-type::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12) 0, transparent 32%),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.08) 0, transparent 28%),
    radial-gradient(circle at 52% 76%, rgba(0, 210, 255, 0.2) 0, transparent 36%);
  pointer-events: none;
}

main > section:first-of-type .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

main > section:first-of-type .row {
  min-height: 520px;
}

main > section:first-of-type p.mb-2 {
  margin-bottom: 1rem !important;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

main > section:first-of-type h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.55rem, 8vw, 5.8rem);
  line-height: 0.92;
  color: var(--conv-white);
  text-shadow: 0 8px 24px rgba(0, 52, 120, 0.16);
}

main > section:first-of-type h2 {
  margin-bottom: 0.9rem !important;
  font-family: "FuentePrincipal", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--conv-white);
}

main > section:first-of-type .lead {
  max-width: 540px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

main > section:first-of-type .btn.btn-primary {
  min-width: 176px;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: var(--conv-primary);
  /* background: linear-gradient(40deg, #2ac2ff 0%, #028de1 100%); */
  box-shadow: 0 14px 30px rgba(0, 180, 239, 0.26);
}

main > section:first-of-type .btn.btn-primary:hover,
main > section:first-of-type .btn.btn-primary:focus {
  background: var(--conv-white);
  color: var(--conv-primary);
  box-shadow: 0 14px 30px rgba(0, 180, 239, 0.18);
}

/*======================================================= Clock =======================================================*/

.fecha-text {
  color: var(--conv-white);
  font-size: 20px;
}

.clock {
    display: flex;
    justify-content: center;
    background-color: #F9DC5F;
    padding: var(--metric-x4);
    width: 100%;
    max-width: 512px;
    position: relative;
    z-index: 10;
    border-radius: var(--rounded-x2);
    margin-bottom: var(--metric-x8);
}

.containerspans {
    display: flex
}

.clock span {
    color: #035AD9;
    font-size: 50px;
    padding: 0 10px;
    font-display: optional;
    font-optical-sizing: auto;
    font-weight: 700;
    text-align: center
}

.clock span .small {
    font-size: 14px;
    margin: 0;
    font-display: optional;
    font-optical-sizing: auto;
    font-weight: 500;
}

.clock .puntos {
    position: relative
}

/*======================================================= Clock =======================================================*/

.title-sec {
  color: var(--conv-primary) !important;
}

#objetivo {
  position: relative;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
  background: #fff;
}

#objetivo .container {
  max-width: 1180px;
}

#objetivo .row {
  align-items: center !important;
}

#objetivo .col-12.col-md-6.col-lg-5:first-child {
  position: relative;
}

#objetivo .card {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#objetivo .card-img-top {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 410px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: var(--conv-shadow);
  margin-left: 2.4rem;
}

#objetivo h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  color: var(--conv-title);
  padding-bottom: 15px;
}

#objetivo h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--conv-secondary) 0%, var(--conv-primary) 100%);
  border-radius: 999px;
}

#objetivo p {
  max-width: 460px;
  margin-bottom: 0;
  font-size: 1.06rem;
  color: #7e8a97;
}

.privacy-section h2 {
  color: #2b6cb0;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.privacy-section {
  padding-bottom: 30px;
  padding: 24px;
  border-radius: 8px;
}

.text-form-p {
  font-size: 14px;
}

.section-prteccion {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #f5fbff 0%,
            #eef7fc 50%,
            #f8fbfd 100%
        );
}

.privacy-bg-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.privacy-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 42px 48px;
    box-shadow:
        0 20px 60px rgba(0, 91, 150, 0.10),
        0 4px 15px rgba(0, 0, 0, 0.04);

    border: 1px solid rgba(18, 132, 195, 0.10);
}

.privacy-header {
    margin-bottom: 28px;
}

.privacy-label {
    display: inline-block;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: #0085cf;

    margin-bottom: 5px;
}


.privacy-header h2 {
    margin: 0;

    font-size: 30px;
    font-weight: 800;

    color: var(--conv-primary);
}

.privacy-content {
    color: #536779;
}


.privacy-content p {
    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.privacy-arco {
    margin: 30px 0;

    padding: 20px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #f1faff,
        #f7fcff
    );

    border: 1px solid #d9edf8;
}


.arco-title {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 16px;

    color: #176697;

    font-weight: 700;
}


.arco-title i {
    font-size: 18px;
}


.arco-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}


.arco-item {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #ffffff;

    padding: 12px;

    border-radius: 12px;

    border: 1px solid #e1edf3;

    transition: all 0.25s ease;
}


.arco-item:hover {
    transform: translateY(-3px);

    border-color: #9dd8f2;

    box-shadow:
        0 8px 20px rgba(0, 120, 190, 0.08);
}


.arco-item strong {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #e8f7fd;

    color: #0084cc;

    font-size: 14px;
}


.arco-item span {
    font-size: 13px;
    font-weight: 600;
    color: #526b7b;
}

.privacy-footer {
    margin-top: 25px;

    padding-top: 25px;

    border-top: 1px solid #edf1f4;
}

.privacy-footer p {
    margin-bottom: 18px;
}

.privacy-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #0075c9,
        #009ee0
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(0, 126, 200, 0.20);

    transition: all 0.25s ease;
}


.privacy-button:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(0, 126, 200, 0.28);
}


.privacy-button i {
    transition: transform 0.25s ease;
}


.privacy-button:hover i {
    transform: translateX(4px);
}

/*======================================================= Información general =======================================================*/

.text-primary-custom {
    color: var(--conv-secondary) !important;
}

.text-muted-custom {
    color: var(--card-text);
}

.icon-lg {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

.card-date {
    border: 2px solid var(--border-blue);
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.badge-date {
    position: absolute;
    top: 15px;
    right: 20px;
    text-align: right;
    line-height: 1;
}

.card-solid {
    background-color: var(--conv-secondary);
    border: none;
    border-radius: 12px;
    min-height: 220px;
}

/*======================================================= Proyecto innovador =======================================================*/

section.bg-proyecto {
  background-image: url(/img/bg/bg-proyecto.png);
  min-height: 420px;
  display: flex;
}

section.bg-proyecto > div{
  margin-top: auto;
  margin-bottom: auto;
}

section.bg-proyecto > div h2{
  font-size: 48px;
}

section.bg-proyecto > div p{
  font-size: 24px;
}

.btn-proyecto {
  border: 0;
  border-radius: 0.45rem;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(40deg, #2abefe 0%, #028ae0 100%);
  box-shadow: 0 10px 20px rgba(0, 180, 239, 0.28);
  color: var(--conv-white);
}

.btn-proyecto:hover,
.btn-proyecto:focus {
  background: var(--conv-white);
  color: var(--conv-primary);
  box-shadow: 0 10px 20px rgba(0, 180, 239, 0.18);
}

/*======================================================= Tematica general =======================================================*/

.title-sec {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.title-sec::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--conv-secondary) 0%, var(--conv-primary) 100%);
    border-radius: 999px;
}

.tematica-card {
    text-align: center;
    color: var(--conv-teal);
    transition: transform 0.3s ease;
}

.tematica-card:hover {
    transform: translateY(-5px);
}

.tematica-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    stroke: var(--conv-teal);
    stroke-width: 1.5;
}

.tematica-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: inherit;
    margin: 0;
}

/*======================================================= Participantes =======================================================*/

.text-secundary-custom {
    color: var(--conv-secondary) !important;
}

.text-success-custom {
    color: var(--conv-green) !important;
}

.custom-subtitle {
    color: #686868;
    font-size: 1.15rem;
}

.img-frame-container {
    padding: 0 0 18px 18px;
    position: relative;
}

.custom-framed-img {
    position: relative;
    z-index: 1;
    border-bottom-left-radius: 80px;
    border-top-right-radius: 20px;
    object-fit: cover;
    max-height: 480px;
    width: 100%;
}

.custom-requirements-list {
    color: #686868;
    font-size: 0.98rem;
}

.icon-water {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
}

/*======================================================= Fases de la convocatoria =======================================================*/

.text-primary-custom {
    color: var(--conv-primary) !important;
}

/* Permitir que la sombra respiré sin cortarse */
.swiper-fases {
    padding: 15px 10px 25px 10px !important;
}

.card-fases {
    border-radius: 20px !important;
    background-color: #ffffff;
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.12), 
                0 4px 12px -2px rgba(0, 0, 0, 0.08) !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Botones de navegación */
.btn-nav-gradient {
    width: 48px !important;
    height: 48px;
    background: linear-gradient(135deg, #2ab34b 0%, #007ac1 100%);
    border: none;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.modal .btn-nav-gradient{
  width: auto !important;
}

.btn-nav-gradient:hover {
    transform: scale(1.08);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 122, 193, 0.3);
}

.btn-nav-gradient:active {
    transform: scale(0.95);
}

.icon-nav {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Paginación Swiper Personalizada */
.custom-indicators.swiper-pagination-bullets {
    display: flex;
    align-items: center;
    gap: 8px;
    bottom: inherit;
    left: inherit;
    top: inherit;
}

.custom-indicators .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: #e0e0e0 !important;
    opacity: 1 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-indicators .swiper-pagination-bullet-active {
    background-color: var(--conv-primary, #007ac1) !important;
    transform: scale(1.2);
}

/*======================================================= Criterios =======================================================*/

.card-criterio {
    background-color: #ffffff;
    border: 1px solid var(--card-text);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-criterio:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 122, 193, 0.08);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-criterio {
    width: 40px;
    height: 40px;
    color: var(--card-text);
    stroke-width: 1.6;
}

.criterio-text {
    color: var(--conv-text);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.important-text {
  color: #FF6262;
}

/*======================================================= Premios =======================================================*/

.section-premios {
    background-image: url('/img/convocatoria/img-premios.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 85, 160, 0.85);
    z-index: 0;
}

.card-premio {
    border-radius: 16px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.card-premio:hover {
    transform: translateY(-6px);
}

.card-header-accent {
    height: 28px;
    width: 100%;
}

.card-footer-accent {
    height: 18px;
    width: 100%;
}

.monto-premio {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.monto-premio .unit {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.icon-premio {
    width: 54px;
    height: 54px;
    stroke-width: 1.5;
}

.card-oro .card-header-accent,
.card-oro .card-footer-accent {
    background: radial-gradient(circle at center, #F7EABC 0%, #B19741 100%);
}
.card-oro .icon-premio,
.card-oro .monto-premio {
    color: #E0A611;
}

.card-plata .card-header-accent,
.card-plata .card-footer-accent {
    background: radial-gradient(circle at center, #BBBABA 0%, #555555 100%);
}
.card-plata .icon-premio,
.card-plata .monto-premio {
    color: #979FAA;
}

.card-bronce .card-header-accent,
.card-bronce .card-footer-accent {
    background: radial-gradient(circle at center, #E59759 0%, #A76948 100%);
}
.card-bronce .icon-premio,
.card-bronce .monto-premio {
    color: #DA854B;
}

/*======================================================= CTA =======================================================*/

.bg-cta {
  background-image: url(/img/convocatoria/img-cta.png);
  background-position: center;
  background-size: cover;
  color: var(--conv-white);
}

.title-cta {
  font-size: 44px;
}

.sub-text {
  font-size: 24px;
}

/*======================================================= Footer =======================================================*/

.footer {
  background-color: var(--conv-primary);
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  margin-top: auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link-brand {
  color: inherit;
  text-decoration: none;
}

.footer-link-brand:hover,
.footer-link-brand:focus {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-bottom__copy {
  text-align: left;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-bottom__credit {
  text-align: right;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--conv-teal);
  color: white;
}

/*======================================================= Modal =======================================================*/

.icon-sm {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
}

.modal {
    z-index: 1055 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

@media (max-width: 1200px) {
  .title-cta {
    font-size: 34px;
  }

  .sub-text {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  header .navbar {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  header .navbar-collapse {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(3, 90, 217, 0.08);
  }

  header .navbar-nav {
    gap: 0.15rem;
    align-items: flex-start !important;
  }

  header .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 0.9rem;
  }

  header .btn.btn-primary {
    margin-top: 0.65rem;
  }

  main > section:first-of-type {
    /* min-height: 620px;
    padding-top: 6.5rem !important;
    padding-bottom: 5.5rem !important; */
  }

  main > section:first-of-type p.mb-2 {
    font-size: 1.15rem;
  }

  main > section:first-of-type .lead {
    font-size: 1.05rem;
  }

  #objetivo {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  #objetivo .card-img-top {
    margin-left: 1.4rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom__copy,
  .footer-bottom__credit {
    text-align: center;
  }

  .footer-bottom__links {
    flex-wrap: wrap;
  }
}


@media (max-width: 768px) {

    .section-prteccion {
        padding: 50px 15px;
    }

    .privacy-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .privacy-card::before {
        left: 25px;
        right: 25px;
    }

    .privacy-header {
        align-items: flex-start;
    }

    .privacy-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;

        font-size: 22px;
        border-radius: 14px;
    }

    .privacy-header h2 {
        font-size: 24px;
    }

    .privacy-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .arco-items {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767.98px) {
  header .navbar-brand img {
    width: 78px;
  }

  main > section:first-of-type {
    /* min-height: 560px;
    padding-top: 5.8rem !important;
    padding-bottom: 4.8rem !important; */
  }

  main > section:first-of-type .row {
    min-height: auto;
  }

  main > section:first-of-type h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  main > section:first-of-type h2 {
    font-size: 1.3rem;
  }

  main > section:first-of-type .lead {
    font-size: 1rem;
  }

  #objetivo .col-12.col-md-6.col-lg-5:first-child::before {
    top: -12px;
    left: 6px;
    width: 32px;
    height: 54px;
  }

  #objetivo .col-12.col-md-6.col-lg-5:first-child::after {
    right: 22px;
    bottom: -12px;
    width: 78px;
    height: 54px;
  }

  #objetivo .card::before {
    left: 10px;
    width: 90%;
    border-width: 6px;
  }

  #objetivo .card-img-top {
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: 1.1rem;
  }

  #objetivo h2 {
    margin-top: 1rem;
    font-size: 2.1rem;
  }

  #objetivo p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.6;
  }

  .card-solid{
    min-height: auto;
  }

  
  section.bg-proyecto > div h2{
    font-size: 36px;
  }

  section.bg-proyecto > div p{
    font-size: 16px;
  }
}

@media (max-width: 480px) {

    .privacy-header {
        flex-direction: column;
    }

    .privacy-header h2 {
        font-size: 22px;
    }

    .arco-items {
        grid-template-columns: 1fr;
    }

    .privacy-button {
        width: 100%;
        justify-content: center;
    }

}