/*
- BASIC
- FONT
- ACCORDION
- RESPONSIVE
- FLEX BOX
- COLORS
- PRODUCTS
- MODAL
- BUTTONS
- OTHERS
*/

/*BASIC*/ :root {
  --font-size: 1em;
--max-width: 1140px;
    --padding: 20px;
    --margin: 20px;
    --radius: 10px;
  --primary-color: #000;
  --second-color: #eee;
  --dark-color: #1d1b19;
  --light-color: #ffc20c;
    --whatsapp-color: #25d366;
  --flex-direction: initial;
  --flex-wrap: initial;
  --justify-content: initial;
  --align-items: initial;
  --align-content: initial;
  --gap: initial;
  --flex-basis: initial;
  --flex-grow: initial;
  --flex-shrink: initial;
  --order: initial;
  --align-self: initial;
}

* {
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--dark-color);
  font-family: sans-serif;
    font-size: 1.2em;
}
p {
  font-size: 1em;
}
p, h1, h2, ul, .price {
       margin-bottom: 1em; 
}

.product-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;color: #000;
    margin-bottom: 40px;
}

.product-box h2 {
    font-size: 1.5em;
}
@media only screen and (min-width: 769px) {
    .product-box h2 {
    font-size: 2em;
}
}
ul {
    list-style-position: inside;
}
section {
  padding: 40px;
}
.max-width {
   max-width: var(--max-width); 
    margin-left: auto;
    margin-right: auto;
}
.radius {
    border-radius: var(--radius);
}
.w50,.w50-responsive {
    width: 50%;
}

@media (max-width: 600px) {
    .w50-responsive {
    width: 100%;
}
}
    .w30-responsive {
        width: 30%;
    }
    .w70-responsive {
        width: 70%;
    }
@media (max-width: 300px) {
        .w30-responsive {
        width: 100%;
    }
    .w70-responsive {
        width: 100%;
    }
}
.padding {
    padding: var(--padding);
}
.margin {
    margin: var(--margin);
}
/*FONT*/
.h1-g {
  font-size: 2.5rem;
  line-height: 1.2;
}
/*FLEX BOX*/
.flex-container {
  flex-wrap: wrap;
    display: flex;
}
.flex-direction-row {
  flex-direction: row;
}
.flex-align-center {
  align-content: center;
}
/*COLORS*/
.background-dark-color {
  background-color: var(--dark-color);
  color: #fff;
}
.background-light-color {
  background-color: var(--light-color);
  color: #000;
}
.light-color {
  color: var(--light-color);
}
.white-background {
    background-color: #fff;
    color: #000;
}
/*ACCORDION*/
.accordion {
  width: 100%;
  max-width: var(--max-width);
  margin: 20px auto;
  background-color: #fff;
}
.accordion-item {
  border-style: solid;
  border-width: 2px;
  border-color: var(--light-color);
  overflow: hidden;
}
.accordion-title {
  background-color: var(--dark-color);
color: #fff;
  padding: 10px;
  cursor: pointer;
    font-size: 1.3em;
    font-weight: 700;
}
.accordion-content {
  max-height: 0;
    margin-left: 10px;
    margin-right: 10px;
  overflow: hidden;
  transition: max-height 0.3s ease-out; /* Adição da transição */
}
.active {
  max-height: 200px; /* Altura máxima desejada */
  transition: max-height 0.3s ease-in; /* Transição ao expandir */
}
/*PRODUCTS*/
.product-container {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
     overflow: hidden
}
.product-container .product-container-iner {
    margin: 20px;
    overflow: hidden
}
.product-container .product-container-iner .column {
    width: 50%;
    float: left;
}
/*MODAL*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  position: relative;
  max-width: 600px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
#modalImage {
    width: 100%;
    height: auto;
}
/*RESPONSIVE*/
@media (max-width: 768px) {
  /* For mobile phones: */
  .mobile {
    display: none;
  }
}
@media (min-width: 769px) {
  /* For mobile phones: */
  .desktop {
    display: none;
  }
}
@media (max-width: 768px) {
.btn-whatsapp {
    max-width: 300px;
}
    .btn-whatsapp img {
    width: 100%;
        height: auto;
}
}
/*OTHERS*/
.price {
    color: #e00;
    font-weight: 700;
    font-size: 2em;
}
.divider-top svg {
display: block;
width: calc(100% + 1.3px);
position: relative;
left: 50%;
transform: translateX(-50%);
        height: 60px;
transform: translateX(-50%) rotateY(360deg);
}
.divider-fill {
fill: #ffc20c;
}
.divider-top svg {
display: block;
width: calc(100% + 1.3px);
position: relative;
left: 50%;
transform: translateX(-50%) rotateY(360deg);
}
.divider-bottom svg {
display: block;
width: calc(100% + 1.3px);
position: relative;
left: 50%;
transform: translateX(-50%) rotateY(180deg);
}
.divider-top {
    margin-bottom: -1px;
}
.footer {
    font-size: 0.7em;
}