/*Basics*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
html a {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

html,
body {
  min-height: 100%;
  overflow-x: hidden; /* Fix for horizontal scroll caused by AOS animations */
}

body {
  font-size: 17px;
  color: #4a332a;
  font-family: "Oxygen", Helvetica, Arial, sans-serif;
  background: #fcf9f2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Droid Serif", serif;
  font-weight: 700;
  color: #4a332a;
  margin: 0;
  padding: 0;
}

/* Image Placeholder Style */
.image-placeholder {
  width: 100%;
  min-height: 200px;
  background-color: #f0e9dd; /* Darker parchment */
  border: 2px dashed #c08b73;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c08b73;
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.image-placeholder::after {
  display: block;
}
.image-placeholder i {
  font-size: 32px;
  margin-right: 10px;
}


h2 {
  font-size: 60px;
}
h3 {
  font-size: 41px;
}
h4 {
  font-size: 32px;
}
h5 {
  font-size: 21px;
}
h6 {
  font-size: 18px;
}

h3,
h4 {
  position: relative;
  padding-bottom: 28px;
}

h3:after,
h4:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-bottom: 2px solid #b1a492;
}

p {
  line-height: 1.4;
  margin: 20px 0;
}

.subtitle,
.category {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
  color: #777;
  text-align: center;
}

img,
embed,
object,
video {
  max-width: 100%;
}

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

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

a:hover {
  text-decoration: none;
  color: #d57e4a;
}

::selection {
  background: #e59361;
  color: #fff;
}

.clear {
  clear: both;
}

.wrapper {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  position: relative;
	margin-top: 20px;
}

input[type="text"] {
  border: 2px solid #444;
  background: #fff;
  font-size: 17px;
  color: #444;
  padding: 16px;
  border-radius: 999px;
  width: 280px;
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.buttons {
  width: auto;
  margin: 0 auto;
  text-align: center;
}

a.button-1,
a.button-2,
button {
  color: #fff;
  background: #e59361;
  border: 2px solid #e59361;
  border-radius: 999px;
  margin-top: -2px;
  margin-left: 10px;
  font-family: "Oxygen", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  display: inline-block;
  width: 280px;
  margin: 10px;
  text-align: center;
  padding: 18px 0;
}

a.button-1:hover {
  border-color: #d57e4a;
  background: #d57e4a;
}

a.button-2 {
  border-color: #444;
  background: none;
  color: #444;
}

a.button-2:hover {
  background: #444;
  color: #fff;
}

@media only screen and (max-width: 640px) {
  a.button-1,
  a.button-2 {
    font-size: 16px;
    margin: 5px;
  }
}

/*Header*/

header#top {
  background: #fff;
  height: 80px;
}

h1.logo a {
  display: inline-block;
  float: left;
  color: #444;
  line-height: 80px;
  margin: 0 0 0 40px;
  height: 74px;
}

h1.logo a span {
  color: #b6afa9;
}

header#top nav {
  display: inline-block;
  float: right;
  width: auto;
  margin-top: 20px;
  margin-right: 40px;
}

header#top nav ul li {
  display: inline-block;
  float: left;
}

header#top nav ul li a {
  display: inline-block;
  background: none;
  padding: 10px 15px;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

header#top nav ul li a:hover {
  color: #444;
}

header#top nav ul li a.nav-cta {
  color: #e59361;
  border: 2px solid #e59361;
  border-radius: 999px;
  margin-top: -2px;
  margin-left: 10px;
}

@media only screen and (max-width: 1024px) {
  header#top {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  h1.logo {
  }
  header#top nav {
    float: none;
    text-align: center;
    width: 100%;
    margin: 20px auto 0 auto;
  }
  header#top nav ul li {
    float: none;
    font-size: 15px;
  }
  h1.logo a {
    display: block;
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}

/*Banner*/

#banner {
  height: 800px;
  background: #222 url(../images/header-image.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  padding: 1px 0 0 0;
}

#banner .wrapper {
  text-align: center;
  margin-top: 230px;
}

