/*
Theme Name: Portafolio theme
Author: Lisbet Farias
Version: 1.0
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    
}

/* .box1, .box2, .box3, .box4, .box5 {
    background-color: cadetblue;
}  */
html {
    scroll-behavior: smooth;
  }
body{
    padding-top: 100px;
  background:  linear-gradient(135deg, #ffffff 0%, #fdf7f9 30%, #f6f1f5c9 60% 60%, #fefcfd 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
.layout-wrapper {
    max-width: 1280px; /* o 1440px si prefieres más ancho */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.backgroundmenu {
    position: fixed;
    top: 0;
    left: 50%;       /* posición desde el centro del viewport */
    transform: translateX(-50%); /* mueve el menú para que quede centrado */
    z-index: 9999;
  }
  .logo-wrapper, .menu-wrapper {
 
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  
    background-color:rgb(251 245 255 / 33%);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px; /* o el valor que desees */
    box-shadow: 0 4px 30px rgba(111, 91, 108, 0.1); /* sombra suave opcional */
  }
  
  nav.navbar .navbar-nav .nav-link {
    color: #2C2C2C !important; /* texto oscuro */
    position: relative;        /* para posicionar el ::after dentro del enlace */
    text-decoration: none;     /* eliminamos posibles subrayados por defecto */
  }
  
 
  nav.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px; /* el grosor de la línea */
    background-color: #DD6BA2; /* rosado */
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  nav.navbar .navbar-nav .nav-link:hover::after {
    width: 100%; /* solo crece hasta el ancho del texto */
  }
  
  

.italic{
    font-style: italic;
}

.border-line{
    border-bottom: 1px solid black;
  
}
.cormorant{
    font-family: "Cormorant Garamond", serif;
}
.font-light-italic{
    font-weight: 300;
    font-style: italic;
}
.font-light{
    font-weight: 300;
}
.font-54{
    font-size: 54px;
}

.font-68{
    font-size: 68px;
}
/* HEADER */


.flujo2{
   
    background: radial-gradient(circle, rgba(221, 107, 162, 0.4) 0%, rgba(221, 107, 162, 0) 60%);
 
    background-position: top left;
    background-size: 300px 300px; 
    background-repeat: no-repeat;


}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    grid-column-gap: 10px;
    width: 100%;
    margin: 0 auto;
    
  }
  
  .logo-wrapper {
    grid-area: 1 / 1 / 2 / 2;
    border: 0.5px solid #e3a6c4;
    border-radius:10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .menu-wrapper {
    grid-area: 1 / 2 / 2 / 4;
    border: 0.5px solid #e3a6c4;
    border-radius:10px;
    padding-top: 16px;
    padding-bottom: 16px;

  }
  

.grid-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    /* grid-template-rows: 1fr 1fr 1fr 1fr 1fr;  80px 1fr auto = ancho fijo - lo q sobra - lo q lleve en su interior */
    width: 100%;
    /* height: 656px; */
    margin: 0 auto;
}
.grid-container > * {
    min-height: auto;
    min-width: 0;
   
    text-overflow: ellipsis;
  }
  
  .grid-container img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
  }
  @media (max-width: 767px) {
    .grid-container {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      grid-template-rows: repeat(5, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    } 
  
    .box1 { grid-area: 1 / 1 / 4 / 5 !important; }
    .box2 { grid-area: 1 / 5 / 2 / 9 !important; }
    .box3 { grid-area: 4 / 1 / 6 / 5 !important; }
    .box4 { grid-area: 2 / 5 / 4 / 9 !important; }
    .box5 { grid-area: 4 / 5 / 6 / 9 !important; }
    .grid-container img{
        object-fit: cover;
    }
}
@media (min-width: 768px) and (max-width: 1025px) {
    .grid-container {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(5, auto);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .box1 { grid-area: 1 / 1 / 4 / 4 !important; }
    .box2 { grid-area: 1 / 4 / 2 / 7 !important; }
    .box3 { grid-area: 4 / 1 / 6 / 4 !important; }
    .box4 { grid-area: 2 / 4 / 4 / 7 !important; }
    .box5 { grid-area: 4 / 4 / 6 / 7 !important; }
  }
  
    
.box1{
    grid-area: 1 / 1 / 5 / 2;
    height: 100%;
    position: relative;
    display: inline-block;
}


.box1 img {
    object-fit: cover;
}  
  .glass-info-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    
    background: linear-gradient(135deg,
      rgba(225, 223, 244, 0.2),
      rgba(225, 223, 244, 0.08)
    );
  
    border-radius: 12px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  
    color: rgba(255, 255, 255, 0.85);
 
    text-align: center;
    width: 90%;
    p{
        margin: 0;
        font-weight: 300;
        font-size:15px;
    }
  }
  
  
  /* opcional: brillo decorativo */
  .glass-info-box::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -77%;
    width: 179%;
    height: 132%;
    background: radial-gradient(ellipse at top left, rgb(255 255 255 / 17%), #00000000 70%);
    transform: rotate(1deg);
    pointer-events: none;
    border-radius: 50%;
  }

  
.box2{
    grid-area: 5 / 1 / 6 / 2;
    height: 100%;
    background: linear-gradient(135deg, #F8F7F7 0%, #EAEAEA 100%);
    border-radius: 10px;
}
.box2display{
    align-items: center;
    display: flex;
    justify-content: center;
}
.box3{
    grid-area: 1 / 2 / 4 / 4;
    height: 100%;
    background-image: url(../img/sobremi2.png);
    border-radius: 10px;
    position: relative;
    background-size: cover; 
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index:0;
    color: white;
    font-weight: 500;
    
    
}
.box3::before{
    content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.387); /* el overlay */
  z-index: 1;
  border-radius: 10px;
  
}
.box3 > * {
    position: relative;
    z-index: 2;
  }

.box4{
    grid-area: 4 / 2 / 6 / 3;
    height: 100%;
    border-radius: 10px;
}
.box5{
    grid-area: 4 / 3 / 6 / 4;
    height: 100%;
    border-radius: 10px;

}
.box1:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .box3:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .box4:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  
  .backgroundbox2:hover,
.backgroundbox3:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(129, 127, 126, 0.25); /* sombra acorde a su color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box2:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(200, 200, 200, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }


.botonsobremi{

        text-decoration: none;
        font-weight: 300;
   
            position: relative;
            overflow: hidden;

}
.backgroundbox{
    /* background: linear-gradient(135deg, #F8F7F7 0%, #EAEAEA 100%); */
    border-radius: 10px;

    
}
.backgroundbox2{
    /* padding: 25px !important; */
    margin-bottom: 10px !important;
}
/* .backgroundbox3{
    padding: 25px !important;
} */

.backgroundbox2,
.backgroundbox3 {
  padding: clamp(20px, 2vw, 80px) !important;
}

.text-glass-rosado {
  font-size: clamp(14px, 2vw, 28px);
}

.liquid-glass {
    backdrop-filter: blur(20px);         /* <- desenfoque real */
    -webkit-backdrop-filter: blur(20px); /* <- para compatibilidad Safari */
    background-color: rgba(255, 255, 255, 0.1); /* <- transparente suave */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 26px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);  /* sombra de profundidad */
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.85);
    width: 100%;
 
  }
  
  .liquid-glass-icon {


    width: clamp(90px, 6vw, 130px);
    height: clamp(90px, 6vw, 130px);

      
    position: relative;
    /* width: 90px;
    height: 90px; */
    border-radius: 20px;
    background: 
      linear-gradient(135deg, rgba(221,107,162,0.25), rgba(221,107,162,0.15));
    border: 1.8px solid rgba(242, 199, 220, 0.3);
    
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
 
  }

  /* El brillo superior (highlight) */
  .liquid-glass-icon::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 140%;
    height: 60%;
    background: radial-gradient(ellipse at top left, rgba(255 255 255 / 0.7), transparent 70%);
    transform: rotate(-20deg);
    pointer-events: none;
    border-radius: 50% / 100%;
  }

  /* El brillo inferior */
  .liquid-glass-icon::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 120%;
    height: 80%;
    background: radial-gradient(ellipse at bottom right, rgba(255 255 255 / 0.3), transparent 60%);
    pointer-events: none;
    border-radius: 50% / 100%;
  }

  /* SVG relleno con currentColor */
  .liquid-glass-icon svg path {
    fill: currentColor;
    filter: drop-shadow(0 0 1px rgba(255 255 255 / 0.6));
    transition: filter 0.3s ease;
  }

  /* Color base rosado */
  .liquid-glass-icon {
    color: #DD6BA2;
  }
  .liquid-glass-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(221, 107, 162, 0.186); /* sombra rosada */
   
  }  
  .liquid-glass-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Hover para intensificar brillo y sombra */
  /* .liquid-glass-icon:hover {
    box-shadow:
      inset 0 6px 14px rgba(255 255 255 / 0.85),
      inset 0 -6px 16px rgba(221 107 162 / 0.4),
      0 20px 40px rgba(221 107 162 / 0.3);
    background: linear-gradient(135deg, rgba(221,107,162,0.35), rgba(221,107,162,0.22));
  } */
