/*
Theme Name: Naked WordPress Child
Theme URI: https://tusitio.com/
Description: Child theme del tema Naked WordPress
Author: Tu nombre
Template: naked-wordpress-master
Version: 1.0.0.0.1
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Space+Grotesk:wght@700&display=swap');


:root {
  --font-primary: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;

  --color-primary: #6B42E1;
  --color-secondary: #DEEEFE;
  --color-accent: #3AF2AE;
  --color-highlight: #FFF2AF;

  --color-white: #FFFFFF;
  --color-gray-100: #F1F1F1;
  --color-gray-300: #D9D9D9;
  --color-gray-600: #575757;
  --color-gray-900: #1D1D1D;

  --heading-size: 64px;
  --h1-size: 40px;
  --h2-size: 32px;
  --h3-size: 24px;
  --body-size: 16px;
  --cta-size: 16px;
  --micro-size: 14px;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  --lh-tight: 110%;
  --lh-normal: 120%;
  --lh-loose: 140%;
}

/* ----------------------------------------------
   BASE TIPOGRÁFICA
---------------------------------------------- */
#content {
  max-width: 1280px;
}

html {
  font-family: var(--font-primary) !important;
  color: var(--color-gray-900);
  line-height: var(--lh-loose);
  background-color: var(--color-white);
}

h1,
h2,
h3 {
  font-family: var(--font-heading) !important;
  margin: 0 0 0.5em;
}

.color {
  color: var(--color-primary);
}

.header-title * {
  color: var(--color-primary);
  font-family: var(--font-heading) !important;
  font-size: var(--heading-size);
  font-style: normal;
  font-weight: var(--weight-bold);
  line-height: var(--lh-tight);
}

.header-text * {
  font-family: var(--font-heading) !important;
  font-size: var(--h2-size);
  font-style: normal;
  font-weight: var(--weight-bold);
  line-height: var(--lh-tight);
  color: var(--color-gray-600);
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--lh-tight);
  font-weight: var(--weight-bold);
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--lh-tight);
  font-weight: var(--weight-bold);
}

h3 {
  font-size: var(--h3-size);
  line-height: var(--lh-normal);
  font-weight: var(--weight-medium);
}

body,
p {
  font-size: var(--body-size);
  line-height: var(--lh-loose);
  font-weight: var(--weight-regular);
  margin: 0 0 1em;
}

.cta {
  font-size: var(--cta-size);
  line-height: 100%;
  font-weight: var(--weight-regular);
  color: var(--color-accent);
}

.microcopy {
  font-size: var(--micro-size);
  line-height: var(--lh-loose);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--cta-size);
  font-weight: var(--weight-medium);
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-gray-900);
  transform: translateY(-2px);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-primary:hover .btn-icon {
  background-color: var(--color-gray-100);
  color: var(--color-accent);
}

/*---------------botton--------------*/
.wbk-btn-wrapper {
  width: 100%;
  margin: 8px 0;
}

.wbk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 42px;
  border-radius: 50px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500 !important;
  cursor: pointer;
  transition: .25s ease;
  text-decoration: none;
  line-height: 1.2;
}


.wbk-btn-solid {
  background: #6842e1 !important;
  color: #fff !important;
  border-radius: 20px !important;
}

.wbk-btn-solid:hover {
  background-color: rgba(104, 66, 225, 0.75) !important;
  color: #1d1d1d !important;
}

.wbk-btn-outline {
  background: #fff;
  border: 2px solid #6842e1;
  color: #1d1d1d;
}

.wbk-btn-outline:hover {
  background-color: rgba(104, 66, 225, 0.5);
  color: #1d1d1d;
}

/* Tamaños */
.wbk-btn-small {
  height: 34px;
  font-size: 14px;
  padding: 0 18px;
}

.wbk-btn-large {
  height: 50px;
  font-size: 18px;
  padding: 0 32px;
}

/* Icono */
.wbk-btn-icon {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
}

/*---------------botton--------------*/
/*---------------Header--------------*/
header {
  padding: 0px !important;
  display: flex;
  align-items: center;
}

nav.site-navigation.main-navigation {
  display: flex;
  align-items: center !important;
  justify-content: space-between;
}

nav.site-navigation.main-navigation>div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-widgets {
  float: inline-start;
}

.menu-main-container ul {
  display: flex;
  height: 23px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.menu-main-container ul li {
  margin: 0px;
}

.menu-main-container ul li a {
  color: black !important;
}
.header-cta {
  margin-left: 24px;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-header-cta:hover {
  background-color: rgba(104, 66, 225, 0.5);
  color: #1d1d1d;
}

/*---------------Header--------------*/

.newsletter-wrapper>p {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100% !important;
}

span.wpcf7-form-control-wrap.your-email {
  width: 100% !important;
  height: 42px;
  position: relative;
  border-radius: 30px;
  background-color: #f1f1f1;
  border: 1px solid #000;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  text-align: left;
  font-size: 16px;
}

.newsletter-wrapper .newsletter-input {
  flex: 1;
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  font-family: Inter;
  color: #575757;
  text-align: left;
  display: inline-block;
  border: 0px !important;
  background: transparent;
}

.newsletter-wrapper .newsletter-input::placeholder {
  color: #999;
}

.link_url{
  font-weight: inherit !important;
  color: var(--color-primary) !important;
  text-decoration: underline !important;
}



/*---------------Footer--------------*/
.footer-columns {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
}

.footer-widget {
  margin-bottom: 20px;
}

.footer-widget .menu {
  margin: 0px !important;
  color: black;
  list-style: none;
}

.footer-widget .menu a {
  color: black;
}

.footer_img img {
  width: 115px !important;
}

.footer-title {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

footer {
  text-align: start;
  padding-bottom: 0px !important;
}

.site-footer {
  width: 1280px !important;
  margin: auto;
}

.line-div {
  width: 100%;
  height: 1px;
  position: relative;
  border-top: 1px solid #575757;
  box-sizing: border-box;
}


.social-links {
  display: flex;
  gap: 12px;
}

.social-links a img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}





/*---------------Footer--------------*/

.block-info>div {
  padding: 32px !important;
  border-radius: 20px;
}







/* ------------------------------
   HAMBURGUESA (Universe.io)
--------------------------------*/
.burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: none;
  /* Oculto en desktop */
  z-index: 9999;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 9px;
  left: 0;
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 11px;
}

.burger input:checked~span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 11px;
}

