/*
Theme Name:     columba-theme
Description:    Tema personalizado para la sección de ayuda de Columba
Version:        1.0
*/

#wpadminbar {
  display: none;
}

* {
    box-sizing: border-box;
}

html {
  margin: 0px!important;
}

body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

main{
  padding: 0px 20%;
}
  
@media (min-width: 901px) and (max-width: 1220px) {
  main {
    padding: 0px 10%;
  }
}
  
@media (max-width: 900px) {
  main {
    padding: 0px 15px; 
  }
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
button, input, textarea {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: normal;
}

input {
  all: unset; 
}

button {
  all: unset;
}

/* fuentes */
@font-face {
  font-family: "itaca-reg";
  src: url(fonts/Itaca-Wide-Book.otf);
}

@font-face {
  font-family: "itaca-demi";
  src: url(fonts/Itaca-Wide-DemiBold.otf);
}

@font-face {
  font-family: "itaca-bold";
  src: url(fonts/Itaca-Wide-Bold.otf);
}

@font-face {
  font-family: "albert-reg";
  src: url(fonts/AlbertSans-Regular.ttf);
}

@font-face {
  font-family: "albert-med";
  src: url(fonts/AlbertSans-Medium.ttf);
}

@font-face {
  font-family: "albert-bold";
  src: url(fonts/Itaca-Wide-Bold.otf);
}

/* color palette */
:root {
  --primary: #FEEB21;
  --primary-2: #FCC10A;
  --secondary: #D95729;
  --tertiary: #024C3C;
  --complementary: #271E2F;
  --complementary-2: #D14081;
  --white: #ffffff;
  --grey: #93A8AC;
  --black: #000000;
}

 /* tag values */
h1, h2 {
    font-size: 42px;
    font-family: "itaca-bold";
    color: var(--complementary-2);
}

@media (max-width: 900px) {
    h1, h2 {
        font-size: 25px;
    }
}

p {
  font-family: "albert-reg";
  font-size: 18px;
  color: var(--black);
}

.boton-primario {
  width: 200px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: "itaca-demi";
  font-size: 18px;
  border-radius: 5px;
  background-color: var(--complementary-2);
  color: var(--white);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.boton-primario:hover {
  background-color: var(--white);
  border: solid 1px var(--complementary-2);
  color: var(--complementary-2);
}

.boton-secundario {
  width: 200px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 10px;
  font-family: "itaca-demi";
  font-size: 18px;
  border-radius: 5px;
  background-color: var(--primary);
  color: var(--black);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.boton-secundario:hover {
  background-color: var(--white);
  border: solid 1px var(--primary);
}

.boton-primario-small {
  width: 120px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: "itaca-demi";
  font-size: 16px;
  border-radius: 5px;
  background-color: var(--complementary-2);
  color: var(--white);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.boton-primario-small:hover {
  background-color: var(--white);
  border: solid 1px var(--complementary-2);
  color: var(--complementary-2);
}

/* navbar */
.navbar-fixed {
  width: 100%;
  position: fixed;
  z-index: 1002;
}
.navbar {
  display: flex;
  width: 100%;
  height: 75px;
  position: relative;
}
.columna-rosa {
  background-color: var(--complementary-2);
  width: 29.5%;
  min-width: 200px;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0px 50px 0px 0px;
}
.columna-amarilla {
  background-color: var(--primary);
  flex: 1;
  height: 100%;
  position: relative;
  padding-left: 32px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0px 0px 0px 35px;
}
.columna-amarilla::before {
  content: "";
  position: absolute;
  left: -40px;
  width: 55px;
  height: 100%;
  background-color: var(--primary);
  border-radius: 50% 0% 0% 50%;
  z-index: 99;
}
.logo-columba {
  width: 92px;
  height: auto;
  z-index: 2;
}
.menu {
  display: flex;
  gap: 45px;
  z-index: 2;
  flex-wrap: wrap;
}
.menu a {
  font-family: "itaca-bold";
  font-size: 12px;
  font-weight: bold;
  color: #3F3F3F;
  text-decoration: none;
}
.menu a:hover {
  color: purple;
}
.menu .whatsapp-navbar {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "itaca-bold";
  font-size: 12px;
  font-weight: bold;
  color: var(--complementary-2);
}
.menu .whatsapp-navbar:hover {
  color: var(--complementary-2);
}

/* menu mobile */
.boton-menu-mobile {
  width: 37px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}
.boton-menu-mobile span {
  display: block;
  height: 4px;
  background: var(--complementary-2);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  width: 240px;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: start;
  top: 0;
  left: -260px;
  padding: 14px 40px;
  gap: 40px;
  background: var(--complementary-2);
  color: var(--white);
  transition: left 0.3s;
  z-index: 1001;
}
.mobile-menu img{
  width: 80px;
}
.mobile-menu .whatsapp-navbar {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mobile-menu a {
  font-size: 16px;
  font-family: "albert-reg";
}
.mobile-menu.open {
  left: 0;
}
/* Fondo oscuro mobile*/
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.overlay-activo {
  opacity: 1;
  visibility: visible;
}
body.no-scroll {
  overflow: hidden;
}
.mobile-menu.open {
  z-index: 1001;
}

@media (max-width: 1260px) {
  .columna-rosa {
    width: 15%;
  }
}

@media (max-width: 1086px) {
  .menu{
    display: none;
  }
  .boton-menu-mobile {
    display: flex;
  }
  .columna-rosa {
    width: 66%;
    justify-content: start;
    padding: 0px 0px 0px 10px;
  }
  .columna-amarilla {
    justify-content: end;
    padding: 0px 35px 0px 0px;
  }
  .columna-amarilla::before {
    width: 80px;
    border-radius: 100% 0% 0% 100%;
  }
}

/*soporte button float*/
#soporte-button {
  all: unset;
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  gap: 3px;
  bottom: 16px;
  right: 16px;
  background-color: var(--complementary-2);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
  transition: opacity 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}
#soporte-button p{
  font-size: 16px;
  color: var(--white);
  text-align: center;
}
#soporte-button.hidden-soporte-btn {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 430px) { 
  #soporte-button {
    width: 85px;
    height: 85px;
  }
  #soporte-button p { 
    font-size: 16px;
  }
  #soporte-button svg{
    width: 20px;
    height: 20px;
  }
}