#banner h2 {
  margin: 20px auto 20px auto;
  padding: 0 5%;
  opacity: 0.9;
  color: #fff;
  font-size: 60px;
  text-align: center;
  font-weight: 700;
}

#banner .subtitle {
  font-size: 18px;
  letter-spacing: 0.1emx;
  margin: 0;
  color: #e0dad4;
}

#banner p {
  font-family: "Droid Serif", Times, Georgia, serif;
  font-style: italic;
  width: 70%;
  margin: 0 auto;
  color: #e0dad4;
  margin-bottom: 40px;
}

#banner .button-2 {
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  #banner h2 {
    font-size: 48px;
    margin-top: 20px;
    padding: 0;
    width: 100%;
  }
  #banner .wrapper {
    margin: 50px auto;
  }
  #banner p {
    width: 90%;
  }
  #banner {
    height: auto;
    padding: 40px 0;
  }
}

/*Featured Articles Section Section*/

.featured-articles-section {
  text-align: center;
  padding: 50px 0 15px;
  background: #fff;
}

.cards-container {
  margin: 40px auto;
}

.article-card {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  float: left;
  margin: 10px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.article-card.article-card-alt {
  background-color: #e6e4e1;
}

.article-card.article-card-alt h4 {
  color: #000;
}

.article-card.article-card-alt h4:after {
  border-color: #3c3834;
  opacity: 0.6;
}

.article-card.article-card-alt .category,
.article-card.article-card-alt p,
.article-card.article-card-alt p a {
  color: #3c3834;
}

.article-card-content {
  width: 90%;
  margin: 22% auto;
}

.article-card .category {
  color: #e0dad4;
}

.article-card h4 {
  color: #fff;
}

.article-card p,
.article-card p a {
  font-family: "Droid Serif", Times, Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: #e0dad4;
  width: 90%;
  margin: 25px auto 0 auto;
}

.article-card.card-large p {
  width: 60%;
}

.article-card h4:after {
  border-color: rgba(255, 255, 255, 0.6);
}

.article-card.card-large {
  width: 790px;
  height: 520px;
}

.article-card.card-medium {
  width: 520px;
  height: 420px;
}

.article-card.card-small {
  width: 250px;
  height: 250px;
}

.article-group {
  float: left;
}

.article-group .article-card {
  float: none;
}

@media only screen and (max-width: 1079px) {
  .cards-container {
    width: 800px;
  }
  .article-card.card-large {
    width: 510px;
  }
  .article-card.card-medium {
    width: 380px;
  }
  .article-card.card-large p {
    width: auto;
  }
}

@media only screen and (max-width: 799px) {
  .cards-container {
    width: 80%;
  }
  .article-card.card-large,
  .article-card.card-medium {
    width: 95%;
    margin: 2.5% 2.5%;
  }
  .article-card.card-small {
    width: 45%;
    margin: 1.25% 2.5%;
  }
}

@media only screen and (max-width: 480px) {
  .article-card.card-small {
    width: 95%;
    margin: 2.5% 2.5%;
  }
}

/*Full Width Section*/

.full-width-section {
  text-align: left;
  padding: 60px 0;
  background: #f3f3f3;
  max-height: 870px;
  background-repeat: no-repeat;
  background-position: center;
}

.full-width-section .subtitle {
  color: #b1a492;
  font-size: 18px;
  margin-bottom: 40px;
}

.full-width-section h2 {
  margin-bottom: 40px;
}

.full-width-section p {
  font-family: "Droid Serif", Times, Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: #777;
  margin-bottom: 50px;
}

.full-width-section .text.align-left {
  float: left;
  width: 60%;
  padding: 0 10% 0 40px;
}

.full-width-section .text.align-right {
  float: right;
  width: 60%;
  padding: 0 40px 0 10%;
}

.full-width-section .text.align-center {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.full-width-section .text.align-center p.subtitle {
  text-align: center;
}

.full-width-section ul.list-checkmarks {
  margin-top: 40px;
}

ul.list-checkmarks li {
  text-align: left;
  list-style-image: none;
  background: url(../images/checkmark.png) top left no-repeat;
  background-position: 0 2px;
  margin: 10px 0;
  padding: 0 10px 10px 40px;
}

@media only screen and (max-width: 1024px) {
  .full-width-section {
    padding: 120px 0;
  }
}

@media only screen and (max-width: 720px) {
  .full-width-section .text {
    float: none !important;
    text-align: center;
  }
  .full-width-section .text.align-right,
  .full-width-section .text.align-left,
  .full-width-section .image.align-right,
  .full-width-section .image.align-left {
    width: 100%;
  }
  .full-width-section .image {
    float: none !important;
    width: 80% !important;
    padding: 0 20px;
    margin: 0 auto 60px auto;
  }
  .full-width-section .text p.subtitle {
    text-align: center;
  }
  .full-width-section h2 {
    font-size: 60px;
  }
}

/*Services Section*/

.services-section {
  text-align: center;
  padding: 20px 10px;
  background: #fff;
}

.services-section .subtitle {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.services-section p {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Droid Serif", Times, Georgia, serif;
  font-style: italic;
  font-size: 16px;
}

.services-section h4 {
  color: #fff;
}

.services-section h4:after {
  border-color: rgba(255, 255, 255, 0.8);
}

ul.services-list {
  padding: 0;
  margin: 0;
}

ul.services-list li {
  background: #222;
  padding: 60px 20px;
  border-radius: 10px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

ul.services-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

ul.services-list li.swiper-slide {
  height: auto;
}

.swiper-wrapper {
  align-items: stretch;
}

/* Swiper custom styles */
.mySwiper {
  width: 100%;
  margin: 40px auto 20px;
  padding-bottom: 50px;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.swiper-button-next {
  right: 10px !important;
}

.swiper-button-prev {
  left: 10px !important;
}

/* Color naranja para que sean visibles fuera de las tarjetas (sobre el fondo blanco) */
.swiper-button-next, .swiper-button-prev {
  color: #c95e37 !important;
}

@media only screen and (max-width: 640px) {
  /* Mayor padding en móvil para que las tarjetas no toquen los bordes */
  .mySwiper {
    padding-left: 35px;
    padding-right: 35px;
  }
  /* Flechas más cerca del borde para aprovechar espacio y un poco más pequeñas */
  .swiper-button-next {
    right: 5px !important;
  }
  .swiper-button-prev {
    left: 5px !important;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
  }
}

.swiper-pagination-bullet-active {
  background: #e59361 !important;
}

ul.services-list li.emphasis {
  background: #e59361;
}

ul.services-list li p {
  width: 90%;
  margin: 20px auto 40px auto;
}

ul.services-list li a {
  font-family: "Oxygen", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #e59361;
}

ul.services-list li a:hover {
  color: #d57e4a;
}

a.small-button {
  color: #fff !important;
  font-size: 12px;
  padding: 8px 40px;
  border: 2px solid #fff;
  border-radius: 999px;
}

a.small-button:hover {
  opacity: 0.8;
}

/*Latest Articles / Masonry Section*/

.masonry-section {
  text-align: center;
  padding: 60px 0;
  background: #f2f2f2;
}

.masonry {
  margin: 40px auto;
  padding: 0;
  width: 95%;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: 0.85em;
}

/* ... */

/*Instagram Section*/

.instagram-section {
  text-align: center;
  padding: 60px 0;
  background: #fff;
}

.instagram-section p.subtitle {
  color: #e59361;
  font-size: 17px;
}

ul.instagram-list {
  width: 90%;
  max-width: 1190px;
  margin: 80px auto 60px;
}

ul.instagram-list li {
  display: inline-block;
  float: left;
  width: 23%;
  background: #fff;
  padding: 0;
  margin: 1%;
}

ul.instagram-list li img {
  border-radius: 10px;
}

ul.instagram-list li a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 960px) {
  ul.instagram-list li {
    display: block;
    width: 47%;
    margin: 1.5%;
  }
}

@media only screen and (max-width: 720px) {
  ul.instagram-list li {
    display: block;
    width: 100%;
    margin: 3% 0;
  }
}

/*Footer*/

footer {
  background: #222;
  margin-top: 0px;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

footer .footer-left {
  float: left;
  text-align: left;
}

footer .footer-right {
  float: right;
  text-align: right;
}

footer p {
  font-size: 16px;
  margin: 5px;
}

footer p.copyright {
  font-family: "Oxygen", sans-serif;
  font-weight: 500;
  color: #ccc;
}

footer .footer-links {
  color: #777;
  text-transform: uppercase;
  font-size: 12px;
}

footer .footer-links a {
  color: #777;
  margin: 0 20px;
}

footer .footer-links a:hover {
  color: #e59361;
}

footer .footer-links a:first-of-type {
  margin: 0 20px 0 0;
}

footer .footer-right a.social {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: no-repeat center;
  text-indent: -4999px;
  overflow: hidden;
  text-align: left;
  background-color: #363636;
  border-radius: 999px;
  margin-left: 10px;
}

footer .footer-right a.social:hover {
  background-color: #e59361;
}

footer a.social.facebook {
  background-image: url(../images/social-facebook.png);
}
footer a.social.twitter {
  background-image: url(../images/social-twitter.png);
}
footer a.social.google {
  background-image: url(../images/social-google.png);
}

@media only screen and (max-width: 960px) {
  footer {
    padding: 30px 0;
  }
  footer .footer-left,
  footer .footer-right,
  footer a.logo {
    float: none;
    text-align: center;
    margin: 0 auto;
  }
  footer .footer-left {
    margin-bottom: 20px;
  }
  footer a.logo {
    margin: 10px auto 40px auto;
  }
  footer .footer-links a {
    margin: 0 5px !important;
    font-size: 14px;
  }
}

/* Usamos una clase nueva para que ocupe el ancho del wrapper (1080px) */
.article-card.card-full-inside {
  width: calc(
    100% - 20px
  ); /* Ocupa el 100% menos los márgenes que pusiste en .article-card */
  height: 520px;
  float: left;
  margin: 10px;
  background-size: cover;
  background-position: center;
}

/* Ajuste para que el texto de la tarjeta ancha no se vea demasiado estirado */
.card-full-inside .article-card-content p {
  width: 60%;
  margin: 25px auto 0 auto;
}

/* Ajuste para asegurar que las tarjetas de abajo queden bien centradas si sobran píxeles */
.cards-container {
  overflow: hidden;
}

/* Anatomy Section */
.anatomy-section {
  background: #e6eae5; /* A light grayish green */
  padding: 30px 0;
  text-align: left;
}

.anatomy-section h3 {
  color: #555;
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.anatomy-section h3:after {
  display: none;
}

.anatomy-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 400px;
}

.anatomy-image {
  width: 350px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.anatomy-image img {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
}

.anatomy-text {
  position: absolute;
  width: 250px;
  z-index: 3;
}

.anatomy-text h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
}
.anatomy-text h4:after { display: none; }

.anatomy-text p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  margin: 0;
}

/* Connecting Lines */
.connector-line {
  position: absolute;
  z-index: 1;
}
.connector-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid #777;
  border-radius: 50%;
  background: transparent;
  z-index: 4;
}

/* Specific Positions for Desktop */
.anatomy-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.anatomy-left .text-content {
  padding-right: 15px;
}
.anatomy-left .connector-line {
  top: px;
  left: 100%;
  width: 90px;
  border-top: 1px solid #777;
}
.anatomy-left .connector-dot {
  top: 7px;
  left: calc(100% + 90px);
}

.anatomy-right {
  right: 0;
}
.anatomy-right .text-content {
  padding-left: 15px;
}

.anatomy-right-top {
  top: 35%;
  transform: translateY(-50%);
}
.anatomy-right-top .connector-line {
  top: 10px;
  right: 100%;
  width: 80px;
  height: 60px;
  border-top: 1px solid #777;
  border-left: 1px solid #777;
}
.anatomy-right-top .connector-dot {
  top: 67px;
  right: calc(100% + 77px);
}

.anatomy-right-bottom {
  top: 75%;
  transform: translateY(-50%);
}
.anatomy-right-bottom .connector-line {
  top: 10px;
  right: 100%;
  width: 120px;
  border-top: 1px solid #777;
}
.anatomy-right-bottom .connector-dot {
  top: 7px;
  right: calc(100% + 120px);
}

/* Responsive for Mobile */
@media only screen and (max-width: 900px) {
  .anatomy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .anatomy-text {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-bottom: 30px;
    text-align: center;
  }
  .anatomy-text .text-content {
    padding: 0 !important;
  }
  .anatomy-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
  }
  .connector-line, .connector-dot {
    display: none !important;
  }
}

/* ==========================================================================
   PITCH DECK SECTIONS
   ========================================================================== */

/* Variables / Theme Colors */
:root {
  --color-green: #dcedd9;
  --color-green-dark: #7a9474;
  --color-sand: #f4ebd9;
  --color-sand-dark: #cba874;
  --color-terra: #eecdbf;
  --color-terra-dark: #c2694b;
  --color-gray: #fcf9f2; /* Changed to parchment to blend in */
  --color-dark: #4a332a; /* Changed to dark clay */
}

/* Global Section Styles */
.trazabilidad-section,
.perfiles-section,
.segmentacion-section,
.impacto-section {
  padding: 30px 0;
  background: transparent; /* Use body background */
  color: var(--color-dark);
}

.trazabilidad-section h3,
.perfiles-section h3,
.segmentacion-section h3,
.difusion-section h3,
.impacto-section h3 {
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 20px;
  margin-bottom: 40px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.trazabilidad-section h3:after,
.perfiles-section h3:after,
.segmentacion-section h3:after,
.difusion-section h3:after,
.impacto-section h3:after {
  display: none;
}

/* 1. Tradición y Trazabilidad Sostenible */
.trazabilidad-section {
  background: #fff;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.timeline-item {
  background: var(--color-gray);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  align-content: center;
}
.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.timeline-icon {
  font-size: 48px;
  color: var(--color-green-dark);
  margin-bottom: 20px;
}
.timeline-item:nth-child(2) .timeline-icon {
  color: var(--color-sand-dark);
}
.timeline-item:nth-child(3) .timeline-icon {
  color: var(--color-terra-dark);
}
.timeline-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 0;
}
.timeline-content h4:after { display: none; }
.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* 2. Perfiles de Consumidor */
.perfiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.perfil-card {
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.perfil-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.bg-green { background: var(--color-green); }
.bg-sand { background: var(--color-sand); }
.bg-terra { background: var(--color-terra); }

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--color-dark);
  opacity: 0.8;
}
.perfil-card h4 {
  font-size: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 20px;
  color: var(--color-dark);
}
.perfil-card h4:after { display: none; }

.perfil-info {
  text-align: center;
}
.perfil-info .label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.perfil-info p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.4;
  color: var(--color-dark);
}
.perfil-info hr {
  border: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 20px 0;
}
.perfil-info .highlight {
  font-weight: 700;
}

