/* GENERALES */

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@font-face {
    font-family: aeonik-light;
    src: url(../fonts/Aeonik-Light.ttf)
}

@font-face {
    font-family: aeonik-medium;
    src: url(../fonts/Aeonik-Medium.ttf)
}

@font-face {
    font-family: aeonik-regular-italic;
    src: url(../fonts/Aeonik-RegularItalic.ttf)
}

@font-face {
    font-family: aeonik-regular;
    src: url(../fonts/Aeonik-Regular.ttf)
}

@font-face {
    font-family: morganite-extralight;
    src: url(../fonts/Morganite-ExtraLight.ttf)
}

@font-face {
    font-family: morganite-light;
    src: url(../fonts/Morganite-Light.ttf)
}

@font-face {
    font-family: morganite-extrabold;
    src: url(../fonts/Morganite-ExtraBold.ttf)
}


a {
    text-decoration: none;
    color: inherit;
}

h2 {
    font-family: aeonik-regular;
    font-size: 16px;
}


h4 {
    font-family: morganite-extrabold;
    font-size: 60px;
    letter-spacing: 1px;
}

h5 {
    font-family: morganite-extrabold;
    font-size: 90px;
    padding: 39px;
    letter-spacing: 1px;
}

h6 {
    font-family: morganite-extralight;
    text-align: left;
    letter-spacing: 1px;
}




/* ------- HEADER ------- */

.fondo-gris {
    background-color: #333333;
    padding: 14px;
}


header h2 {
    color: #fcf7f3 !important;
    letter-spacing: 3px;
}

.logo-menu {
    width: 50%;
}

a.nav-link {
    padding: 20px 40px !important;
}

.nav-link {
    color: #fcf7f3;
    transition: color 0.3s ease, transform 0.3s ease;
}


span.navbar-toggler-icon {
    width: 100%;
}

.home {
    background-color: #fcf7f3;
    padding: 220px 180px;
}

.hola h3 {
    font-family: aeonik-regular;
    font-size: 43px;
    text-align: left;
}

.diseñadora h3 {
    font-family: aeonik-regular;
    font-size: 43px;
    text-align: right;
}


.container.home {
    margin: 0;
    padding: 120px;
}

.nav-link:hover {
    color: #d5e8ac;
    transform: scale(1.1);
}


/*  ------- PORTAFOLIO  ------- */

/* ocultar submenú portfolio */
.nav-item.dropdown .dropdown-menu  {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    position: absolute; /* Despliegue*/
    z-index: 1000; /* Evita superposición */
}

.nav-link.dropdown-toggle::after {
    display: none;
}

/* submenú portfolio */

.nav-item .dropdown-menu {
    background-color: #3c3c3c;
    color: white;
    border: none;
    box-shadow: none;
    padding: 10px 20px;
    text-align: left;
}

.nav-item .dropdown-menu .dropdown-item {
    color: white;
    font-size: 14px;
    padding: 10px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: transparent;
}

/* enlaces hover */
.nav-item .dropdown-menu  .dropdown-item:hover {
    background-color: #4f4f4f;
    color: #d5e8ac;
}

/* botón regresar */
.regresar {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 20px 60px;
    font-family: aeonik-regular;
}

.regresar:hover {
    color: #d5e8ac;
}

/* SECCIÓN COMUNICACIÓN CORPORATIVA */

.corporativa {
    background-color: #fcf7f3;
    padding: 30px;
}

.corporativa h2 {
    font-family: morganite-extrabold;
    font-size: 80px;
    letter-spacing: 2px;
    padding: 25px;
    font-weight: bold;
    color: #333333;
}

.corporativa img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corporativa img:hover {
    transform: scale(1.05);
}


/* SECCIÓN COMUNICACIÓN CORPORATIVA - MILENIO */

.milenio {
    background-color: #fcf7f3;
    padding: 30px;
}

.milenio h3 {
    font-family: aeonik-regular;
    font-size: 28px;
    padding: 20px;
    letter-spacing: 4px;
    color: #333333;
}


/* SECCIÓN COMUNICACIÓN CORPORATIVA - DECODE CUSTOMER STRATEGY */

.decodecs {
    background-color: #fcf7f3;
    padding: 3rem 0;
}

.decodecs h3 {
    font-family: aeonik-regular;
    font-size: 28px;
    padding: 20px;
    letter-spacing: 4px;
    color: #333333;
}

/* SECCIÓN COMUNICACIÓN DIGITAL */


.co-digital {
    background-color: #fcf7f3;
    padding: 30px;
}

.co-digital h2 {
    font-family: morganite-extrabold;
    font-size: 80px;
    letter-spacing: 2px;
    padding: 25px;
    font-weight: bold;
    color: #333333;
}


.co-digital p {
    font-family: aeonik-regular;
    font-size: 24px;
    padding: 15px 40px;
    color: #333333;
}