/* 
  .liquid-glass-icon:hover svg path {
    filter: drop-shadow(0 0 2px rgba(255 255 255 / 0.85));
  } */

  /* ICONOS */
  
  .liquidglass-hora {
    /* background: linear-gradient(135deg, rgba(129, 127, 126, 0.3), rgba(129, 127, 126, 0.15)); */

    background: linear-gradient(135deg, rgb(129 127 126 / 8%), rgba(129, 127, 126, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 22px;
  
    /* Efecto vidrio */
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
  
   
    position: relative;
    overflow: hidden;
    color: #302d2d; /* blanco para contraste */
   
  }
  
 
  
  /* Brillo superior opcional */
  .liquidglass-hora::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -30%;
    width: 160%;
    height: 80%;
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.35), transparent 70%);
    transform: rotate(25deg);
    pointer-events: none;
  }
  
  .liquidglass-botones{
    /* background: linear-gradient(135deg, rgba(221, 107, 162, 0.3), rgba(221, 107, 162, 0.15)); */
    background: linear-gradient(135deg, rgb(129 127 126 / 8%), rgba(129, 127, 126, 0.15));
    border-radius: 16px;
    margin-top: 10px;
  
    /* Efecto vidrio */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  
    border: 1px solid rgba(255, 255, 255, 0.2);

    position: relative;
    overflow: hidden;
   
  }
  .liquidglass-botones::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -30%;
    width: 160%;
    height: 80%;
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.5), transparent 70%);
    transform: rotate(25deg);
    pointer-events: none;
    border-radius: 50%;
  }
  .text-glass-rosado {
    /* background: linear-gradient(234deg, #ff03a4 0%, #057c6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 700; */
    background: linear-gradient(234deg, #353133 0%, #2e3e3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 1px rgb(255 255 255 / 9%);
    font-weight: 400;
    font-size: 18px;
  }



  #reloj {
    color: #3E3E3E;
    font-weight: 200;
    font-size: 3rem;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
  }

