html { font-size: 16px; }

.custom-container-blog {
    display: none!important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --secondary-black: #262626;
    --dg-negro-uno: #1E1E1E;
    --dg-negro-dos: #2D3037;
    --francia-berna: #E1A87A;
    --dg-fb-uno: #BC7F62;
    --dg-fb-dos: #DFB58D;
    --dg-fb-tres: #CC906E;
    --dark-grey: #2D3236;
    --white: #FFFFFF;
    --dark-white: #DBDBDB;
    --bg-section: #443E2B;
    --main-text: "Playfair Display", serif;
    --secondary-text : "Open Sans", sans-serif;
}

.fa-bars {
    color: var(--dark-white);
}

.custom-navbar {
    width: 100%;
    background: var(--black);
    border-bottom: 0.0312rem solid var(--dg-negro-dos);
    padding: 0.625rem 1.25rem;
    position: relative;
    z-index: 1000;
}

.custom-toggler {
    border: none;
    background: none;
    color: var(--francia-berna);
    font-size: 1.75rem;
    z-index: 1100;
    position: relative;
}

.custom-toggler:focus {
    outline: none;
    box-shadow: none;
}


.custom-header-logo{
    height: 2.5rem;
}

.navbar-brand:hover {
    color: var(--dark-white);
}

.navbar-nav {
    list-style: none!important;
}

.navbar-bar{
    font-family: var(--secondary-text);
}


.nav-link{
    color: var(--dark-white);
    transition: color 0.5s ease;
    margin: 0 0.9375rem;
}

.nav-link.active,
.menu-item.active > a {
    font-weight: 900;
    color: var(--francia-berna) !important;
}

.nav-link:hover{
    color: var(--francia-berna)!important;
}

.nav-link:focus{
    color: var(--francia-berna)!important;
}


.custom-button {
    background: linear-gradient(
        90deg,
        var(--dg-fb-uno),
        var(--dg-fb-dos),
        var(--dg-fb-tres)
    );
    background-size: 300%;
    border-radius: 0.625rem;
    color: var(--black);
    cursor: pointer;
    display: inline-block;
    align-items: center;
    transition: color 0.3s ease;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1.5625rem!important;
    padding-right: 1.5625rem !important;
    text-decoration: none;
    margin-right: 0.625rem;
}
.custom-button:hover {
    animation: metallic-gradient 2.5s linear infinite;
    color: var(--dark-grey)!important;
}

.custom-button:hover i {
    animation: arrow-loop 1s ease-in-out infinite;
}

.custom-button-outline {  
    border-radius: 0.625rem;
    color: var(--dark-white);
    cursor: pointer;
    display: inline-block;
    align-items: center;
    transition: color 0.3s ease;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1.5625rem!important;
    padding-right: 1.5625rem !important;
    text-decoration: none;
    border: 0.0625rem solid var(--francia-berna);
}

.menu {
    text-align: center;
}

.menu li{
    padding: 0.3125rem;
}

.custom-button-outline:hover {
    background: linear-gradient(
        90deg,
        var(--dg-fb-uno),
        var(--dg-fb-dos),
        var(--dg-fb-tres)
    );
    background-size: 300%;
    transition: color 0.3s ease;
    color: var(--dark-grey);  
    animation: metallic-gradient 2.5s linear infinite;
}

.custom-button-outline:hover i {
    animation: arrow-loop-down 1s ease-in-out infinite;
}

.custom-aside {
  overflow-x: hidden;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

@keyframes metallic-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes arrow-loop {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(0.125rem);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-0.125rem);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes arrow-loop-down {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(0.125rem);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-0.125rem);
    }
    100% {
        transform: translateY(0);
    }
}

.landing {
    width: 100%;
    height: 90vh;
    background: #040404;
}

.landing-row{
    height: 100%;
}

.container-mapa {
    width: 100%;
}

.container-mapa img{
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--francia-berna);
}

.custom-h1{
    font-family: var(--main-text);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--dark-white);
}

.custom-text {
    font-family: var(--secondary-text);
    color: var(--dark-white);
}

.custom-line {
    width: 100%;
    height: 0.0625rem;
    background: var(--francia-berna);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.custom-span {
    color: var(--francia-berna);
}

.landing-col-right {
    padding: 0 auto;
}

.landing-col-right img {
    height: 90vh;
}

.custom-h2{
    font-family: var(--main-text);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--dark-white);
}

main {
    background: linear-gradient(var(--secondary-black), var(--black));
    border-bottom: 0.0625rem solid var(--dark-grey);
    position: relative;
    top: 0;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
    z-index: 1;
}


.custom-card-uno {
    height: 31.25rem;
    border: 0.0625rem solid var(--francia-berna);
    border-radius: 1.25rem;
    background: linear-gradient(var(--dg-negro-dos), var(--dg-negro-uno));
    width: 32%;
}

.custom-icon-card-uno{
    height: 6.25rem;
    width: 6.25rem;
    border-radius: 0.625rem;
    background: var(--francia-berna);
    text-align: center;
    margin:  3.125rem auto;
}

.custom-icon-card-uno i {
    color: var(--dark-grey);
    font-size: 3.75rem;
    line-height: 3.75rem;
}

.custom-h3 {
    font-family: var(--main-text);
    font-weight: 700;
    color: var(--dark-white);
}

.custom-row-cards{
    width: 80%;
    margin: auto;
}

.custom-banner {
    max-width: 100%;
    width: 100%;
}

.custom-numbers {
    max-width: 100%;
    width: 100%;
}

.custom-card-tres{
    padding: 0.625rem;
    height: auto;
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
}

.custom-img-sobre-mi-1{
    display: inline-block;
    width: 30%;
    border-radius: 1.25rem;
}

.custom-card-tres .custom-text{
    display: inline-block;
    padding-left: 0.625rem;
    width: calc(60%);
    height: auto;
    font-family: var(--secondary-text);
    font-weight: 500;
    text-align: justify;
}

.container-foto-sobremi{
    width: 30%;
    align-self: center;
    margin: 0 auto;
}

.container-foto-sobremi img{
    width: 256px;
    height: 256px;
    border-radius: 50%;
    align-self: center;
    margin: 0 auto;
    border: 5px solid var(--francia-berna);
}

.container-texto-sobremi {
    width: 60%;
}

.container-texto-sobremi .custom-text{
    width: 100%;
}

.custom-container-gusto-1 {
    width: 100%;
    align-items: stretch;
    min-height: 100%;
    height: auto;
    background: linear-gradient(var(--dg-negro-dos), var(--dg-negro-uno));
    padding: 0.625rem;
    border: 0.0625rem solid var(--francia-berna);
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
}

.custom-francia-text {
    font-family: var(--secondary-text);
    font-size: 1.25rem;
    color: var(--francia-berna);
    font-weight: 600;
    text-align: center;
}

.custom-h4 {
    color: var(--francia-berna);
    font-family: var(--main-text);
    font-weight: 900;
    font-size: 3.75rem;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.wpforms-field-limit-text {
    font-family: var(--secondary-text)!important;
    color: var(--dark-white)!important;
}

div.wpforms-container-full .wpforms-confirmation-container-full {
    background: linear-gradient(
        90deg,
        var(--dg-fb-uno),
        var(--dg-fb-dos),
        var(--dg-fb-tres)
    ) !important;
    background-size: 300% !important;
    animation: metallic-gradient 3s linear infinite !important;
    border: none !important;
    border-radius: 0.75rem !important;
    color: var(--black) !important;
    font-family: var(--secondary-text) !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 1rem 1.25rem !important;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3) !important;
}

div.wpforms-container-full .wpforms-confirmation-container-full[style],
div.wpforms-container-full .wpforms-confirmation-container-full *[style] {
    background: linear-gradient(
        90deg,
        var(--dg-fb-uno),
        var(--dg-fb-dos),
        var(--dg-fb-tres)
    ) !important;
    color: var(--black) !important;
}

div.wpforms-container-full .wpforms-confirmation-container-full p {
  color: var(--black) !important;
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
}

@keyframes fadeInConfirmation {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}
div.wpforms-container-full .wpforms-confirmation-container-full {
  animation: fadeInConfirmation 0.8s ease-out, metallic-gradient 3s linear infinite !important;
}



.custom-h6 {
    display: inline-block;
    width: 100%;
    font-family: var(--main-text);
    font-size: 1.125rem;
    color: var(--dark-white);
    text-align: center;
}

.custom-h6-2   {
    display: inline-block;
    width: 100%;
    font-family: var(--main-text);
    font-size: 1.375rem;
    color: var(--dark-white);
    text-align: center;
}

.custom-h6 span {
    font-size: 1.875rem;
}

.custom-text-gustos{
    display: inline-block;
    font-family: var(--secondary-text);
    color: var(--dark-white);
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
}

.custom-img-gustos {
    width: 95%;
    margin: 2.5%;
    overflow: hidden;
    display: inline-block;     
    border-radius: 0.625rem; 
}

.custom-img-gustos:hover {
    width: 95%;
    margin: 2.5%;
}

.custom-img-gustos img{
    max-width: 100%;   
    border-radius: 0.625rem; 
    transition: transform 0.5s ease; 
    height: auto;
}

.custom-img-gustos:hover img{
    transform: scale(1.1);
    filter: brightness(1.1);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3);
}

.custom-aside{
    background: var(--black);
}

.foto-cv {
    border-radius: 1.25rem;
    border: 0.0625rem solid var(--francia-berna);
    height: 40vh;
}

.custom-aside-row-2{
    width: 80%;
}

.custom-aside-row-2 .col-sm-3{
    padding-bottom: 20px;
}

