@charset "UTF-8";
/*!
Theme Name: rcd-rexperience
Theme URI: http://rompecabeza.cl/
Author: Agencia Rompecabeza Digital
Author URI: http://rompecabeza.cl/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: rcd-rexperience
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

*/
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #F5F5F5;
  color: #535353;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #2d2d2d;
  margin-top: 0;
}

h1 {
  font-size: 2rem;
  color: #fffdfc;
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #D63C76;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight {
  color: #D63C76;
  font-weight: 700;
}

.subtitle,
.section-intro {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
  background-color: #D63C76;
  color: #fffdfc;
}
.btn-primary:hover {
  background-color: #b02c5f;
  transform: translateY(-2px);
}

.arrow {
  margin-left: 10px;
}

section {
  padding: 40px 0;
}

.carousel-pagination {
  text-align: center;
  margin-top: 24px;
}
.carousel-pagination .pagination-dot {
  height: 8px;
  width: 8px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}
.carousel-pagination .pagination-dot.active {
  background-color: #D63C76;
}

@media (min-width: 768px) {
  section {
    padding: 60px 0;
  }
  h2 {
    font-size: 2.2rem;
  }
}
.main-header {
  background-color: #2d2d2d;
  color: #fffdfc;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo {
  order: 1;
}
.main-header .logo img {
  height: 35px;
}
.main-header .main-nav {
  order: 2;
}
.main-header .main-nav .nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 65px; /* Altura del header */
  left: 0;
  width: 100%;
  background-color: #333;
}
.main-header .main-nav .nav-links.active {
  display: flex;
}
.main-header .main-nav .nav-links li {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #444;
}
.main-header .main-nav .nav-links li:last-child {
  border-bottom: none;
}
.main-header .main-nav .nav-links a {
  color: #fffdfc;
  font-size: 1rem;
}
.main-header .nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}
.main-header .nav-toggle .hamburger {
  display: none;
  width: 25px;
  height: 3px;
  background-color: white;
  position: relative;
}
.main-header .nav-toggle .hamburger::before, .main-header .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: white;
  left: 0;
  transition: transform 0.3s ease;
}
.main-header .nav-toggle .hamburger::before {
  top: -8px;
}
.main-header .nav-toggle .hamburger::after {
  bottom: -8px;
}
.main-header .nav-toggle.active .hamburger {
  background-color: transparent;
}
.main-header .nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 7px);
}
.main-header .nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -7px);
}
.main-header .lang-switcher {
  order: 3;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #fffdfc;
  border-radius: 20px;
}
.main-header .lang-switcher span {
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 20px;
}
.main-header .lang-switcher .lang-active {
  background-color: #fffdfc;
  color: #2d2d2d;
}
@media (min-width: 768px) {
  .main-header .nav-toggle {
    display: none;
  }
  .main-header .main-nav .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background-color: transparent;
    width: auto;
  }
  .main-header .main-nav .nav-links li {
    padding: 0 15px;
    border-bottom: none;
  }
  .main-header .logo,
  .main-header .main-nav,
  .main-header .lang-switcher {
    order: initial;
  }
  .main-header .logo img {
    height: 45px;
  }
}

.main-footer {
  background-color: #2d2d2d;
  color: #fffdfc;
  padding: 40px 0 20px;
}
.main-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}
.main-footer .footer-logo img {
  height: 40px;
  margin: 0 auto 10px auto;
}
.main-footer .footer-links-column h4,
.main-footer .footer-contact-column h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: none;
  font-weight: 700;
}
.main-footer .footer-links-column li,
.main-footer .footer-contact-column li {
  margin-bottom: 8px;
}
.main-footer .footer-links-column a {
  color: #fffdfc;
  opacity: 0.8;
}
.main-footer .footer-links-column a:hover {
  opacity: 1;
  text-decoration: underline;
}
.main-footer .footer-contact-column {
  opacity: 0.8;
}
.main-footer .footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.8rem;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .main-footer .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    text-align: left;
  }
  .main-footer .footer-logo img {
    margin: 0;
  }
}