/* 3. Segmentación y Mapeo */
.segmentacion-section {
  background: #fff;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bento-item {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.bg-green-light { background: #eaf3eb; }
.bg-sand-light { background: #fbf7ef; }
.bg-gray-light { background: #f5f7f5; }
.bg-terra-light { background: #f7e6e0; }

.bento-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--color-dark);
}
.bento-item h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--color-dark);
  padding-bottom: 0;
}
.bento-item h4:after { display: none; }
.bento-item p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--color-dark);
}

/* 4. Estrategia Omnicanal */
.difusion-section {
  background: #252826;
  color: #fff;
  padding: 60px 0;
}
.difusion-section h3 {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.side-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
}
.split-icon {
  font-size: 40px;
  margin-right: 20px;
  color: var(--color-terra);
}
.side-header h4 {
  color: #fff;
  font-size: 24px;
  margin: 0;
  padding-bottom: 0;
}
.side-header h4:after { display: none; }

.strategy-list li {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.strategy-list li strong {
  display: block;
  font-family: "Oxygen", sans-serif;
  color: var(--color-terra);
  margin-bottom: 5px;
  font-size: 18px;
}

/* 5. Impacto */
.impacto-section {
  text-align: center;
}
.impacto-section h3 {
  text-align: left;
}
.pyramid-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 30px auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.pyramid-layer {
  position: absolute;
  bottom: 0;
  border-radius: 500px 500px 0 0;
  text-align: center;
  color: var(--color-dark);
}
.layer-1 {
  width: 800px;
  height: 400px;
  background: var(--color-sand);
  z-index: 1;
  padding-top: 20px;
}
.layer-2 {
  width: 600px;
  height: 300px;
  background: var(--color-terra);
  z-index: 2;
  padding-top: 20px;
}
.layer-3 {
  width: 400px;
  height: 200px;
  background: var(--color-terra-dark);
  color: #fff;
  z-index: 3;
  padding-top: 40px;
}
.layer-3 h4 { color: #fff; }

.pyramid-layer h4 {
  font-size: 20px;
  margin-bottom: 5px;
  padding-bottom: 0;
}
.pyramid-layer h4:after { display: none; }
.pyramid-layer p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 50%;
}

.impacto-footer h2 {
  font-size: 28px;
  margin-top: 40px;
  color: var(--color-dark);
}

/* Responsive Media Queries */
@media only screen and (max-width: 900px) {
  .timeline-grid,
  .perfiles-grid,
  .bento-grid,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pyramid-container {
    height: auto;
    flex-direction: column;
    align-items: center;
    position: static;
  }
  .pyramid-layer {
    position: static;
    width: 100% !important;
    height: auto !important;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 30px 20px;
  }
  }
}