.no-scroll {
  overflow: hidden;
}

.table-politics table tr td{
  border-top: .1rem solid var(--color-primary) !important;
  padding: 1rem 2rem;
}
.table-politics > .widget_text > .textwidget{
    width: calc(100% - 30px) !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
}

/* ------------------------------
   MENU MOBILE OVERLAY
--------------------------------*/
.mobile-menu-overlay {
  position: fixed;
  top: 121px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: white;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all .35s ease;
  padding: 30px 20px;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.desktop-menu {
  display: block;
}

.burger-mobile {
  display: none !important;
}

.footer-columns-2 > .footer-column:nth-child(1) p{
  text-align: left !important;
}
.footer-columns-2 > .footer-column:nth-child(2) .custom-html-widget{
  display: flex;
  margin-left: auto;
}
.footer-columns-2 > .footer-column:nth-child(2) ul{
  list-style: none !important;
  margin: 0px !important;
  display: flex !important;
  gap: 30px !important;
  margin-left: auto;
}
.footer-columns-2 > .footer-column:nth-child(2) ul li a{
  color: var(--color-gray-900) !important;
  text-decoration: underline;
}
.footer-columns.footer-columns-2{
  grid-template-columns: 1fr 1fr !important;
  padding-top: 30px;
  padding-bottom: 40px;
}
.footer-columns.footer-columns-2:after{
  display: none !important;
}
.footer-columns-2 .footer-widget{
  margin-bottom: 0px !important;
}
.footer-columns-2 .widget_text{
  display: grid !important;
}

.container-first-section{
  display: flex;
}
.container-first-section > .wpb_column{
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

section.section-sobre-nosotros{
  background-position: calc(100% + 50px) 50% !important;
  background-size: auto 480px !important;
}
.detete-p p{
  display: none !important;
}
.wpcf7-list-item{
  margin:0px !important;
}
.VPSlider .slider-prev, .VPSlider .slider-next {
  display: none !important;
}
/* ------------------------------
   RESPONSIVE
--------------------------------*/

.position-slider-wrapper {
  position: relative;
}

.wb-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap !important;
}

.newsletter-terms a {
  font-weight: 600 !important;
  color: black !important;
}
.newsletter-terms a:hover{
  color: var(--color-primary) !important;
}

@media (min-width: 1024.5px) and (max-width: 1800px){
  .sobre-nosotros-section-2{
    padding-right: 200px;
  }
}

/* ----------------------------------------------
   MOBILE
---------------------------------------------- */

@media (max-width: 768px) {
  :root {
    --heading-size: 48px;
    --h1-size: 32px;
    --h2-size: 24px;
    --h3-size: 18px;
    --body-size: 16px;
    --cta-size: 16px;
    --micro-size: 14px;
  }

  .site-footer {
    width: 100% !important;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-columns .footer-column:nth-child(1) {
    grid-column: 1 / -1;
  }

  .footer-columns .footer-column:nth-child(2) {
    grid-column: span 1;
    display: inline-block;
  }

  .footer-columns .footer-column:nth-child(3) {
    grid-column: span 1;
    display: inline-block;
  }

  .footer-columns .footer-column:nth-child(4) {
    grid-column: span 2;
  }

  .newsletter-wrapper>p {
    display: flex !important;
    align-items: normal !important;
    width: 100% !important;
    flex-direction: column !important;
  }

  .no-scroll {
    overflow: hidden;
  }

  .desktop-menu {
    display: none !important;
  }

  .burger {
    width: 29px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .menu-main-container ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
    height: auto;
  }

  .burger {
    display: block;
  }

  .main-navigation>ul {
    display: none !important;
  }



  .wb-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .wb-slider>* {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .wb-slider::-webkit-scrollbar {
    display: none;
  }

  .slider-prev,
  .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }
  .menu-main-container{
    float: none !important;
  }

  .footer-columns-2 .footer-column:nth-child(1) .custom-html-widget{
    text-align: center !important;
  }
  .footer-columns.footer-columns-2{
    grid-template-columns: 1fr !important;
  }
  .footer-columns-2 > .footer-column:nth-child(1) .custom-html-widget{
    text-align: center !important;
  }
  .footer-columns-2 > .footer-column:nth-child(2) .custom-html-widget{
    margin-right: auto !important;
  }

  section.section-sobre-nosotros{
    background-size: 180px !important;
    background-position: calc(100% + 15px) 15px !important;
  }
  .text-fotter{
    display: none;
  }
  .footer-logo .footer-widget.footer-col {
    display: flex;
    justify-content: center;
  }
  .mobile-menu li::marker {
    content: none;
  }

  .menu-main-container ul li a{
    width: 100%;
    height: 23px;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 140%;
    font-family: Inter;
    color: #000 !important;
    text-align: left;
    display: inline-block;
  }
  .VPSlider .slider-prev, .VPSlider .slider-next {
    display: block !important;
  }
  .burger-mobile {
    display: block !important;
    padding: 12px !important;
    background-color: var(--color-primary);
    border-radius: 50%;
  }

}