/* --- Hero --- */
.hero {
  padding: 40px 0;
  background-color: #F5F5F5;
}
.hero .hero-content-box {
  background-color: #371e2c;
  background-image: url("../img/png/fondo-web.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fffdfc;
  padding: 40px 25px;
  border-radius: 24px;
  text-align: center;
}
.hero .hero-content-box h1 {
  margin-bottom: 20px;
  text-size-adjust: 80%;
}
@media (min-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content-box {
    padding: 60px;
    text-align: left;
  }
  .hero .hero-content-box h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: normal;
    width: 70%;
  }
  .hero .hero-content-box h1 .highlight {
    font-weight: 500;
  }
}

/* --- Propósito --- */
#propósito .purpose-grid.desktop-grid {
  display: none;
}
#propósito .purpose-carousel-wrapper {
  overflow: hidden;
  cursor: grab;
}
#propósito .purpose-carousel {
  display: flex;
}
#propósito .purpose-carousel .carousel-slide {
  flex: 0 0 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
#propósito .purpose-card,
#propósito .purpose-image {
  height: 100%;
}
#propósito .purpose-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
#propósito .purpose-image {
  width: 100%;
}
#propósito .purpose-icon {
  margin-bottom: 0;
}
#propósito .purpose-icon img {
  border-radius: 50%;
  margin: 0;
  width: 60px;
  height: 60px;
}
#propósito .purpose-image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  #propósito .purpose-carousel-wrapper,
  #propósito .carousel-pagination {
    display: none !important;
  }
  #propósito .purpose-grid.desktop-grid {
    display: grid;
    grid-template-areas: "card1 card2 image1 image1" "image2 image2 card3 card4";
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  #propósito .purpose-grid.desktop-grid > .purpose-card:nth-child(1) {
    grid-area: card1;
  }
  #propósito .purpose-grid.desktop-grid > .purpose-card:nth-child(2) {
    grid-area: card2;
  }
  #propósito .purpose-grid.desktop-grid > .purpose-image-1 {
    grid-area: image1;
  }
  #propósito .purpose-grid.desktop-grid > .purpose-image-2 {
    grid-area: image2;
  }
  #propósito .purpose-grid.desktop-grid > .purpose-card:nth-child(5) {
    grid-area: card3;
  }
  #propósito .purpose-grid.desktop-grid > .purpose-card:nth-child(6) {
    grid-area: card4;
  }
  #propósito .purpose-card {
    align-items: flex-start;
    gap: 22px;
    padding: 36px 25px 58px 20px;
    text-align: left;
  }
}

/* --- Propuesta de Valor --- */
#propuesta-valor {
  background-color: #F5F5F5;
}
#propuesta-valor .value-proposition-box {
  background-color: #2d2d2d;
  color: #fffdfc;
  padding: 40px 25px;
  border-radius: 24px;
}
#propuesta-valor .value-proposition-box h2 {
  color: #fffdfc;
  text-align: left;
}
#propuesta-valor .value-proposition-box .tag {
  display: inline-block;
  border: 1px solid #fffdfc;
  padding: 4px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
}
#propuesta-valor .value-proposition-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  #propuesta-valor .value-proposition-box {
    padding: 60px;
  }
  #propuesta-valor .value-proposition-box h2 {
    font-size: 34px;
    font-weight: 500;
    line-height: normal;
    color: #fffdfc;
  }
  #propuesta-valor .value-proposition-box h2 .highlight {
    color: #D63C76;
  }
  #propuesta-valor .value-proposition-content {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  #propuesta-valor .value-proposition-text,
  #propuesta-valor .value-proposition-description {
    flex: 1;
  }
}