/* ==========================================================================
   NUEVAS SECCIONES ARTESANALES (Modo de Uso y Detalles)
   ========================================================================== */

.modo-de-uso-section,
.detalles-section {
  padding: 60px 0;
  background: transparent;
}
.modo-de-uso-section h3,
.detalles-section h3 {
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 20px;
  margin-bottom: 40px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.modo-de-uso-section h3:after,
.detalles-section h3:after {
  display: none;
}

/* Modo de Uso */
.uso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.uso-step {
  text-align: center;
}
.uso-step .image-placeholder {
  width: 120px;
  height: 120px;
  min-height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}
.uso-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Oxygen", sans-serif;
  color: var(--color-dark);
  padding-bottom: 0;
}
.uso-text h4:after { display: none; }
.uso-text p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* Detalles que Enamoran */
.detalles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.detalle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.circle-placeholder {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  min-height: 200px;
  margin: 0 auto 20px auto;
}
.detalle-text p {
  font-size: 16px;
  line-height: 1.5;
}
.detalle-text strong {
  display: block;
  font-family: "Droid Serif", serif;
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--color-terra-dark);
}

@media only screen and (max-width: 900px) {
  .uso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detalles-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .uso-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   QR Section
   ========================================================================== */
.qr-info-section {
  padding: 60px 0;
  background: transparent;
  text-align: center;
}

.qr-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.qr-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.qr-text {
  text-align: left;
  flex: 1;
}

.qr-text h4 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--color-dark);
  padding-bottom: 0;
}
.qr-text h4:after { display: none; }

.qr-text p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.qr-box {
  background: var(--color-sand);
  width: 140px;
  height: 140px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  border: 2px dashed rgba(0,0,0,0.1);
}

.qr-box i {
  font-size: 80px;
}

@media only screen and (max-width: 720px) {
  .qr-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .qr-text {
    text-align: center;
  }
}

.sombreado-blanco {
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9); 
}

.resplandor-fuerte {
  text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 20px #fff;
}