/* ayuda */
.contenedor-principal {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-top: 180px;
}
.contenedor-principal-buscador {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 45px;
  padding: 25px 20px;
  border-radius: 20px;
  background-color: #FFFCDE;
}
.contenedor-principal-texto{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.contenedor-principal-texto h2 {
  font-size: 33px;
}
.contenedor-principal-texto p {
  text-align: center;
}
.br-texto-principal {
  display: none;
}
.contenedor-buscador {
  display: flex;
  gap: 15px;
}
.buscador-ayuda input {
  width: 477px;
  height: 38px;
  padding: 0px 10px 0px 10px;
  border-radius: 5px;
  font-size: 18px;
  border: solid 1.5px  #909090;
  font-family: "albert-reg";
  background-color: var(--white);
}
.buscador-ayuda {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.buscador-ayuda input {
  padding-right: 40px;
  height: 38px;
  font-size: 18px;
}
.buscador-ayuda img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  pointer-events: none;
}

@media (max-width: 1055px) {
  .contenedor-principal-buscador {
    padding: 35px 20px;
    gap: 20px;
  }
  .contenedor-buscador {
    width: 100%;
    flex-direction: column;
  }
  .buscador-ayuda {
    display: flex;
    width: 100%;
  }
  .buscador-ayuda input{
    width: 100%;
  }
  .boton-input{
    width: 100%;
  }
}

@media (max-width: 500px) {
  .contenedor-principal {
    gap: 40px;
    padding-top: 115px;
  }
  .contenedor-principal-texto h2 {
    font-size: 25px;
  }
  .contenedor-principal-texto p {
    font-size: 16px;
  }
}

@media (max-width: 410px) {
  .br-texto-principal {
    display: block;
  }
}

/* Busqueda ayuda */
.contenedor-resultados {
  column-count: 2;
  column-gap: 20px;
  min-height: 360px;
}
.card-soporte {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 7px;
  padding: 27px 40px;
  background-color: #FFFCEC;
  border-radius: 15px;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  margin-bottom: 20px;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.card-soporte-titulo {
  display: flex;
  gap: 5px;
}
.card-soporte-titulo svg {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  flex-shrink: 0;
}
.card-soporte h3{
  font-family: "itaca-demi";
  font-size: 20px;
  color: var(--complementary-2);
}
.card-soporte.visible {
  opacity: 1;
  transform: translateY(0);
}

/* card-blog */
.card-blog {
  display: flex;
  width: 100%;
  gap: 18px;
  padding: 27px 40px;
  background-color: #FFFCEC;
  border-radius: 15px;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  margin-bottom: 20px;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.card-blog-titulo svg {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  flex-shrink: 0;
}
.card-blog-titulo {
  display: flex;
  gap: 6px;
}
.card-blog-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-blog-img {
    width: 45%;
    height: 206px;
    border-radius: 22px;
    object-fit: cover;
}
.card-blog-info h3 {
  font-family: "itaca-demi";
  font-size: 20px;
  color: var(--complementary-2);
}

/* card soporte fija */
.card-soporte-fija {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 27px 54px;
  border-radius: 20px;
  border-radius: 20px;
  background-color: #FAECF2;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.card-soporte-fija h3 {
  font-size: 28px;
  font-family: "itaca-bold";
  color: var(--complementary-2);
}
.botones-card-soporte-fija {
  display: flex;
  gap: 25px;
}

/* texto-no-encontrados */
.texto-no-encontrados {
  height: -webkit-fill-available;
  display: flex;
  flex-direction: col-webkit-fill-available;
  gap: 20px;
  padding: 64px 54px;
  border-radius: 20px;
  border-radius: 20px;
  background-color: #FAECF2;
  font-size: 25px;
  font-family: "itaca-bold";
  color: var(--complementary-2);
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

@media (max-width: 1055px) { 
  .contenedor-resultados {
    column-count: 1;
  } 
  .texto-no-encontrados { 
    height: auto;
    padding: 30px 54px;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 450px) {
  .card-soporte {
    padding: 15px 15px;
  }
  .card-soporte p{ 
    font-size: 16px;
  }
  .card-blog {
    flex-direction: column;
    padding: 15px 15px;
  }
  .card-blog-info p {
    font-size: 16px;
  }
  .card-blog a {
    width: 100%;
  }
  .card-blog-img {
    width: 100%;
    height: 100%;
}
  .card-soporte-fija {
    padding: 15px 15px;
  }
  .card-soporte-fija h3 {
    font-size: 26px;
    text-align: center;
  }
  .card-soporte-fija p {
    font-size: 16px;
    text-align: center;
  }
  .botones-card-soporte-fija  {
    flex-direction: column;
  }
  .botones-card-soporte-fija button {
    width: 100%;
  }
  .botones-card-soporte-fija a {
    width: 100%;
  }
}

/* categorias */
.contenedor-categorias {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0px 190px;
  gap: 20px;
}
.card-categoria {
  width: 165px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--complementary-2);
  background-color: #FFF3F8;
  border-radius: 20px;
  border: var(--complementary-2) solid 0.3px;
  gap: 23px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.card-categoria p {
  font-family: "itaca-bold";
  color: var(--complementary-2);
  transition: all 0.4s ease;
}
.card-categoria svg {
  fill: var(--complementary-2);
  transition: all 0.4s ease;
}
.card-categoria:hover {
  background-color: var(--complementary-2);
}
.card-categoria:hover.card-categoria p {
  color: var(--white);
}
.card-categoria:hover.card-categoria svg {
  fill: var(--white);
}
.elemento-animado {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.elemento-animado.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1508px) { 
  .contenedor-categorias {
    padding: 0px;
  }
}
@media (max-width: 450px) { 
  .card-categoria {
    width: 140px;
    height: 145px;
  }
  .card-categoria p {
    font-size: 16px;
  }
}

/* footer */
.footer {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-top: 120px;
}

/* contenedor rosa */
.footer-columna-rosa {
  background-color: var(--complementary-2);
  color: var(--white);
  width: 51%;
  min-width: 240px;
  padding: 50px 20px 50px 360px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1; /
}
.footer-logo {
  width: 177px;
  margin-bottom: 10px;
  fill: var(--white);
}
.footer-columna-rosa small {
  font-family: "itaca-bold";
  font-size: 12px;
}

/* contenedor amarillo */
.footer-columna-amarilla {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 40px 125px 60px 0px;
  flex: 1;
  background-color: var(--primary);
  color: var(--black);
  position: relative;
  z-index: 3; /
}
.footer-cobertura {
  font-family: "itaca-bold";
  font-size: 18px;
  margin-bottom: 45px;
}
.footer-cobertura .destacado {
  color: var(--complementary-2);
  font-weight: bold;
}

/* imagen curva */
.footer-curva {
  position: absolute;
  top: 0;
  left: 31%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
}
.footer-curva-mobile { 
  display: none;
}
.footer-botones {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 45px;
}
.footer-botones-uno {
  display: flex;
  justify-content: right;
  gap: 50px;
}
.footer-botones-dos {
  display: flex;
  justify-content: right;
  gap: 50px;
}
.footer-btn {
  width: 182px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid black;
  border-radius: 16px;
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  font-family: "itaca-demi";
  transition: all 200ms ease;
}
.footer-btn:hover {
  color: var(--complementary-2);
}
.footer-btn svg {
  fill: var(--black);
  transition: all 200ms ease;
}
.footer-btn:hover svg{
  fill: var(--complementary-2);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a, .footer-links p{
  color: var(--black);
  font-family: "itaca-bold";
  font-size: 14px;
  text-decoration: none;
}
.footer-links .link-menu-activo {
  color: var(--complementary-2);
}

@media (max-width: 1870px) {
  .footer-columna-amarilla {
    padding: 49px 100px 49px 0px;
  } 
}

@media (max-width: 1867px) { 
  .footer-columna-rosa {
    width: 44%;
    padding: 50px 20px 50px 65px;
  }
  .footer-curva {
    left: 16%;
  }
}

@media (max-width: 1335px) { 
  .footer-curva { 
    display: none;
  }
  .footer-curva-mobile { 
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
  }
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer-columna-rosa {
    width: 100%;  
    display: flex;
    padding: 60px 0px 42px 0px;
    align-items: center;
    background-color: var(--primary);
  }
  .footer-logo {
    width: 209px;
    margin-bottom: 20px;
    fill: var(--complementary-2);
  }   
 .footer-columna-rosa small {
    font-size: 13px;
    color: var(--complementary-2);
  }
  .footer-columna-amarilla {
    width: 100%;
    align-items: center;
    gap: 31px;
    padding: 0px 0px 125px 0px;
  }
  .footer-botones {
    margin-bottom: 25px;
  }
  .footer-btn {
    width: 168px;
    height: 32px;
    font-size: 16px;
    border: 1px solid black;
  }
  .footer-botones-uno {
    flex-direction: column;
    gap: 20px;
  }
  .footer-botones-dos {
    flex-direction: column;
    gap: 20px;
  }
  .footer-cobertura {
    text-align: center;
    padding: 0px 65px;
    margin-bottom: 20px;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }   
  .footer-links a {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .footer {
    margin-top: 70px;
  } 
}

@media (max-width: 380px) { 
  .footer-cobertura {
    padding: 0px 25px;
  }
}