/* separacion 1 */

.linea{
    height: 0.5px; 
    background-color: #DD6BA2;
  
}

/* INDEX 2 */

.index2img{
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
/* .index2img {
    transition: transform 0.2s ease;
    will-change: transform;
  }
  
  .index2img:hover {
    transform: perspective(500px) rotateX(5deg) rotateY(5deg);
  }
  
  .index2img {
    position: relative;
    overflow: hidden;
  }
   */



  

  

/* skills */

.skill-wrapper {
    margin-bottom: 20px;
  }
  
  .skill-bar {
  
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F8F7F7 0%, #EAEAEA 100%);
    overflow: hidden;
    padding: 0 20px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .skill-label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
  }
  
 
  
  .skill-fill {
    width: 0; 
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    height: 100%;
    
    border-radius: 999px;
     /* display: flex;
    align-items: center; 
     gap: 15px;  */
    /* padding: 0 20px; */
    color: #000;
    font-weight: 500;
    font-size: 1.2rem;
    
  
    background: linear-gradient(135deg, rgba(221,107,162,0.25), rgba(221,107,162,0.15));
    border: 1.8px solid rgba(242, 199, 220, 0.3);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.2), 0 4px 10px rgba(221,107,162,0.3);
    
    transition: width 0.1s linear;  
    overflow: hidden;
  }
  
 
  .skill-fill::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 140%;
    height: 60%;
    background: radial-gradient(ellipse at top left, rgb(255 255 255 / 20%), transparent 70%);
    transform: rotate(-2deg);
    pointer-events: none;
    border-radius: 50% / 100%;
  }
  
  
  .skill-fill::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 120%;
    height: 80%;
    background: radial-gradient(ellipse at bottom right, rgba(255 255 255 / 0.3), transparent 60%);
    pointer-events: none;
    border-radius: 50% / 100%;
  }
  
  .skill-label img {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }
  
 

  /* CARDS */

  /* .servicios {
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
  }
  
  .blob-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ADA4F2 0%, transparent 70%);
  }
  
  .blob-2 {
    bottom: 10%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #E1DFF4 0%, transparent 70%);
  }
  .liquid-glass-card {
    position: relative;
    z-index: 1;
  }
  

  .liquid-glass-card {
    background: rgba(173, 164, 242, 0.2); /* translúcido lavanda */
   

  /* Sección base */

  .btn-cotiza-dark {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    box-shadow:0 8px 32px rgb(0 0 0 / 9%);
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-cotiza-dark:hover {
    background-color: rgba(0, 0, 0, 0.6); /* más intenso en hover */
    transform: scale(1.05);
    color: #fff;
  }
  
  
  .liquid-glass-card {
    background: linear-gradient(135deg, rgb(129 127 126 / 8%), rgba(129, 127, 126, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    color: #2C2C2C;
    /* z-index: 1; */
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    height: 400px;
    ul{
        list-style: none;
        padding-left:0;
    }
  }
  .liquid-glass-card:hover {
    transform: scale(1.02);

  }
  .liquid-glass-card .card-bg-shape {
    position: absolute;
   
    height: 100%;
    object-fit: cover;
     /* más bajo para que no opaque el contenido */
    z-index: 0;
    pointer-events: none;
  }
  .liquid-glass-card > *:not(.card-bg-shape) {
    position: relative;
    z-index: 1; /* El contenido de la card por encima de la imagen */
  } 
  @media (max-width: 767px) { 
    .liquid-glass-card {
        margin-bottom:10px;
    }
   }
  .bg-mac{
    top: 146px;
    left: 279px;
    width: 53%;
    height: auto !important;
    opacity: 0.8;
  }
  .bg-wp{
    top: 177px;
    left: 266px;
    width: 41%;
    height: auto !important;
    opacity: 0.8;
  }
  .bg-web{
    top: 182px;
    left: 157px;
    width: 57%;
    height: auto !important;
    opacity: 0.8;
  }
  .bg-design{
    top: 60px;
    left: 375px;
    width: 41%;
    height: auto !important;
    opacity: 0.8;
    transform: rotate(45deg);
  }
  .glass-bg-shape {
    position: absolute;
    top: 0; /* ajusta según prefieras */
    left: 0; /* ajusta según prefieras */
    width: 40%; /* o tamaño específico */
    height: auto;
    z-index: 0;
    opacity: 0.1; /* opcional, para que no opaque mucho */
    pointer-events: none; /* para que no interfiera con clics */
    object-fit: cover;

  }
  
  .index-4 .container-fluid {
    position: relative;
    z-index: 1;
  }
/* 
.liquid-glass-card > *:not(.card-bg-img) {
    position: relative;
    z-index: 1;
  } */
  
  

  .card1{
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 40px;
  }
  /* flujo de trabajo */

.flujo{
   
    background: radial-gradient(circle, rgba(221, 107, 162, 0.4) 0%, rgba(221, 107, 162, 0) 60%);
 
    background-position: top left;
    background-size: 300px 300px; 
    background-repeat: no-repeat;


}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 107, 162, 0.4) 0%, rgba(221, 107, 162, 0) 60%);
    pointer-events: none; /* no bloquea clics */
    transition: transform 0.03s linear; /* hace que se mueva suave y rápido */
    top: 0;
    left: 0;
  }