.custom-cv {
    height: 40vh;
    border: 0.0625rem solid var(--francia-berna);
    border-radius: 1.25rem;
    background: linear-gradient(var(--dg-negro-dos), var(--dg-negro-uno));
}

.fa-bullseye {
    color: var(--francia-berna);
    font-size: 2.5rem;
    align-self: center;
}

.custom-button-cv {
    width: 100%;
    border-radius: 0.625rem;
    color: var(--dark-white);
    cursor: pointer;
    display: inline-block;
    align-items: center;
    transition: color 0.3s ease;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1.5625rem!important;
    padding-right: 1.5625rem !important;
    text-decoration: none;
    border: 0.0625rem solid var(--francia-berna);
    text-align: center;
    margin-bottom: 40px;
}

.custom-button-cv:hover {
    background: linear-gradient(
        90deg,
        var(--dg-fb-uno),
        var(--dg-fb-dos),
        var(--dg-fb-tres)
    );
    background-size: 300%;
    transition: color 0.3s ease;
    color: var(--dark-grey);  
    animation: metallic-gradient 2.5s linear infinite;
}

.custom-button-cv:hover i {
    animation: arrow-loop-link 1s ease-in-out infinite;
}

@keyframes arrow-loop-link {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(0.125rem);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-0.125rem);
    }
    100% {
        transform: translateY(0);
    }
}

.custom-container-blog {
    background: var(--secondary-black);
    height: auto;
}

.custom-container-blog img {
    height: 3.25rem;
}

.custom-navbar-imagen {
    display: none;
    width: 100%;
    background-color: var(--black);
    text-align: center;
    height: auto;
}


.custom-highlight {
    height: auto;
    border: 0.0625rem solid var(--francia-berna);
    border-radius: 1.25rem;
    background: linear-gradient(to bottom right var(--dg-negro-uno), var(--dg-negro-dos));
    width: 100%;
    background: var(--black);
}

.custom-h2-tablet-lg {
    font-size: 2.25rem;
    margin-left: 1%;
}

.custom-title-article{
    width: 100%;
}

.custom-title-article .custom-h3{
    font-size: 1.375rem;
}


#view-articulo {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(0.875rem); 
    -webkit-backdrop-filter: blur(0.875rem);
    overflow-y: auto;
    padding: 1.5625rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    animation: fadeInArticle 0.6s ease forwards;
}

.btn-volver {
    background: none;
    border: none;
    color: var(--francia-berna);
    font-size: 1.0rem;
    font-family: var(--secondary-text);
    margin-bottom: 0.625rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.btn-volver:hover {
    color: var(--white);
}

.articulo-content {
    font-family: var(--secondary-text);
    color: var(--dark-white);
    line-height: 1.6;
}

.loading {
    text-align: center;
    color: var(--francia-berna);
    font-family: var(--secondary-text);
    margin: 1.25rem 0;
}

.fade-in-post {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

.custom-section{
    color: var(--francia-berna);
    font-family: var(--secondary-text);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    height: 1.5rem;
    line-height: 0.875rem;
    width: auto;
    background: var(--bg-section);
    padding: 0.375rem 0.75rem;
    border-radius: 1.5rem;
    border: 0.0625rem solid var(--francia-berna);
}

.custom-section:hover{
    color: var(--secondary-black);
    background: var(--francia-berna);
    border: 0.0625rem solid var(--bg-section);
}


.custom-section-left{
    width: 70%;
}

.custom-section-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;  
    justify-content: space-between;
    min-height: 100%;
}

.custom-date {
    color: var(--dark-white);
    text-align: right;
    width: 100%;
    margin-bottom: auto;
}

.custom-large-button {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.custom-contact{
    height: auto;
    background: var(--black);
    padding-bottom: 1.875rem;
}


@keyframes fadeInArticle {
  from {
    opacity: 0;
    transform: translateY(1.5625rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#view-articulo .btn-volver {
    background: linear-gradient(
        90deg,
        var(--dg-fb-uno),
        var(--dg-fb-dos),
        var(--dg-fb-tres)
    );
    border: 0.0625rem solid var(--francia-berna);
    color: var(--black);
    font-size: 0.9375rem;
    font-family: var(--secondary-text);
    border-radius: 0.625rem;
    padding: 0.5rem 0.875rem;
    margin-bottom: 0.9375rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s ease;
}

#view-articulo .btn-volver:hover {
    color: var(--black);
    outline: 0.125rem solid white;
}

#view-articulo .custom-article-full {
    background:linear-gradient(var(--dg-negro-uno), var(--dg-negro-dos));
    border: 0.0625rem solid var(--francia-berna);
    border-radius: 1.25rem;
    padding: 2.5rem;
    color: var(--dark-white);
    line-height: 1.8;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#view-articulo .custom-article-full .text-content {
    width: 100%;
}

#view-articulo .custom-article-full p{
    text-align: justify;
}

#view-articulo .custom-article-full a{
    color: var(--francia-berna);
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#view-articulo .custom-article-full img {
    width: 48%;
    border-radius: 0.625rem;
    margin-right: 2%;
    object-fit: cover;
}

#view-articulo .custom-article-full h2,
#view-articulo .custom-article-full h3,
#view-articulo .custom-article-full h4 {
    color: var(--dark-white);
    margin-bottom: 1.25rem;
}

.custom-img-contact{
    height: 100vh;
    border-radius: 1.25rem;
    border: 0.0625rem solid var(--francia-berna);
}

