@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  font-family: 'Roboto', sans-serif;
}


body {
  padding: 0px 5px;
}

h1 {
  font-size: 1em;
  width: 100%;
  text-align: center;
  background-color: #3a3a3a;
  border-radius: 1em;
  padding: 10px;
  color: white;
  margin-top: 1em;
}

.header {
  min-height: 300px;
  background-image: url('promoCharacter.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


.howItWorks {

  color: black;
  margin: 0 0 1em 0;
  /*padding: 1em 0;*/
  font-size: 0.9em;
}

#explanation {
  padding: 1em;
  margin: 0 !important;
  font-size: 1.1em;
}

#logoContainer {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

#textTitle {
  font-size: 1.2em;
  background-color: #fbb03b;
  color: white;
  border-radius: 1em;
  padding: 1em;
  width: 100% !important;
  text-align: center;
}

#textSubtitle {
  font-size: 1.2em;
  background-color: #51cdff;
  color: white;
  border-radius: 1em;
  padding: 1em;
  width: 100% !important;
  text-align: center;
}

.enfasisPositivo {
  background-color:#51cdff;
  font-size:14px;
  font-weight:bold;
  color:white;
  text-align:center;
  padding:5px;
  border-radius: 8px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1230px;
  }
}

.accordionContainer {
  padding: 0px !important;
  padding-right: 0px !important;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.active,
.accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.sectionContainer {
  margin-bottom: 1em;
  padding: 1.5em;
}

.sectionTitle {
  padding: 5px;
  font-weight: bold;
  text-align: center;
}

#giftsContainer {
  margin-top: 15px;
   /* Añade el scroll horizontal y evita el salto de línea en los hijos */
   overflow-x: scroll;
   white-space: nowrap;
}

.gift {
  display: inline-flex;
  flex-direction: column;
  max-width: 60%;
  margin: 0 1em;
  text-align: center;
  align-items: center;
  padding-left:10px;
  padding-right:10px;
}

.giftImage {
  display: flex;
  max-width: 70%;
}

.giftDescription {
  display: block;
}

.giftButton {
  background-color: #fbb03b;
  color: white;
  font-weight: bold;
  padding: 7px;
  border-radius: 5px;
  display: block;
  
}

#gift b label {
  margin: 0;
}

#giftsTitle {
  margin-top: 1rem;
}

#labelPropPrice {
  padding-left: 1em;
}


ol>li::marker {
  font-weight: bold;
}

#contactLogo {
  width: 70%;
  height: auto;
}

#modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
}

#modalContent {
  width: 95%;
  height: 70%;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}

#modalClose {
  position: absolute;
  top: 0;
  right: 4px;
  max-width: 50px;
}

#modalClose i {
  font-size: 40px;
}

.invisible {
  display: none;
}

.footer {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  font-size: 12px;
  text-align: center;
}

#iCallSection {
  padding: 20px;
}

#contactForm {
  padding: 20px;
}

#contactForm input {
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  padding-left: 10px;
  margin-bottom: 15px;
}

#contactForm button {
  width: 100%;
  background-color: orange;
  color: white;
  border-radius: 5px;
  height: 40px;
  font-weight: bold;
  border: 0;
}

.contactOptionsContainer {
  width: 100%;
  display: flex;
  padding: 20px;
}

.contactOption {
  margin: auto;
  width: 50%;
  background-color: #AAA;
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  margin: 10px;
  margin-top: 30px;
  padding: 20px;
}

.contactOptionActive {
  background-color: #fbb03b;
}

#contactExtraInfo {
  border-top: 1px solid #ddd;
  padding: 20px;
}