/* proyectos */
.section-grid-proyecto {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    
    .proyecto1 { grid-area: 1 / 1 / 3 / 3; }
    .proyecto2 { grid-area: 3 / 1 / 5 / 2; }
    .proyecto3 { grid-area: 3 / 2 / 5 / 3;}
    .proyecto4 {  grid-area: 1 / 3 / 5 / 4;}
 

    .proyecto1, .proyecto2, .proyecto3, .proyecto4 {
        width: 100%; 
        max-width: 100%;
        border-radius: 10px;
        overflow: hidden; 
        position: relative;
          transition: transform 0.3s ease, box-shadow 0.3s ease;

      }
      .proyecto1:hover, .proyecto2:hover, .proyecto3:hover, .proyecto4:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      }
      
      
      
      .fondo-miniatura {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 20px;
        display: flex;
        align-items: flex-end;
        color: white;
        box-sizing: border-box;       
      }

      .fondo1{
        background-position: center;
      }
      .fondo2{
        background-position: center;
      }
      .fondo3{
        background-position: center;
      }
      .fondo4{
        background-position: center;
      }
      
      .contenido-superior {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 2;
        color: white;
      }
      .titulo-proyecto a {
        font-size: 24px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        display: block;
      }
    
      .categorias-glass {
        display: flex;
        gap: 10px;
        flex-wrap: nowrap;
        margin-top: 10px;
        cursor: pointer;
      }
      .liquid-glassca {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 26px;
        padding: 12px 22px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden; 
        text-decoration: none; 
      }
    

      .liquid-glassca2 {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 26px;
        padding: 12px 22px;
        color: rgba(122, 122, 122, 0.85);
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden; 
        text-decoration: none; 
      }
      .liquid-glassca .vanilla-tilt-glare {
        border-radius: 50px !important;
        overflow: hidden;
        clip-path: inset(0 round 50px);
      }

    
      


      .footer-glass {
        position: relative;
        overflow: hidden;
        padding: 2rem;
        border-radius: 24px;
        background: linear-gradient(135deg, rgb(129 127 126 / 8%), rgba(129, 127, 126, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    color: #2C2C2C;
        z-index: 1;
      }
      
      .footer-bg-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2;
        z-index: 0;
        pointer-events: none;
      }
      
      .footer-content {
        position: relative;
        z-index: 2;
      }
      
      .footer-btn {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(221, 107, 162, 0.4);
        border-radius: 26px;
        color: #2C2C2C;
        text-decoration: none;
        font-weight: 200;
        transition: background 0.3s ease, transform 0.3s ease;
      }
      
      .footer-btn:hover {
        background-color: rgba(221, 107, 162, 0.6);
        transform: scale(1.05);
      }
      
 
  
  /* SINGLES */

  .img-miniatura{
    border-radius: 20px;
  }


  /* .medicimg{
    object-fit: cover;
    width: auto;
    height: 100%;
    border-radius: 20px;
  } */


  .medicimg {

    border-radius: 20px;
  }
  
  .custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FE6483;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .custom-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .custom-arrow:hover {
    background: #ff506f;
  }
  
  .left-arrow {
    left: -25px;
  }
  
  .right-arrow {
    right: -25px;
  }
  
.linkcategorias{
    color: inherit;    
    text-decoration: none; 
  
}
.linkcategorias:hover{
    text-decoration:line-through;
}


.otros {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 0px;
    }
    
    .otros1 { grid-area: 1 / 1 / 2 / 5; }
    .otros2 { grid-area: 1 / 5 / 2 / 9; }
    .otros3 { grid-area: 1 / 9 / 2 / 13; }

    .liquid-glass-box {

        overflow: hidden;
        box-sizing: border-box;
        background: linear-gradient(135deg, rgb(129 127 126 / 8%), rgba(129, 127, 126, 0.15));
        border: 1px solid rgba(255, 255, 255, 0.2);
  
        backdrop-filter: blur(28px) saturate(180%);
         -webkit-backdrop-filter: blur(28px) saturate(180%);
        border-radius: 20px;
        padding:20px 0px 20px 25px;


    }
    .custom-grid2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        align-items: stretch; 
        grid-column-gap: 10px;
        width: 100%;
        margin: 0 auto;
        height: 100%; 
      }