.custom-container-form{
    height:auto;
    background:linear-gradient(var(--dg-negro-uno), var(--dg-negro-dos));
    border:0.0625rem solid var(--francia-berna);
    border-radius:1.25rem;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.custom-container-form .custom-form-wrapper{
    width:100%;
}
.custom-container-form .wpforms-form{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:0.75rem;
}

.custom-container-form .wpforms-field{
    width:100%;
    margin:0 0 0.3125rem 0 !important;
}

.custom-container-form .wpforms-form label.wpforms-field-label,
.custom-container-form .wpforms-form .wpforms-field-sublabel{
    color:var(--dark-white) !important;
    font-family:var(--secondary-text) !important;
    font-weight:600;
    margin-bottom:0.375rem !important;
}

.custom-container-form .wpforms-form input[type="text"],
.custom-container-form .wpforms-form input[type="email"],
.custom-container-form .wpforms-form textarea{
    width:100% !important;
    padding:0.3125rem !important;
    border-radius:0.3125rem !important;
    background:#2E3138 !important;
    border:none !important;
    outline:none !important;
    color:var(--dark-white) !important;
    font-family:var(--secondary-text) !important;
    box-shadow:none !important;
    margin-bottom: 0.3125rem!important;
}

.custom-container-form .wpforms-form input[type="text"]:hover,
.custom-container-form .wpforms-form input[type="email"]:hover,
.custom-container-form .wpforms-form textarea:hover{
    outline:0.0625rem solid var(--francia-berna) !important;
    caret-color:var(--dark-white);
}
.custom-container-form .wpforms-form input[type="text"]:focus,
.custom-container-form .wpforms-form input[type="email"]:focus,
.custom-container-form .wpforms-form textarea:focus{
    outline:0.0625rem solid var(--francia-berna) !important;
    caret-color:var(--dark-white);
}

.custom-container-form .wpforms-form ::placeholder{
    color:var(--dark-white) !important;
    opacity:1;
}

.custom-container-form .wpforms-submit,
.custom-container-form button[type="submit"].wpforms-submit{
    background:var(--francia-berna) !important;
    color:var(--dark-white) !important;
    border:none !important;
    border-radius:0.625rem !important;
    padding:0.625rem 1.25rem !important;
    cursor:pointer !important;
    font-weight:600 !important;
    transition:all .3s ease-in-out !important;
    width:100%
}
.custom-container-form .wpforms-submit:hover{
    background:var(--dg-negro-dos) !important;
    outline:0.0625rem solid var(--francia-berna) !important;
}

.custom-container-form .wpforms-confirmation-container-full{
    background:transparent !important;
    border:0.0625rem solid var(--francia-berna) !important;
    color:var(--dark-white) !important;
    border-radius:0.625rem !important;
    padding:0.75rem !important;
}
.custom-container-form .wpforms-error{
    color:#ff9c9c !important;
}
.custom-container-form .wpforms-required-label{
    color:#ff9c9c !important;
}

.custom-footer {
    background-color: var(--black);
    color: var(--dark-white);
    padding: 2.5rem 1.25rem;
    border-top: 0.0625rem solid var(--dg-negro-dos);
}

.custom-footer h2,
.custom-footer h6 {
    width: 100%;
    color: var(--francia-berna);
    font-family: var(--secondary-text);
}

.custom-footer p {
    font-family: var(--secondary-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.625rem;
    color: var(--dark-white);
}

.custom-footer-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer-link a {
    text-decoration: none;
    color: var(--dark-white);
    transition: color 0.3s ease;
}

.custom-footer-link a:hover {
    color: var(--francia-berna);
}

.custom-list-item {
    margin: 0.375rem 0;
    text-align: center;
}

.custom-icon-footer {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.0625rem solid var(--francia-berna);
    border-radius: 50%;
    color: var(--francia-berna);
    transition: all 0.3s ease;
    margin-top: 0.625rem;
}

.custom-icon-footer:hover {
  background-color: var(--francia-berna);
  color: var(--black);
  transform: scale(1.1);
}

.custom-icon-a{
    text-decoration: none;
    height: 4.375rem;
}

.custom-card-dos {
    border: 0.0625rem solid var(--francia-berna);
    border-radius: 1.25rem;
    background: linear-gradient(var(--dg-negro-uno), var(--dg-negro-dos));
    max-width: 100%;
    padding: 1.25rem;
}

.custom-curriculum-card {
    height: 4.6875rem;
    background: var(--dark-grey);
    border-radius: 0.625rem;
    border: 0.0625rem solid var(--francia-berna);
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}

.custom-curriculum-container{
    width: 100%;
}

.custom-icon-curriculum {
    width: 3.4375rem;
    height: 3.4375rem;
}

.custom-icon-curriculum  i {
    width: 100%;
    height: 100%;
    font-size: 2.1875rem;
    line-height: 2.1875rem;
    text-align: center;
    background: var(--francia-berna);
    color: var(--secondary-black);
    border-radius: 0.3125rem;
    padding: 0.625rem 0;
}

.custom-curriculum-content{
    width: 94%;
    padding: 0.125rem 0.9375rem;
    height: 3.4375rem;
    line-height: 1.5625rem;
}

.custom-h5 {
    font-family: var(--secondary-text);
    color: var(--dark-white);
    font-size: 1.125rem;
    font-weight: 600;
}

.custom-h5-2 {
    font-family: var(--secondary-text);
    color: var(--dark-white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: start;
    width: 100%;
}

.custom-textc {
    font-family: var(--secondary-text);
    color: var(--dark-white);
    display: inline-block;
    width: 90%;
}

.custom-date2 {
    display: inline-block;
    width: 10%;
    color: var(--francia-berna);
    font-family: var(--secondary-text);
    font-weight: 800;
    align-self: flex-end;
    text-align: right;
}

.custom-experience-card-header {
    width: 100%;
}

.custom-experience-card {
    background: var(--dark-grey);
    width: 99%;
    border-radius: 0.625rem;
    border: 0.0625rem solid var(--francia-berna);
    padding: 0.9375rem;
    margin-bottom: 0.9375rem;
    min-height: auto;
    height: 22.5rem;
}

.custom-experience-card-dos {
    background: var(--dark-grey);
    width: 100%;
    border-radius: 0.625rem;
    border: 0.0625rem solid var(--francia-berna);
    padding: 0.9375rem;
    margin-bottom: 0.9375rem;
    min-height: auto;
    height: 24.375rem;
}

.custom-experience-card-cuatro {
    background: var(--dark-grey);
    width: 100%;
    border-radius: 0.625rem;
    border: 0.0625rem solid var(--francia-berna);
    padding: 0.9375rem;
    margin-bottom: 0.9375rem;
    min-height: auto;
    height: auto;
}

.custom-experience-card-header-icon {
    height: 5.0rem;
    width: 5.0rem;
    border-radius: 0.3125rem;
    background: var(--francia-berna);
    text-align: center;
    font-size: 2.5rem;
    padding-top:0.625rem;
}

.custom-experience-card-title{
    width: calc(99% - 5.0rem);
    height: 5.0rem;
    padding-left: 0.625rem;
}

.custom-textc2 {
    font-family: var(--secondary-text);
    color: var(--dark-white);
    display: inline-block;
    width: 100%;
}


.custom-date3 {
        color: var(--francia-berna);
        text-align: right;
        width: 100%;
        font-family: var(--secondary-text);
        font-weight: 800;
    }

.custom-blog{
    height: 90vh;
    width: 100%;
    background: var(--dark-grey);
}

.tablet{
    height: 85vh;
    width: 75%;
    background: var(--black);
    border-radius: 3.125rem;
}

.tablet-screen {
    width: 92%;
    height: 88%;
    background: white;
}

.tablet-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.view {
    position: absolute;
    width: 100%;
    height: calc(100% - 4.375rem);
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    color: var(--dark-white);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.view:not(#view-home) {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(0.1);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--francia-berna) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.view:not(#view-home)::-webkit-scrollbar {
    width: 0.625rem;
}

.view:not(#view-home)::-webkit-scrollbar-thumb {
  background-color: var(--francia-berna);
  border-radius: 0.625rem;
}

.view:not(#view-home)::-webkit-scrollbar-track {
  background: transparent;
}

.view.active {
    top: 0;
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
}

.view.slide-down {
    transform: translateY(100%);
    opacity: 0;
    z-index: 1;
}

#view-home {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.view::-webkit-scrollbar,
.tablet-content::-webkit-scrollbar {
    width: 0.5rem;
}

@keyframes fadeSlideIn {
  from {
    transform: translateX(1.875rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.view.active h3, 
.view.active p {
  animation: fadeSlideIn 0.5s ease forwards;
}

.tablet-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4.375rem;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}


.tablet-nav button {
    background: var(--francia-berna);
    color: var(--dark-white);
    font-family: var(--secondary-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
    border-radius: 0.625rem;
}

.tablet-nav button:hover,
.tablet-nav button.active {
  color: var(--black);
  transform: scale(1.05);
}

.tablet-nav i {
    font-size: 1.5625rem;
    margin-bottom: 0.25rem;
}

.tablet-content::-webkit-scrollbar,
.view::-webkit-scrollbar {
    display: none;
}


.custom-wallpaper {
    background-color: #FAFBFB;
    background-image: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.custom-fixed-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.custom-fixed-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-recomendacion-section {
    margin-top: 1.25rem;
}

.container-recomendacion {
    margin-top: 0.3125rem;
    width: 100%;
}

.container-recomendacion a {
    display: inline-block;
    overflow: hidden; 
    border-radius: 1.25rem;
    border: 0.0625rem solid var(--francia-berna);
}

.container-recomendacion img {
    border-radius: 1.25rem;
    transition: transform 0.5s ease; 
}

.container-recomendacion a:hover img {
    transform: scale(1.1); 
}

.container-text-recomendacion{
    width: 40%;
    text-align: center;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-link {
  color: var(--dark-white);
  font-family: var(--secondary-text);
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--francia-berna);
}

.navbar-nav .nav-link.active,
.menu-item.active > a {
  color: var(--francia-berna) !important;
  font-weight: 700;
}

.navbar-nav .custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    var(--dg-fb-uno),
    var(--dg-fb-dos),
    var(--dg-fb-tres)
  );
  background-size: 300%;
  color: var(--black) !important;
  font-family: var(--secondary-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
}

.navbar-nav .custom-button:hover {
  animation: metallic-gradient 2.5s linear infinite;
  color: var(--dark-grey) !important;
  transform: scale(1.05);
}

.navbar-nav .custom-button i {
  margin-left: 0.4rem;
  font-size: 1rem;
}

.active p {
	font-family: var(--secondary-text);
    color: var(--dark-white);
	font-weight: 700;
	font-size: 1.3rem;
}

@media (max-width: 480px) {
    .landing {
        width: 100%;
        height: auto;
    }

    .landing-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .landing-col-left {
        width: 100%;
        margin-bottom: 1.875rem;
    }

    .landing-col-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .landing-col-right img {
        width: 60%;
        height: auto;
        margin: auto;
    }

    .custom-h1 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.9375rem;
    }

    .custom-h2 {
        font-size: 1.25rem;
    }

    .custom-h2-dos {
        font-size: 1.875rem!important;
    }

    .custom-h4{
        font-size: 1.875rem;
    }

    .custom-line {
        margin: 0.9375rem auto;
        width: 80%;
    }

    .custom-text {
        font-size: 0.875rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .custom-button-container {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .custom-button,
    .custom-button-outline {
        margin: auto;
        width: 45%;
        text-align: center;
        font-size: 0.75rem;
    }

    .custom-toggler {
        font-size: 1.625rem;
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding-right: 0.625rem;
        display: inline-block;
    }

    .navbar-collapse {
        justify-content: center;
    }

    .content-blog-21{
        width: 100%;
    }

    .content-blog-21 img{
        width: 100%;
    }

    .navbar-collapse.show {
        background: var(--black);
    }

    .custom-footer .row {
        text-align: center;
        padding: 0;
    }

    .custom-footer .col-3,
    .custom-footer .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5625rem;
    }

    .custom-footer p {
        max-width: 31.25rem;
        margin: 0 auto;
    }

    .custom-footer-link {
        justify-content: center !important;
    }

    .custom-button-index-blog{
        margin-bottom: 20px;
    }

    .custom-card-uno {
        width: 100%;
        height: auto;
        margin-bottom: 0.9375rem;
    }

    .custom-icon-card-uno{
        height: 3.75rem;
        width: 3.75rem;
    }

    .custom-icon-card-uno i{
        font-size: 1.5625rem;
    }

    .custom-cv {
        width: 100%;
        padding: 0!important;
        height: auto;
        border: none;
        background: rgba(1, 1, 1, 0);
    }

    .foto-cv {
        width: 9.375rem;
        height: 9.375rem;
    }

    .custom-cv-text{
        padding: 0.625rem;
        font-size: 1.0rem;
    }

    .custom-cv-header h3{
        display: none!important;
    }

    .custom-cv-index {
        background: rgba(1, 1, 1, 0);
        border: none;
    }

    
    .custom-container-blog img {
        height: 1.875rem;
    }

    .custom-blog-foto-cont{
        padding: 0.9375rem !important;
    }

    .custom-highlight {
        height: auto;
        background: var(--black);
    }

    .custom-experience-card-dos {
        background: var(--dark-grey);
        width: 100%;
        border-radius: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        padding: 0.9375rem;
        margin-bottom: 0.9375rem;
        min-height: auto;
        height: auto;
    }

    .custom-experience-card-dos h4 {
        font-size: 1rem;
    }

    .custom-highlight {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        height: auto;
        padding: 5px ;
        gap: 1rem;
        overflow: visible !important;
    }

    .custom-highlight p {
        text-align: justify;
		width: 100%;
    }

    .custom-section-left,
    .custom-section-right {
        width: 100% !important;
        display: flex;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .custom-section-right {
        padding: 0 ;
        margin-top: 0.5rem;
        display: flex;
        flex-direction: row-reverse;
    }

    .custom-date {
        width: 100%;
        text-align: left !important;
        margin-bottom: 0.5rem;
    }

    .custom-button.leer-mas {
        width: 100%;
        margin-top: 0.5rem;
    }

    .custom-title-article h2 {
        line-height: 1.3;
    }

    .custom-container-form{
        margin: 0.625rem;
        width: 95%;
        height: auto;
    }

    .custom-img-contact{
        display: none;
    }

    .container-foto-sobremi{
        width: 50%;
        align-self: center;
        margin: 0 auto;
    }

    .container-foto-sobremi img{
        width: 100%;
        height: 50%;
        border-radius: 50%;
        align-self: center;
        margin: 0 auto;
    }

    .container-texto-sobremi {
        width: 100%;
        padding: 20px;
    }

    .container-texto-sobremi .custom-text{
        width: 100%;
    }

    .custom-container-form a{
        width: 100%;
    }

    .custom-card-dos {
        background: rgba(1, 1, 1, 0);
        border: none;
        padding: 0 0.3125rem;
    }

    .custom-aside-row-2 {
        width: 100%;
    }

    .custom-aside-row{
        height: auto;
        max-width: 100%;
    }

    .custom-curriculum-card{
        height: 6.25rem;
        padding: 0 0.625rem;
        width: 96%;
        margin: 0 2%;
        margin-bottom: 0.625rem;
    }

    .custom-curriculum-card h3{
        font-size: 1rem;
    }

    .custom-icon-curriculum {
        display: none;
    }

    .custom-curriculum-text{
        width: 100%;
        margin: 0;
    }
    .custom-textc{
        margin: 0;
        align-self: flex-end;
        font-size: 0.875rem;
    }

    .custom-date2 {
        margin: 0;
        align-self: flex-end;
    }

    .custom-curriculum-content {
        height: auto;
        width: 100%;
        padding: 0 0.3125rem;
    }

    .custom-experience-card-header-icon{
        display: none;
    }

    .custom-experience-card-title{
        width: 100%;
        padding: 0;
    }

    .custom-experience-card-title h4{
        font-size: 1rem;
    }

    .custom-experience-card-body .custom-text{
        padding: 0;
        margin-bottom: 0.125rem;
        text-align: justify;
    }


    .custom-date3{
        margin-bottom: 0;
    }

    .container-text-recomendacion{
        width: 90%;
    }

    .container-recomendacion {
        width: 90%;
    }

    .container-recomendacion a {
        width: 100%;
    }

    .container-recomendacion img {
        width: 100%;
    }

    .custom-blog {
        width: 100%;
        height: 100dvh;
        min-height: 100vh;
        background: var(--black);
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    body.page-template-blog .custom-navbar,
    body.page-template-blog .custom-footer {
        display: none !important;
    }


    .tablet {
        width: 100%;
        height: 100dvh;
        min-height: 100vh;
        border-radius: 0;
        background: none;
        box-shadow: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .tablet-screen {
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        background: white;
    }

    @supports (height: 100dvh) {
        .custom-blog,
        .tablet {
        height: 100dvh;
        }
    }

    .custom-wallpaper {
        background-color: #FAFBFB;
        background-image: none;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .custom-navbar-imagen {
        width: 100%;
        height: 4.375rem;
        display: inline-block;
        background: var(--black);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .custom-navbar-imagen img {
        height: 100%;
    }

    .tablet-content {
        position: absolute;
        top: 4.375rem;
        width: 100%;
        height: calc(100% - 4.375rem);
        overflow: hidden;
    }

    .content-blog-2 {
        margin: 20px;
        width: auto;
        height: 40px;
        background: var(--francia-berna);
        border-radius: 10px;
        text-align: center;
    }

    .content-blog-2 a{
        text-decoration: none;
        font-family: var(--secondary-text);
        color: white;
        text-align: center;
        font-size: 25px;
    }
    .custom-fixed-image {
        position: absolute;
        top: 4.375rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        z-index: 2;
    }

    .custom-fixed-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .tablet-nav {
        position: fixed ;
        bottom: 0 ;
        left: 0 ;
        width: 100% ;
        height: 4.375rem;
        background: var(--black);
        border-top: 0.0625rem solid var(--francia-berna);
        z-index: 1000;
    }

    .tablet-nav button {
        background: none;
        border: none;
        color: var(--dark-white);
        font-size: 1.375rem;
        flex: 1;
        transition: all 0.3s ease;
    }

    .tablet-nav button.active,
    .tablet-nav button:hover {
        color: var(--francia-berna);
        transform: scale(1.15);
    }

    .view {
        height: calc(100% - 4.375rem);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.9375rem;
    }

    .view::-webkit-scrollbar {
        display: none; 
    }

    #view-articulo {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(0.1);
        padding: 1.25rem;
    }

    #view-articulo .btn-volver {
        width: 100%;
        text-align: center;
        background: var(--francia-berna);
        color: var(--black);
        border: none;
        border-radius: 0.625rem;
        font-size: 1.0rem;
        padding: 0.625rem 0;
        margin-bottom: 0.9375rem;
    }

    #view-articulo .custom-article-full {
        display: block;
        text-align: justify;
    }

    #view-articulo .custom-article-full img {
        width: 100%;
        height: auto;
        border-radius: 0.9375rem;
        margin-bottom: 0.625rem;
    }


    .custom-h3 {
        font-size: 1.125rem;
    }

    .custom-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}


@media (min-width: 481px) and (max-width: 768px) {
    .landing {
        width: 100%;
        height: auto;
    }

    .landing-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .landing-col-left {
        width: 100%;
        margin-bottom: 1.875rem;
    }

    .landing-col-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .landing-col-right img {
        width: 60%;
        height: auto;
        margin: auto;
    }

    .custom-h1 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.9375rem;
    }

    .custom-h2 {
        font-size: 1.25rem;
    }

    .custom-h2-dos {
        font-size: 1.875rem!important;
    }

    .custom-h4{
        font-size: 1.875rem;
    }

    .custom-line {
        margin: 0.9375rem auto;
        width: 80%;
    }

    .custom-text {
        font-size: 0.875rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .custom-button-container {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .custom-button,
    .custom-button-outline {
        margin: auto;
        width: 45%;
        text-align: center;
        font-size: 0.75rem;
    }

    .custom-toggler {
        font-size: 1.625rem;
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding-right: 0.625rem;
        display: inline-block;
    }

    .container-foto-sobremi{
        width: 40%;
        align-self: center;
        margin-bottom: 20px;

    }

    .container-foto-sobremi img{
        width: 100%;
        height: 100%;
    }

    .container-texto-sobremi {
        width: 80%;
    }

    .navbar-collapse {
        justify-content: center;
    }

    .navbar-collapse.show {
        background: var(--black);
    }

    .custom-footer .row {
        text-align: center;
        padding: 0;
    }

    .custom-footer .col-3,
    .custom-footer .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5625rem;
    }

    .custom-footer p {
        max-width: 31.25rem;
        margin: 0 auto;
    }

    .custom-footer-link {
        justify-content: center !important;
    }

    .custom-card-uno {
        width: 100%;
        height: auto;
        margin-bottom: 0.9375rem;
    }

    .custom-icon-card-uno{
        height: 3.75rem;
        width: 3.75rem;
    }

    .custom-icon-card-uno i{
        font-size: 1.5625rem;
    }

    .custom-cv {
        width: 100%;
        padding: 0!important;
        height: auto;
        border: none;
        background: rgba(1, 1, 1, 0);
    }

    .foto-cv {
        width: 9.375rem;
        height: 9.375rem;
    }

    .custom-cv-text{
        width: 80%;
        padding: 0.625rem;
        font-size: 1.0rem;
        align-self: center;
        margin: 0 10%;
    }

    .custom-cv-header h3{
        display: none!important;
    }

    .custom-cv-index {
        background: rgba(1, 1, 1, 0);
        border: none;
    }

    .custom-container-blog img {
        height: 1.875rem;
    }

    body.page-template-blog .custom-navbar,
    body.page-template-blog .custom-footer {
        display: none !important;
    }


    .tablet {
        width: 100%;
        height: 100dvh;
        min-height: 100vh;
        border-radius: 0;
        background: none;
        box-shadow: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .tablet-screen {
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        background: white;
    }

    @supports (height: 100dvh) {
        .custom-blog,
        .tablet {
        height: 100dvh;
        }
    }

    .custom-wallpaper {
        background-color: #FAFBFB;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100%;
    }

    .custom-navbar-imagen {
        height: 4.375rem;
        height: 8%;
        display: inline-block;
        background: var(--black);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .custom-navbar-imagen img {
        height: 100%;
    }

    .tablet-content {
        position: absolute;
        top: 4.375rem;
        width: 100%;
        height: calc(100% - 4.375rem);
        overflow: hidden;
    }

    .content-blog-2 {
        margin: 20px;
        width: auto;
        height: 40px;
        background: var(--francia-berna);
        border-radius: 10px;
        text-align: center;
    }

    .content-blog-2 a{
        text-decoration: none;
        font-family: var(--secondary-text);
        color: white;
        text-align: center;
        font-size: 25px;
    }

    .tablet-nav {
        position: fixed ;
        bottom: 0 ;
        left: 0 ;
        width: 100% ;
        height: 4.375rem;
        background: var(--black);
        border-top: 0.0625rem solid var(--francia-berna);
        z-index: 1000;
    }

    .tablet-nav button {
        background: none;
        border: none;
        color: var(--dark-white);
        font-size: 1.375rem;
        flex: 1;
        transition: all 0.3s ease;
    }

    .tablet-nav button.active,
    .tablet-nav button:hover {
        color: var(--francia-berna);
        transform: scale(1.15);
    }

    .view {
        height: calc(100% - 4.375rem);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.9375rem;
    }

    .view::-webkit-scrollbar {
        display: none; 
    }

    #view-articulo {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(0.1);
        border-radius: 1.25rem;
        padding: 1.25rem;
    }

    #view-articulo .btn-volver {
        width: 100%;
        text-align: center;
        background: var(--francia-berna);
        color: var(--black);
        border: none;
        border-radius: 0.625rem;
        font-size: 1.0rem;
        padding: 0.625rem 0;
        margin-bottom: 0.9375rem;
    }

    #view-articulo .custom-article-full {
        display: block;
        text-align: justify;
    }

    #view-articulo .custom-article-full img {
        width: 100%;
        height: auto;
        border-radius: 0.9375rem;
        margin-bottom: 0.625rem;
    }

    .custom-h3 {
        font-size: 1.125rem;
    }

    .custom-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .custom-blog-foto-cont{
        padding: 0.9375rem !important;
    }

    .custom-highlight {
        height: auto;
        background: var(--black);
    }

    .custom-experience-card-dos {
        background: var(--dark-grey);
        width: 100%;
        border-radius: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        padding: 0.9375rem;
        margin-bottom: 0.9375rem;
        min-height: auto;
        height: auto;
    }

    .custom-section-left,
    .custom-section-right {
        width: 100%;
    }

    .custom-section-right{
        width: 100%;
        padding: 0!important;
        flex-direction: row-reverse!important;
    }

    .custom-section-left p {
        text-align: justify;
    }

    .custom-date {
        width: 100%; 
        padding: 0!important;
        text-align: start;
        margin-bottom: 0.625rem;
    }


    .custom-large-button {
        max-width: 100%;
    }

    .custom-contact-container-left{
        display: none!important;
    }

    .custom-container-form{
        margin: 0.625rem;
        width: 95%;
        height: auto;
    }

    .custom-container-form a{
        width: 100%;
    }

    .custom-card-dos {
        background: rgba(1, 1, 1, 0);
        border: none;
        padding: 0 0.3125rem;
    }

    .custom-aside-row-2 {
        width: 100%;
    }

    .custom-aside-row{
        height: auto;
    }

    .custom-curriculum-card{
        height: 6.25rem;
        padding: 0 0.625rem;
        width: 96%;
        margin: 0 2%;
        margin-bottom: 0.625rem;
    }

    .custom-icon-curriculum {
        display: none;
    }

    .custom-curriculum-text{
        width: 100%;
        margin: 0;
    }
    .custom-textc{
        margin: 0;
        align-self: flex-end;
        font-size: 0.875rem;
    }

    .custom-date2 {
        margin: 0;
        align-self: flex-end;
    }

    .custom-curriculum-content {
        height: auto;
        width: 100%;
        padding: 0 0.3125rem;
    }

    .custom-experience-card-header-icon{
        display: none;
    }

    .custom-experience-card-title{
        width: 100%;
        padding: 0;
    }

    .custom-experience-card-body .custom-text{
        padding: 0;
        margin-bottom: 0.125rem;
        text-align: justify;
    }

    .custom-date3{
        margin-bottom: 0;
    }

    .container-text-recomendacion{
        width: 90%;
    }

    .container-recomendacion {
        width: 90%;
    }

    .container-recomendacion a {
        width: 100%;
    }

    .container-recomendacion img {
        width: 100%;
    }

    .custom-blog {
        width: 100%;
        height: 100dvh;
        min-height: 100vh;
        background: var(--black);
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    body.page-template-blog .custom-navbar,
    body.page-template-blog .custom-footer {
        display: none !important;
    }
}

/* Tablets (769px a 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {


    .landing {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .landing-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .landing-col-left {
        width: 100%;
        margin-bottom: 2.5rem;
    }

    .landing-col-right {
        width: 80%;
        display: flex;
        justify-content: center;
    }

    .landing-col-right img {
        width: 60%;
        height: auto;
        border-radius: 1.25rem;
    }

    .custom-h1 {
        font-size: 2.0rem;
        line-height: 1.3;
    }

    .custom-text {
        font-size: 1.0rem;
        line-height: 1.5;
        text-align: center;
    }

    .custom-button-container {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .custom-button,
    .custom-button-outline {
        margin: auto;
        width: 45%;
        text-align: center;
        font-size: 0.875rem;
    }

    .container-foto-sobremi{
        width: 100%;
    }

    .container-foto-sobremi img{
        width: 50%;
        height: 100%;
        margin: 0 25%;
        margin-bottom: 20px;
    }

    .container-texto-sobremi {
        width: 100%
    }

    .container-foto-sobremi .custom-text {
        width: 100%;
    }

    .navbar-collapse {
        justify-content: flex-end;
    }

    .navbar-nav {
        text-align: right;
        width: 100%;
    }

    .custom-experience-card-dos {
        background: var(--dark-grey);
        width: 100%;
        border-radius: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        padding: 0.9375rem;
        margin-bottom: 0.9375rem;
        min-height: auto;
        height: auto;
    }

    .navbar-nav .nav-link {
        padding-right: 0.625rem;
        display: inline-block;
    }

    .navbar-collapse.show {
        background: var(--black);
    }
    
    .custom-footer .row {
        text-align: center;
        padding: 0;
    }

    .custom-footer .col-3,
    .custom-footer .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5625rem;
    }

    .custom-footer p {
        max-width: 31.25rem;
        margin: 0 auto;
    }

    .custom-footer-link {
        justify-content: center !important;
    }

    .container-foto-sobremi {
        width: 25%;
    }

    .container-foto-sobremi {
        width: 100%;
        height: 100%;
    }

    .custom-card-uno{
        width: 100%;
        height: auto;
        margin-bottom: 0.9375rem;
    }

    .custom-aside-img-container{
        padding-left: 0;
    }

    .custom-aside-row .foto-cv{
        width: 100%;
        height: auto;
        margin: auto;
    }

    .custom-cv{
        width: 60%;
    }

    .custom-cv-index {
        height: auto;
        padding: 0!important;
        background: rgba(1, 1, 1, 0);
        border: none;
        margin-bottom: 0!important;
    }

    .custom-cv-text p{
        font-size: 0.875rem;
        text-align: left;
    }

    .custom-index-button {
        width: 50%;
    }

    .custom-title-article p {
        text-align: left!important;
    }

    .custom-section-right a {
        width: 100%;
    }

    .custom-container-blog {
        height: auto;
    }

    .custom-button-index-blog{
        width: 40%;
        margin-bottom: 0.9375rem;
    }

    .custom-contact-container-left{
        display: none!important;
    }

    .custom-container-form{
        margin: 0.625rem;
        width: 95%;
        height: auto;
    }

    .custom-contact {
        height: auto;
    }

    .custom-container-form a{
        width: 100%;
    }

    .custom-footer {
        height: auto;
    }

    .custom-aside-row {
        margin-bottom: 1.25rem;
    }

    .custom-cv {
        height: auto;
        margin-bottom: 0!important;
        background: rgba(1, 1, 1, 0);
        border: none;
    }

    .custom-cv p{
        text-align: justify;
    }

    .custom-card-dos {
        width: 90%;
    }

    .custom-experience-card-dos {
        min-height: 100%;
    }

    .custom-curriculum-container .col-md-12{
        margin-bottom: 20px;
    }

    .custom-experience-card-title h4 {
        font-size: 1rem;
    }

    .custom-experience-card-body .custom-text {
        font-size: 0.875rem;
        text-align: justify;
    }

    .custom-icon-card-uno p {
        text-align: justify;
    }

    .custom-h5-2 {
        font-size: 1.125rem;
    }

    .container-text-recomendacion{
        width: 80%;
        text-align: center;
    }

    .custom-aside-row-2 {
        width: 100%;
    }

    .custom-h6 {
        display: inline-block;
        width: 100%;
        font-family: var(--main-text);
        font-size: 0.875rem;
        color: var(--dark-white);
        text-align: center;
    }

    .custom-h6-2   {
        display: inline-block;
        width: 100%;
        font-family: var(--main-text);
        font-size: 1.125rem;
        color: var(--dark-white);
        text-align: center;
    }

    .custom-blog {
        height: 100vh ;
        width: 100% ;
        background: var(--black) ;
        margin: 0 ;
        padding: 0 ;
        overflow: hidden ;
    }

    body.page-template-blog .custom-navbar,
    body.page-template-blog .custom-footer {
        display: none !important;
    }


    .tablet {
        width: 100% ;
        height: 100vh ;
        border-radius: 0 ;
        background: none ;
        box-shadow: none ;
        position: fixed ;
        top: 0 ;
        left: 0 ;
        z-index: 999 ;
    }

    .tablet-screen {
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: white;
    }

    .custom-wallpaper {
        background-color: #FAFBFB;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100%;
    }

    .custom-navbar-imagen {
        width: 100%;
        height: 4.375rem;
        display: inline-block;
        background: var(--black);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .custom-navbar-imagen img {
        height: 100%;
    }

    .tablet-content {
        position: absolute;
        top: 4.375rem;
        width: 100%;
        height: calc(100% - 4.375rem);
        overflow: hidden;
    }

    .content-blog-2 {
        margin: 20px;
        width: auto;
        height: 40px;
        background: var(--francia-berna);
        border-radius: 10px;
        text-align: center;
    }

    .content-blog-2 a{
        text-decoration: none;
        font-family: var(--secondary-text);
        color: white;
        text-align: center;
        font-size: 25px;
    }

    .tablet-nav {
        position: fixed ;
        bottom: 0 ;
        left: 0 ;
        width: 100% ;
        height: 4.375rem;
        background: var(--black);
        border-top: 0.0625rem solid var(--francia-berna);
        z-index: 1000;
    }

    .tablet-nav button {
        background: none;
        border: none;
        color: var(--dark-white);
        font-size: 1.375rem;
        flex: 1;
        transition: all 0.3s ease;
    }

    .tablet-nav button.active,
    .tablet-nav button:hover {
        color: var(--francia-berna);
        transform: scale(1.15);
    }

    .view {
        height: calc(100% - 4.375rem);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.9375rem;
    }

    .view::-webkit-scrollbar {
        display: none; 
    }

    #view-articulo {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(0.1);
        padding: 1.25rem;
    }

    #view-articulo .btn-volver {
        width: 100%;
        text-align: center;
        background: var(--francia-berna);
        color: var(--black);
        border: none;
        border-radius: 0.625rem;
        font-size: 1.0rem;
        padding: 0.625rem 0;
        margin-bottom: 0.9375rem;
    }

    #view-articulo .custom-article-full {
        display: block;
        text-align: justify;
    }

    #view-articulo .custom-article-full img {
        width: 100%;
        height: auto;
        border-radius: 0.9375rem;
        margin-bottom: 0.625rem;
    }


    .custom-h3 {
        font-size: 1.125rem;
    }

    .custom-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* Desktop estándar (1025px en adelante) */
@media (min-width: 1025px) {
    .custom-navbar {
        width: 100%;
        background: var(--black);
        border-bottom: 0.0312rem solid var(--dg-negro-dos);
        padding: 0.625rem 1.25rem;
        position: relative;
        z-index: 1000;
    }

    .custom-toggler {
        border: none;
        background: none;
        color: var(--francia-berna);
        font-size: 1.75rem;
        z-index: 1100;
        position: relative;
    }

    .custom-toggler:focus {
        outline: none;
        box-shadow: none;
    }


    .custom-header-logo{
        height: 2.5rem;
    }

    .navbar-brand:hover {
        color: var(--dark-white);
    }

    .navbar-nav {
        list-style: none!important;
    }

    .navbar-bar{
        font-family: var(--secondary-text);
    }


    .nav-link{
        color: var(--dark-white);
        transition: color 0.5s ease;
        margin: 0 0.9375rem;
    }

    .nav-link.active,
    .menu-item.active > a {
        font-weight: 900;
        color: var(--francia-berna) !important;
    }

    .nav-link:hover{
        color: var(--francia-berna)!important;
    }

    .nav-link:focus{
        color: var(--francia-berna)!important;
    }


    .custom-button {
        background: linear-gradient(
            90deg,
            var(--dg-fb-uno),
            var(--dg-fb-dos),
            var(--dg-fb-tres)
        );
        background-size: 300%;
        border-radius: 0.625rem;
        color: var(--black);
        cursor: pointer;
        display: inline-block;
        align-items: center;
        transition: color 0.3s ease;
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
        padding-left: 1.5625rem!important;
        padding-right: 1.5625rem !important;
        text-decoration: none;
        margin-right: 0.625rem;
    }
    .custom-button:hover {
        animation: metallic-gradient 2.5s linear infinite;
        color: var(--dark-grey)!important;
    }

    .custom-button:hover i {
        animation: arrow-loop 1s ease-in-out infinite;
    }

    .custom-button-outline {  
        border-radius: 0.625rem;
        color: var(--dark-white);
        cursor: pointer;
        display: inline-block;
        align-items: center;
        transition: color 0.3s ease;
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
        padding-left: 1.5625rem!important;
        padding-right: 1.5625rem !important;
        text-decoration: none;
        border: 0.0625rem solid var(--francia-berna);
    }

    .menu {
        text-align: center;
    }

    .menu li{
        padding: 0.3125rem;
    }

    .custom-button-outline:hover {
        background: linear-gradient(
            90deg,
            var(--dg-fb-uno),
            var(--dg-fb-dos),
            var(--dg-fb-tres)
        );
        background-size: 300%;
        transition: color 0.3s ease;
        color: var(--dark-grey);  
        animation: metallic-gradient 2.5s linear infinite;
    }

    .custom-button-outline:hover i {
        animation: arrow-loop-down 1s ease-in-out infinite;
    }

    .custom-aside {
    overflow-x: hidden;
    }

    .row {
    margin-right: 0;
    margin-left: 0;
    }

    @keyframes metallic-gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    @keyframes arrow-loop {
        0% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(0.125rem);
        }
        50% {
            transform: translateX(0);
        }
        75% {
            transform: translateX(-0.125rem);
        }
        100% {
            transform: translateX(0);
        }
    }

    @keyframes arrow-loop-down {
        0% {
            transform: translateY(0);
        }
        25% {
            transform: translateY(0.125rem);
        }
        50% {
            transform: translateY(0);
        }
        75% {
            transform: translateY(-0.125rem);
        }
        100% {
            transform: translateY(0);
        }
    }

    .landing {
        width: 100%;
        height: 90vh;
        background: #040404;
    }

    .landing-row{
        height: 100%;
    }

    .container-mapa {
        width: 100%;
    }

    .container-mapa img{
        width: 100%;
        border-radius: 20px;
        border: 1px solid var(--francia-berna);
    }

    .custom-h1{
        font-family: var(--main-text);
        font-weight: 800;
        font-size: 2.5rem;
        color: var(--dark-white);
    }

    .custom-text {
        font-family: var(--secondary-text);
        color: var(--dark-white);
    }

    .custom-line {
        width: 100%;
        height: 0.0625rem;
        background: var(--francia-berna);
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .custom-span {
        color: var(--francia-berna);
    }

    .landing-col-right {
        padding: 0 auto;
    }

    .landing-col-right img {
        height: 90vh;
    }

    .custom-h2{
        font-family: var(--main-text);
        font-weight: 800;
        font-size: 2.25rem;
        color: var(--dark-white);
    }

    main {
        background: linear-gradient(var(--secondary-black), var(--black));
        border-bottom: 0.0625rem solid var(--dark-grey);
        position: relative;
        top: 0;
        width: 100%;
        min-height: 100vh;
        overflow: visible;
        z-index: 1;
    }


    .custom-card-uno {
        height: 31.25rem;
        border: 0.0625rem solid var(--francia-berna);
        border-radius: 1.25rem;
        background: linear-gradient(var(--dg-negro-dos), var(--dg-negro-uno));
        width: 32%;
    }

    .custom-icon-card-uno{
        height: 6.25rem;
        width: 6.25rem;
        border-radius: 0.625rem;
        background: var(--francia-berna);
        text-align: center;
        margin:  3.125rem auto;
    }

    .custom-icon-card-uno i {
        color: var(--dark-grey);
        font-size: 3.75rem;
        line-height: 3.75rem;
    }

    .custom-h3 {
        font-family: var(--main-text);
        font-weight: 700;
        color: var(--dark-white);
    }

    .custom-row-cards{
        width: 80%;
        margin: auto;
    }

    .custom-banner {
        max-width: 100%;
        width: 100%;
    }

    .custom-numbers {
        max-width: 100%;
        width: 100%;
    }

    .custom-card-tres{
        padding: 0.625rem;
        height: auto;
        border-radius: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .custom-img-sobre-mi-1{
        display: inline-block;
        width: 30%;
        border-radius: 1.25rem;
    }

    .custom-card-tres .custom-text{
        display: inline-block;
        padding-left: 0.625rem;
        width: calc(60%);
        height: auto;
        font-family: var(--secondary-text);
        font-weight: 500;
        text-align: justify;
    }

    .container-foto-sobremi{
        width: 30%;
        align-self: center;
        margin: 0 auto;
    }

    .container-foto-sobremi img{
        width: 256px;
        height: 256px;
        border-radius: 50%;
        align-self: center;
        margin: 0 auto;
        border: 5px solid var(--francia-berna);
    }

    .container-texto-sobremi {
        width: 60%;
    }

    .container-texto-sobremi .custom-text{
        width: 100%;
    }

    .custom-container-gusto-1 {
        width: 100%;
        align-items: stretch;
        min-height: 100%;
        height: auto;
        background: linear-gradient(var(--dg-negro-dos), var(--dg-negro-uno));
        padding: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        border-radius: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .custom-francia-text {
        font-family: var(--secondary-text);
        font-size: 1.25rem;
        color: var(--francia-berna);
        font-weight: 600;
        text-align: center;
    }

    .custom-h4 {
        color: var(--francia-berna);
        font-family: var(--main-text);
        font-weight: 900;
        font-size: 3.75rem;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .wpforms-field-limit-text {
        font-family: var(--secondary-text)!important;
        color: var(--dark-white)!important;
    }

    div.wpforms-container-full .wpforms-confirmation-container-full {
        background: linear-gradient(
            90deg,
            var(--dg-fb-uno),
            var(--dg-fb-dos),
            var(--dg-fb-tres)
        ) !important;
        background-size: 300% !important;
        animation: metallic-gradient 3s linear infinite !important;
        border: none !important;
        border-radius: 0.75rem !important;
        color: var(--black) !important;
        font-family: var(--secondary-text) !important;
        font-weight: 600 !important;
        text-align: center !important;
        padding: 1rem 1.25rem !important;
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3) !important;
    }

    div.wpforms-container-full .wpforms-confirmation-container-full[style],
    div.wpforms-container-full .wpforms-confirmation-container-full *[style] {
        background: linear-gradient(
            90deg,
            var(--dg-fb-uno),
            var(--dg-fb-dos),
            var(--dg-fb-tres)
        ) !important;
        color: var(--black) !important;
    }

    div.wpforms-container-full .wpforms-confirmation-container-full p {
    color: var(--black) !important;
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    }

    @keyframes fadeInConfirmation {
    from { opacity: 0; transform: translateY(0.5rem); }
    to { opacity: 1; transform: translateY(0); }
    }
    div.wpforms-container-full .wpforms-confirmation-container-full {
    animation: fadeInConfirmation 0.8s ease-out, metallic-gradient 3s linear infinite !important;
    }



    .custom-h6 {
        display: inline-block;
        width: 100%;
        font-family: var(--main-text);
        font-size: 1.125rem;
        color: var(--dark-white);
        text-align: center;
    }

    .custom-h6-2   {
        display: inline-block;
        width: 100%;
        font-family: var(--main-text);
        font-size: 1.375rem;
        color: var(--dark-white);
        text-align: center;
    }

    .custom-h6 span {
        font-size: 1.875rem;
    }

    .custom-text-gustos{
        display: inline-block;
        font-family: var(--secondary-text);
        color: var(--dark-white);
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
    }

    .custom-img-gustos {
        width: 95%;
        margin: 2.5%;
        overflow: hidden;
        display: inline-block;     
        border-radius: 0.625rem; 
    }

    .custom-img-gustos:hover {
        width: 95%;
        margin: 2.5%;
    }

    .custom-img-gustos img{
        max-width: 100%;   
        border-radius: 0.625rem; 
        transition: transform 0.5s ease; 
        height: auto;
    }

    .custom-img-gustos:hover img{
        transform: scale(1.1);
        filter: brightness(1.1);
        box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3);
    }

    .custom-aside{
        background: var(--black);
    }

    .foto-cv {
        border-radius: 1.25rem;
        border: 0.0625rem solid var(--francia-berna);
        height: 40vh;
    }

    .custom-aside-row-2{
        width: 80%;
    }

    .custom-aside-row-2 .col-sm-3{
        padding-bottom: 20px;
    }

    .custom-cv {
        height: 40vh;
        border: 0.0625rem solid var(--francia-berna);
        border-radius: 1.25rem;
        background: linear-gradient(var(--dg-negro-dos), var(--dg-negro-uno));
    }

    .fa-bullseye {
        color: var(--francia-berna);
        font-size: 2.5rem;
        align-self: center;
    }

    .custom-button-cv {
        width: 100%;
        border-radius: 0.625rem;
        color: var(--dark-white);
        cursor: pointer;
        display: inline-block;
        align-items: center;
        transition: color 0.3s ease;
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
        padding-left: 1.5625rem!important;
        padding-right: 1.5625rem !important;
        text-decoration: none;
        border: 0.0625rem solid var(--francia-berna);
        text-align: center;
        margin-bottom: 40px;
    }

    .custom-button-cv:hover {
        background: linear-gradient(
            90deg,
            var(--dg-fb-uno),
            var(--dg-fb-dos),
            var(--dg-fb-tres)
        );
        background-size: 300%;
        transition: color 0.3s ease;
        color: var(--dark-grey);  
        animation: metallic-gradient 2.5s linear infinite;
    }

    .custom-button-cv:hover i {
        animation: arrow-loop-link 1s ease-in-out infinite;
    }

    @keyframes arrow-loop-link {
        0% {
            transform: translateY(0);
        }
        25% {
            transform: translateY(0.125rem);
        }
        50% {
            transform: translateY(0);
        }
        75% {
            transform: translateY(-0.125rem);
        }
        100% {
            transform: translateY(0);
        }
    }

    .custom-container-blog {
        background: var(--secondary-black);
        height: auto;
    }

    .custom-container-blog img {
        height: 3.25rem;
    }

    .custom-navbar-imagen {
        display: none;
        width: 100%;
        background-color: var(--black);
        text-align: center;
        height: auto;
    }


    .custom-highlight {
        height: auto;
        border: 0.0625rem solid var(--francia-berna);
        border-radius: 1.25rem;
        background: linear-gradient(to bottom right var(--dg-negro-uno), var(--dg-negro-dos));
        width: 100%;
        background: var(--black);
    }

    .custom-h2-tablet-lg {
        font-size: 2.25rem;
        margin-left: 1%;
    }

    .custom-title-article{
        width: 100%;
    }

    .custom-title-article .custom-h3{
        font-size: 1.375rem;
    }


    #view-articulo {
        background: rgba(10, 10, 10, 0.75);
        backdrop-filter: blur(0.875rem); 
        -webkit-backdrop-filter: blur(0.875rem);
        overflow-y: auto;
        padding: 1.5625rem;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        animation: fadeInArticle 0.6s ease forwards;
    }

    .btn-volver {
        background: none;
        border: none;
        color: var(--francia-berna);
        font-size: 1.0rem;
        font-family: var(--secondary-text);
        margin-bottom: 0.625rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

    .btn-volver:hover {
        color: var(--white);
    }

    .articulo-content {
        font-family: var(--secondary-text);
        color: var(--dark-white);
        line-height: 1.6;
    }

    .loading {
        text-align: center;
        color: var(--francia-berna);
        font-family: var(--secondary-text);
        margin: 1.25rem 0;
    }

    .fade-in-post {
        animation: fadeIn 0.6s ease forwards;
    }

    @keyframes fadeIn {
    from { opacity: 0; transform: translateY(1.25rem); }
    to { opacity: 1; transform: translateY(0); }
    }

    .custom-section{
        color: var(--francia-berna);
        font-family: var(--secondary-text);
        font-weight: 600;
        text-decoration: none;
        font-size: 0.875rem;
        height: 1.5rem;
        line-height: 0.875rem;
        width: auto;
        background: var(--bg-section);
        padding: 0.375rem 0.75rem;
        border-radius: 1.5rem;
        border: 0.0625rem solid var(--francia-berna);
    }

    .custom-section:hover{
        color: var(--secondary-black);
        background: var(--francia-berna);
        border: 0.0625rem solid var(--bg-section);
    }


    .custom-section-left{
        width: 70%;
    }

    .custom-section-right {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;  
        justify-content: space-between;
        min-height: 100%;
    }

    .custom-date {
        color: var(--dark-white);
        text-align: right;
        width: 100%;
        margin-bottom: auto;
    }

    .custom-large-button {
        width: 100%;
        margin-top: auto;
        text-align: center;
    }

    .custom-contact{
        height: auto;
        background: var(--black);
        padding-bottom: 1.875rem;
    }


    @keyframes fadeInArticle {
    from {
        opacity: 0;
        transform: translateY(1.5625rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    #view-articulo .btn-volver {
        background: linear-gradient(
            90deg,
            var(--dg-fb-uno),
            var(--dg-fb-dos),
            var(--dg-fb-tres)
        );
        border: 0.0625rem solid var(--francia-berna);
        color: var(--black);
        font-size: 0.9375rem;
        font-family: var(--secondary-text);
        border-radius: 0.625rem;
        padding: 0.5rem 0.875rem;
        margin-bottom: 0.9375rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        transition: all 0.3s ease;
    }

    #view-articulo .btn-volver:hover {
        color: var(--black);
        outline: 0.125rem solid white;
    }

    #view-articulo .custom-article-full {
        background:linear-gradient(var(--dg-negro-uno), var(--dg-negro-dos));
        border: 0.0625rem solid var(--francia-berna);
        border-radius: 1.25rem;
        padding: 2.5rem;
        color: var(--dark-white);
        line-height: 1.8;
        box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }

    #view-articulo .custom-article-full .text-content {
        width: 100%;
    }

    #view-articulo .custom-article-full p{
        text-align: justify;
    }

    #view-articulo .custom-article-full a{
        color: var(--francia-berna);
    }

    #view-articulo .custom-article-full img {
        width: 48%;
        border-radius: 0.625rem;
        margin-right: 2%;
        object-fit: cover;
    }

    #view-articulo .custom-article-full h2,
    #view-articulo .custom-article-full h3,
    #view-articulo .custom-article-full h4 {
        color: var(--dark-white);
        margin-bottom: 1.25rem;
    }

    .custom-img-contact{
        height: 100vh;
        border-radius: 1.25rem;
        border: 0.0625rem solid var(--francia-berna);
    }

    .custom-container-form{
        height:auto;
        background:linear-gradient(var(--dg-negro-uno), var(--dg-negro-dos));
        border:0.0625rem solid var(--francia-berna);
        border-radius:1.25rem;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
    }

    .custom-container-form .custom-form-wrapper{
        width:100%;
    }
    .custom-container-form .wpforms-form{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:0.75rem;
    }

    .custom-container-form .wpforms-field{
        width:100%;
        margin:0 0 0.3125rem 0 !important;
    }

    .custom-container-form .wpforms-form label.wpforms-field-label,
    .custom-container-form .wpforms-form .wpforms-field-sublabel{
        color:var(--dark-white) !important;
        font-family:var(--secondary-text) !important;
        font-weight:600;
        margin-bottom:0.375rem !important;
    }

    .custom-container-form .wpforms-form input[type="text"],
    .custom-container-form .wpforms-form input[type="email"],
    .custom-container-form .wpforms-form textarea{
        width:100% !important;
        padding:0.3125rem !important;
        border-radius:0.3125rem !important;
        background:#2E3138 !important;
        border:none !important;
        outline:none !important;
        color:var(--dark-white) !important;
        font-family:var(--secondary-text) !important;
        box-shadow:none !important;
        margin-bottom: 0.3125rem!important;
    }

    .custom-container-form .wpforms-form input[type="text"]:hover,
    .custom-container-form .wpforms-form input[type="email"]:hover,
    .custom-container-form .wpforms-form textarea:hover{
        outline:0.0625rem solid var(--francia-berna) !important;
        caret-color:var(--dark-white);
    }
    .custom-container-form .wpforms-form input[type="text"]:focus,
    .custom-container-form .wpforms-form input[type="email"]:focus,
    .custom-container-form .wpforms-form textarea:focus{
        outline:0.0625rem solid var(--francia-berna) !important;
        caret-color:var(--dark-white);
    }

    .custom-container-form .wpforms-form ::placeholder{
        color:var(--dark-white) !important;
        opacity:1;
    }

    .custom-container-form .wpforms-submit,
    .custom-container-form button[type="submit"].wpforms-submit{
        background:var(--francia-berna) !important;
        color:var(--dark-white) !important;
        border:none !important;
        border-radius:0.625rem !important;
        padding:0.625rem 1.25rem !important;
        cursor:pointer !important;
        font-weight:600 !important;
        transition:all .3s ease-in-out !important;
        width:100%
    }
    .custom-container-form .wpforms-submit:hover{
        background:var(--dg-negro-dos) !important;
        outline:0.0625rem solid var(--francia-berna) !important;
    }

    .custom-container-form .wpforms-confirmation-container-full{
        background:transparent !important;
        border:0.0625rem solid var(--francia-berna) !important;
        color:var(--dark-white) !important;
        border-radius:0.625rem !important;
        padding:0.75rem !important;
    }
    .custom-container-form .wpforms-error{
        color:#ff9c9c !important;
    }
    .custom-container-form .wpforms-required-label{
        color:#ff9c9c !important;
    }

    .custom-footer {
        background-color: var(--black);
        color: var(--dark-white);
        padding: 2.5rem 1.25rem;
        border-top: 0.0625rem solid var(--dg-negro-dos);
    }

    .custom-footer h2,
    .custom-footer h6 {
        width: 100%;
        color: var(--francia-berna);
        font-family: var(--secondary-text);
    }

    .custom-footer p {
        font-family: var(--secondary-text);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 0.625rem;
        color: var(--dark-white);
    }

    .custom-footer-link ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .custom-footer-link a {
        text-decoration: none;
        color: var(--dark-white);
        transition: color 0.3s ease;
    }

    .custom-footer-link a:hover {
        color: var(--francia-berna);
    }

    .custom-list-item {
        margin: 0.375rem 0;
        text-align: center;
    }

    .custom-icon-footer {
        width: 3.125rem;
        height: 3.125rem;
        border: 0.0625rem solid var(--francia-berna);
        border-radius: 50%;
        color: var(--francia-berna);
        transition: all 0.3s ease;
        margin-top: 0.625rem;
    }

    .custom-icon-footer:hover {
    background-color: var(--francia-berna);
    color: var(--black);
    transform: scale(1.1);
    }

    .custom-icon-a{
        text-decoration: none;
        height: 4.375rem;
    }

    .custom-card-dos {
        border: 0.0625rem solid var(--francia-berna);
        border-radius: 1.25rem;
        background: linear-gradient(var(--dg-negro-uno), var(--dg-negro-dos));
        max-width: 100%;
        padding: 1.25rem;
    }

    .custom-curriculum-card {
        height: 4.6875rem;
        background: var(--dark-grey);
        border-radius: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        margin-top: 0.625rem;
        margin-bottom: 0.625rem;
    }

    .custom-curriculum-container{
        width: 100%;
    }

    .custom-icon-curriculum {
        width: 3.4375rem;
        height: 3.4375rem;
    }

    .custom-icon-curriculum  i {
        width: 100%;
        height: 100%;
        font-size: 2.1875rem;
        line-height: 2.1875rem;
        text-align: center;
        background: var(--francia-berna);
        color: var(--secondary-black);
        border-radius: 0.3125rem;
        padding: 0.625rem 0;
    }

    .custom-curriculum-content{
        width: 94%;
        padding: 0.125rem 0.9375rem;
        height: 3.4375rem;
        line-height: 1.5625rem;
    }

    .custom-h5 {
        font-family: var(--secondary-text);
        color: var(--dark-white);
        font-size: 1.125rem;
        font-weight: 600;
    }

    .custom-h5-2 {
        font-family: var(--secondary-text);
        color: var(--dark-white);
        font-size: 1.25rem;
        font-weight: 600;
        text-align: start;
        width: 100%;
    }

    .custom-textc {
        font-family: var(--secondary-text);
        color: var(--dark-white);
        display: inline-block;
        width: 90%;
    }

    .custom-date2 {
        display: inline-block;
        width: 10%;
        color: var(--francia-berna);
        font-family: var(--secondary-text);
        font-weight: 800;
        align-self: flex-end;
        text-align: right;
    }

    .custom-experience-card-header {
        width: 100%;
    }

    .custom-experience-card {
        background: var(--dark-grey);
        width: 99%;
        border-radius: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        padding: 0.9375rem;
        margin-bottom: 0.9375rem;
        min-height: auto;
        height: 22.5rem;
    }

    .custom-experience-card-dos {
        background: var(--dark-grey);
        width: 100%;
        border-radius: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        padding: 0.9375rem;
        margin-bottom: 0.9375rem;
        min-height: auto;
        height: 24.375rem;
    }

    .custom-experience-card-cuatro {
        background: var(--dark-grey);
        width: 100%;
        border-radius: 0.625rem;
        border: 0.0625rem solid var(--francia-berna);
        padding: 0.9375rem;
        margin-bottom: 0.9375rem;
        min-height: auto;
        height: auto;
    }

    .custom-experience-card-header-icon {
        height: 5.0rem;
        width: 5.0rem;
        border-radius: 0.3125rem;
        background: var(--francia-berna);
        text-align: center;
        font-size: 2.5rem;
        padding-top:0.625rem;
    }

    .custom-experience-card-title{
        width: calc(99% - 5.0rem);
        height: 5.0rem;
        padding-left: 0.625rem;
    }

    .custom-textc2 {
        font-family: var(--secondary-text);
        color: var(--dark-white);
        display: inline-block;
        width: 100%;
    }


    .custom-date3 {
            color: var(--francia-berna);
            text-align: right;
            width: 100%;
            font-family: var(--secondary-text);
            font-weight: 800;
        }

    .custom-blog{
        height: 90vh;
        width: 100%;
        background: var(--dark-grey);
    }

    .tablet{
        height: 85vh;
        width: 75%;
        background: var(--black);
        border-radius: 3.125rem;
    }

    .tablet-screen {
        width: 92%;
        height: 88%;
        background: white;
    }

    .tablet-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .view {
        position: absolute;
        width: 100%;
        height: calc(100% - 4.375rem);
        top: 100%;
        left: 0;
        opacity: 0;
        transform: translateY(100%);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
        color: var(--dark-white);
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
    }

    .view:not(#view-home) {
        background: rgba(20, 20, 20, 0.6);
        backdrop-filter: blur(0.1);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--francia-berna) transparent;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .custom-fixed-image {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        z-index: 2;
    }

    .custom-fixed-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .view:not(#view-home)::-webkit-scrollbar {
        width: 0.625rem;
    }

    .view:not(#view-home)::-webkit-scrollbar-thumb {
    background-color: var(--francia-berna);
    border-radius: 0.625rem;
    }

    .view:not(#view-home)::-webkit-scrollbar-track {
    background: transparent;
    }

    .view.active {
        top: 0;
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }

    .view.slide-down {
        transform: translateY(100%);
        opacity: 0;
        z-index: 1;
    }

    #view-home {
        background: none;
        overflow: hidden;
    }

    .view::-webkit-scrollbar,
    .tablet-content::-webkit-scrollbar {
        display: none;
    }

    @keyframes fadeSlideIn {
    from {
        transform: translateX(1.875rem);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
    }

    .view.active h3, 
    .view.active p {
    animation: fadeSlideIn 0.5s ease forwards;
    }

    .tablet-nav {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4.375rem;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 100;
    }


    .tablet-nav button {
        background: var(--francia-berna);
        color: var(--dark-white);
        font-family: var(--secondary-text);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 3.75rem;
        height: 3.75rem;
        transition: color 0.3s ease, transform 0.3s ease;
        border-radius: 0.625rem;
    }

    .tablet-nav button:hover,
    .tablet-nav button.active {
    color: var(--black);
    transform: scale(1.05);
    }

    .tablet-nav i {
        font-size: 1.5625rem;
        margin-bottom: 0.25rem;
    }

    .tablet-content::-webkit-scrollbar,
    .view::-webkit-scrollbar {
        display: none;
    }


    .custom-wallpaper {
        background-color: #FAFBFB;
        background-image: none;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .custom-recomendacion-section {
        margin-top: 1.25rem;
    }

    .container-recomendacion {
        margin-top: 0.3125rem;
        width: 100%;
    }

    .container-recomendacion a {
        display: inline-block;
        overflow: hidden; 
        border-radius: 1.25rem;
        border: 0.0625rem solid var(--francia-berna);
    }

    .container-recomendacion img {
        border-radius: 1.25rem;
        transition: transform 0.5s ease; 
    }

    .container-recomendacion a:hover img {
        transform: scale(1.1); 
    }

    .container-text-recomendacion{
        width: 40%;
        text-align: center;
    }

    .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    }

    .navbar-nav .nav-link {
    color: var(--dark-white);
    font-family: var(--secondary-text);
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
    color: var(--francia-berna);
    }

    .navbar-nav .nav-link.active,
    .menu-item.active > a {
    color: var(--francia-berna) !important;
    font-weight: 700;
    }

    .navbar-nav .custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        90deg,
        var(--dg-fb-uno),
        var(--dg-fb-dos),
        var(--dg-fb-tres)
    );
    background-size: 300%;
    color: var(--black) !important;
    font-family: var(--secondary-text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    }

    .navbar-nav .custom-button:hover {
    animation: metallic-gradient 2.5s linear infinite;
    color: var(--dark-grey) !important;
    transform: scale(1.05);
    }

    .navbar-nav .custom-button i {
    margin-left: 0.4rem;
    font-size: 1rem;
    }
}