/* --- Servicios --- */
#servicios .service-item-desktop {
  display: none;
}
#servicios .services-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#servicios .service-item-mobile details {
  border-radius: 20px;
  overflow: hidden;
  background-color: #2d2d2d;
  color: #fffdfc;
}
#servicios .service-item-mobile summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 80px;
}
#servicios .service-item-mobile summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
#servicios .service-item-mobile summary > * {
  position: relative;
  z-index: 2;
}
#servicios .service-item-mobile summary h3 {
  color: #fffdfc;
  margin: 0;
  font-size: 1.2rem;
  max-width: 80%;
}
#servicios .service-item-mobile summary .icon-arrow {
  font-size: 1.5rem;
  background-color: rgba(45, 45, 45, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
#servicios .service-item-mobile details[open] summary .icon-arrow {
  transform: rotate(90deg);
}
#servicios .service-item-mobile .service-card-detail {
  padding: 20px;
  padding-top: 10px;
}
#servicios .service-item-mobile .service-card-detail ul {
  list-style: disc;
  padding-left: 25px;
}
#servicios .service-item-mobile .service-card-detail ul li {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  #servicios .service-item-mobile {
    display: none;
  }
  #servicios .services-accordion {
    flex-direction: row;
    gap: 20px;
  }
  #servicios .service-item-desktop {
    display: block !important;
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    min-height: 500px;
    transition: flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #servicios .service-item-desktop:hover {
    flex: 3;
  }
  #servicios .service-item-desktop:hover .service-card-detail {
    opacity: 1;
    visibility: visible;
  }
  #servicios .service-item-desktop:hover .service-card-content {
    opacity: 0;
  }
  #servicios .service-card-desktop .service-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
  }
  #servicios .service-card-desktop .service-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    transition: opacity 0.4s ease;
  }
  #servicios .service-card-desktop .service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    width: 80%;
    color: #fffdfc;
  }
  #servicios .service-card-desktop .service-card-content .icon-arrow {
    font-size: 2rem;
    align-self: flex-end;
  }
  #servicios .service-card-desktop .service-card-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 3;
    padding: 40px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #servicios .service-card-desktop .service-card-detail h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fffdfc;
  }
  #servicios .service-card-desktop .service-card-detail .back-arrow {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    cursor: pointer;
    transform: rotate(180deg);
  }
}

/* --- Metodología --- */
#metodologia .methodology-steps {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
#metodologia .step-btn {
  background-color: rgba(96, 96, 96, 0.1);
  color: #606060;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}
#metodologia .step-btn.active {
  background-color: rgba(214, 60, 118, 0.1);
  color: #D63C76;
  font-weight: 700;
}
#metodologia .methodology-content-box {
  background-color: #eaeaea;
  padding: 25px;
  border-radius: 20px;
  text-align: left;
}
#metodologia .methodology-content-box h3 {
  text-transform: uppercase;
  font-size: 1.25rem;
}
#metodologia .methodology-content-box h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
#metodologia .step-content {
  display: none;
}
#metodologia .step-content.active {
  display: block;
}
@media (min-width: 2560px) {
  #metodologia .methodology-steps {
    justify-content: center;
    overflow-x: visible;
  }
  #metodologia .methodology-content-box {
    padding: 40px;
  }
  #metodologia .step-content.active {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
  }
}

/* --- Founder --- */
#founder {
  background-color: #2d2d2d;
  color: #fffdfc;
  padding-bottom: 0;
}
#founder h2 {
  color: #fffdfc;
  text-align: center;
}
#founder .founder-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#founder .founder-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
#founder .founder-image-container {
  background-color: #373737;
  border-radius: 20px;
  position: relative;
  width: 100%;
  max-width: 320px;
}
#founder .founder-image-container img {
  border-radius: 20px;
}
#founder .founder-bio {
  background-color: #373737;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
}
#founder .work-experience {
  background-color: #fffdfc;
  color: #2d2d2d;
  border-radius: 20px;
  padding: 30px;
}
#founder .work-experience h3 {
  color: #2d2d2d;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#founder .logos-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}
#founder .logos-carousel-wrapper.grabbing {
  cursor: grabbing;
}
#founder .logos-carousel {
  display: flex;
}
#founder .work-experience .carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 20px;
}
#founder .work-experience .carousel-slide img {
  max-height: 40px;
  max-width: 130px;
  object-fit: contain;
}
@media (min-width: 768px) {
  #founder {
    padding-bottom: 60px;
  }
  #founder .founder-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
    gap: 30px;
  }
  #founder .founder-image-container {
    aspect-ratio: 1.5/1;
    max-width: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #founder .founder-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
  }
  #founder .founder-name {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #fffdfc;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  #founder .founder-bio {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #founder .work-experience {
    padding: 45px 30px;
  }
  #founder .work-experience h3 {
    font-size: 24px;
    margin-bottom: 39px;
  }
  #founder .work-experience .carousel-slide {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
  }
  #founder .work-experience .carousel-pagination {
    margin-top: 39px;
  }
}

/*# sourceMappingURL=styles.css.map */