.wrapperimg,
.wrappercontent {
  height: 100%; /* 🔥 Fuerza igual altura */
  display: flex;
  flex-direction: column;
}
.wrappercontent > .liquid-glass-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
      

    .wrapperimg {
        grid-area: 1 / 1 / 2 / 2;


        padding-top: 10px;
        padding-bottom: 10px;
      }
      
      .wrappercontent {
        grid-area: 1 / 2 / 2 / 4;


        padding-top: 10px;
        padding-bottom: 10px;
    
      }
      .custom-grid2 img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 10px;
        object-fit: cover;
        opacity: 0.9;
      }

      .calltoaction {
        position: relative;
        /* background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='grad' cx='50%25' cy='50%25' r='80%25' fx='50%25' fy='50%25'%3E%3Cstop offset='0%25' style='stop-color:%23fdf9fa;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%23ffe4ef;stop-opacity:1' /%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grad)' /%3E%3C/svg%3E"); */
        /* background-size: cover;
        background-position: center; */
        color: #000; /* Ajusta si lo necesitas */
     
        border-radius: 20px;
        overflow: hidden;
      }

     
      #vanta-calltoaction.row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
      }
      
      #vanta-calltoaction {
        position: relative;
   
        overflow: hidden;
        z-index: 1;
        padding: 2rem;
        border-radius: 20px;
      }
      
      #vanta-calltoaction * {
        position: relative;
        z-index: 2;
      }
      
      
      /* media querys */
      @media (max-width: 767.98px) {
        .separacion.pinkbow .row {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-wrap: nowrap;
          flex-direction: row;
        }
      
        .separacion.pinkbow .col-md-5 {
          display: none;
        }
      
        .separacion.pinkbow .col-md-1 {
          flex: 1 1 auto;
          display: flex;
          justify-content: flex-end;
          align-items: center;
          padding:0;
        }
      
        .separacion.pinkbow .col-md-6 {
          flex: 0 1 auto; 
          display: flex;
          align-items: center;
        }
      
        .separacion.pinkbow .linea {
          height: 1px; 
          background-color: #DD6BA2;
          width: 100%;
          min-width: 30px;
          margin-left: 10px;
        }
      }
      
  
      @media (max-width: 767.98px) {
        .separacion.pinkbow.inicio .row {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-wrap: nowrap;
          flex-direction: row;
        }
      
        .separacion.pinkbow.inicio .col-md-5 {
          flex: 0 1 auto;
          display: flex;
          align-items: center;
          justify-content: flex-end;
          padding: 0;
        }
      
        .separacion.pinkbow.inicio .col-md-1 {
          flex: 1 1 auto;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          padding: 0;
        }
      
        .separacion.pinkbow.inicio .linea {
          height: 1px;
          background-color: #DD6BA2;
          width: 100%;
          min-width: 30px;
          margin-right: 10px; /* para separar del moño */
        }
      }
      .titulosobremi{
        padding-top: 11px; padding-left: 42px;
      }
      
      @media (max-width: 767.98px) {
        .titulosobremi {
                padding-top: 0;
                padding-left:100px;

            
            
        }
        .tituloproyecto{
            padding-left: 57px;
        }
      }
      
      @media (max-width: 767.98px) {
        .section-grid-proyecto {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(10, 1fr);
            grid-column-gap: 10px;
            grid-row-gap: 10px;
            }
         
          
                    .proyecto1 { grid-area: 5 / 1 / 8 / 5; }
                    .proyecto2 { grid-area: 8 / 1 / 13 / 3; }
                    .proyecto3 { grid-area: 8 / 3 / 13 / 5; }
                    .proyecto4 { grid-area: 1 / 1 / 5 / 5; }
                    .titulo-proyecto a{
                        font-size:20px;
                    }
        
            .fondo-miniatura{
                filter: brightness(0.6);
               
            }
            footer{
                padding-left:10px;
                padding-right:10px;
            }
            
               
        
      }
      @media (max-width: 767.98px) {
        .custom-grid2 {
          display: grid;
          grid-template-columns: 1fr;
          grid-template-rows: auto;
          grid-row-gap: 0;
          height: auto !important;
        } 
      
        .wrapperimg {
          display: none !important; /* 🔒 oculta imagen en móvil */
        }
      
        .wrappercontent {
          grid-area: 1 / 1 / 2 / 2;
          height: auto !important;
          padding-top: 10px;
          padding-bottom: 10px;
        }
      
        .wrappercontent > .liquid-glass-box {
          height: auto !important;
          justify-content: flex-start;
        }
      
        .custom-grid2 img {
          height: auto !important;
          object-fit: cover;
          max-height: 330px;
          width: 100%;
          object-position: 50% 20%;
        }
      }
      
 
      @media (max-width:767.98px) { 
        .otros {
          display: block; 
        }
      
        .otros1,
        .otros2,
        .otros3 {
          width: 100%;
          margin-bottom: 20px;
          border-top: 1px solid #dfdfdf;
        }
      
        .otros1 .row,
        .otros2 .row,
        .otros3 .row {
          flex-wrap: nowrap;
          align-items: center;
        }
      
        .otros1 img,
        .otros2 img,
        .otros3 img {
          width: 100px;
          height: auto;
          object-fit: cover;
          border-radius: 10px;
        }
      
        .otros1 .col-md-5,
        .otros2 .col-md-5,
        .otros3 .col-md-5 {
          flex: 0 0 auto;
          width: auto;
          max-width: none;
        }
      
        .otros1 .col-md-7,
        .otros2 .col-md-7,
        .otros3 .col-md-7 {
          padding-left: 10px;
        }
      } 
      

     
        
      @media (max-width: 1199.98px) {
        .custom-grid {
          display: grid;
          grid-template-columns: 1fr;
          grid-template-rows: auto auto;
          grid-gap: 10px;
          align-items: center;
          justify-items: center;
        }
      
        .logo-wrapper {
          grid-area: auto;
          width: 100%;
          justify-content: center;
          text-align: center;
        }
      
        .menu-wrapper {
          grid-area: auto;
          width: 100%;
          padding: 0 12px;
        }
      
        .navbar-toggler {
          margin: 0 auto; /* centrar el botón hamburguesa */
          display: block;
          border: none;
        }
      
        .navbar-collapse {
          border-radius: 10px;
          padding: 10px;
          z-index: 10000;
        }
      
        .navbar-nav {
          flex-direction: column !important; /* para que los links no se apreten en fila */
          align-items: flex-start;
          padding-left: 0;
        }
      
        .navbar-nav .nav-link {
          padding: 8px 16px;
          width: 100%;
        }
      }
      

      /* hora */

      .blob-container {
        position: relative;
        z-index: 0; /* asegura que el contenido esté sobre el blob */
        overflow: hidden; /* evita que el blob se salga del contenedor */
      }
      
      .blob2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(221, 107, 162, 0.4) 0%, rgba(221, 107, 162, 0) 60%);
        pointer-events: none;
        transition: transform 0.03s linear;
        z-index: -1; /* detrás del contenido */
      }
      .singlelink{
        text-decoration:none; color: inherit;
      }
      .singlelink:hover{
        color:#DD6BA2;
        

      } 
      .aqui{
        color: inherit;
      }
      .aqui:hover{
        color:#DD6BA2;

      }