.digital-ejemplo {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.digital-ejemplo img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.digital-ejemplo:hover img {
    transform: scale(1.01);
}

.digital-ejemplo .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #d5e8ac;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-ejemplo:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

/* SECCIÓN BRANDING */

.branding-dg {
    background-color: #fcf7f3;
    padding: 30px;
}

.branding-dg h2 h5 {
    font-weight: bold;
    color: #333333;
}

.branding-dg h2 {
    font-family: morganite-extrabold;
    font-size: 80px;
    letter-spacing: 2px;
    padding: 25px;
}

.branding-dg h5 {
    font-family: morganite-extrabold;
    font-size: 80px;
    letter-spacing: 2px;
    padding: 30px;
}

.modal-body p {
    font-family: aeonik-regular;
    font-size: 24px;
    padding: 15px 40px;
    color: #333333;
    margin-bottom: 20px;
}

.branding-seccion {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.branding-seccion img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.branding-seccion:hover img {
    transform: scale(1.05);
}

.branding-seccion .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #d5e8ac;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branding-seccion:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: #333333;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}


/* SECCIÓN AUDIO Y FOTO */

.audio-foto {
    background-color: #fcf7f3;
    padding: 30px;
}

.audio-foto h2 {
    font-family: morganite-extrabold;
    font-size: 80px;
    letter-spacing: 2px;
    padding: 25px;
    font-weight: bold;
    color: #333333;
}

.foto {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foto:hover {
    transform: scale(1.05); 
}

/* Estilo  modales */
.modal-content {
    overflow: hidden; 
}


/* PORTFOLIO LINKS */

.portfolio-links {
    background-color: #fcf7f3;
}


.btn-custom {
    display: block;
    width: 100%;
    padding: 13px;
    background-color: #d5e8ac;
    color: #333333;
    border-radius: 50px; 
    text-transform: uppercase; 
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custom:hover {
    background-color: #333333; 
    color: #ffffff; 
}

/* BOTÓN ACTIVO */

.btn-custom.activa {
    background-color: #333333; 
    color: #d5e8ac;
    cursor: default; 
}

/* ------- SOBRE MI ------- */

.sobre-mi {
    background-color: #fcf7f3;
    color: #333333;
    display: flex;
    padding: 170px 116px;
    align-items: center;
}

.texto {
    text-align: left !important;
    border-radius: 10%;
    font-size: 15px;
    padding: 34px;
}

.sobre-mi h4 {
    font-family: morganite-extrabold;
    font-size: 80px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #333333;
}

.sobre-mi p {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 22px;
}

.yo {
    align-content: center;
    border-radius: 360px;
    max-width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}


/* ------- EXPERIENCIA ------- */

.experiencia h4 {
    font-family: morganite-extrabold;
    font-size: 80px;
    letter-spacing: 2px;
    padding: 35px;
    font-weight: bold;
    color: #333333;
}

.experiencia p {
    text-align: left;
}

.experiencia {
    background-color: #d5e8ac;
    color: #333333;
    padding: 35px 174px;
    font-size: 22px;
}

.multimedios {
    background-color: #fcf7f3 !important;
    color: #333333;
    border-radius: 32px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
    padding: 48px;
}

.vasa {
    background-color: white !important;
    color: #333333;
    border-radius: 32px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
    padding: 48px;
}


.decode {
    background-color: #333333 !important;
    color: white;
    border-radius: 32px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
    padding: 48px;
}


section .puesto {
    font-weight: bold;
}

section .antiguedad {
    font-family: aeonik-regular-italic;
}

/* ------- CONTACTO -------  */

.contacto {
    background-image: url(../imagenes/back_contacto.jpg);
    background-size: cover;
}

.boton {
    background-color: #d5e8ac;
    color: #333333;
    border: none;
    border-radius: 32px;
    margin: 20px;
    padding: 10px 40px;
}

.hablemos {
    font-size: 25px;
}

.contacto h5 {
    margin-top: 215px;
    margin-bottom: 130px;
    margin-left: 85px;
    font-size: 80px;
    text-align: center;
}

section .colaborar {
    font-size: 80px;
    font-family: morganite-extralight;
}

.pregunta {
    align-items: center;
}

.datos {
    text-align: left;
    font-family: aeonik-light;
    margin: 10px;
}



/* ------- FOOTER ------- */

footer {
    background-color: #333333;
    color: #fcf7f3;
    padding: 25px;
}




/* INICIAN MEDIA QUERIES */

/* Large devices (less than 1200px) */
@media (max-width: 1200px) { 
    .experiencia {
        background-color: #d5e8ac;
        color: #333333;
        padding: 35px 118px;
        font-size: 22px;
 }
}

/* Medium devices (less than 992px) */
@media (max-width: 992px) { 

    .sobre-mi .row {
        display: flex; /* Convierte el contenedor en un flexbox */
        flex-direction: column; /* Asegura que los elementos estén en una columna */
        align-items: center; /* Centra horizontalmente */
    }

}



/* Small devices (less than 768px) *
@media (max-width: 768px) {
}


/* Extra small devices (less than 576px) */
@media (max-width: 576px) { 
    .sobre-mi {
        background-color: #fcf7f3;
        color: #333333;
        display: flex     ;
        padding: 144px 55px;
        align-items: center;
    }
    
    .experiencia {
        background-color: #d5e8ac;
        color: #333333;
        padding: 35px 40px;
        font-size: 22px;
    }

}