/* Estilos do formulário de preços */
.pricing-header {
    color: hsl(233, 13%, 49%);
    margin: 3.3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-toggle {
    margin-top: 2rem;
    color: hsl(234, 14%, 74%);
    display: flex;
    align-items: center;
}

.pricing-toggle-btn {
    margin: 0 1rem;
}

.pricing-checkbox {
    display: none;
}

.pricing-sub {
    background: linear-gradient(
        135deg,
        rgba(49, 88, 127, 1) 0%,
        rgba(23, 34, 77, 1) 100%
    );
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 1.6rem;
    width: 3.3rem;
    border-radius: 1.6rem;
    padding: 0.3rem;
}

.pricing-circle {
    background-color: #fff;
    height: 1.4rem;
    width: 1.4rem;
    border-radius: 50%;
}

.pricing-checkbox:checked + .pricing-sub {
    justify-content: flex-end;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Make all cards equal height */
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    color: hsl(233, 13%, 49%);
    border-radius: 16px;
    width: 310px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-cards .pricing-card.pricing-active {
    background: linear-gradient(
        135deg,
        rgba(49, 88, 127, 1) 0%,
        rgba(23, 34, 77, 1) 100%
    );
    color: #fff;
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid #FF4917;
    box-shadow: 0 20px 40px rgba(23, 34, 77, 0.25);
}

.pricing-cards .pricing-card.pricing-active:hover {
    transform: scale(1.06) translateY(-5px);
}

.pricing-active-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4917;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 30px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(255, 73, 23, 0.4);
    z-index: 2;
    text-transform: uppercase;
}

.pricing-ul {
    margin: 2.2rem 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.pricing-ul li {
    list-style-type: none;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 0;
}

/* Features List styling (left-aligned) */
.pricing-ul li.pricing-feature {
    justify-content: flex-start;
    padding: 0.9rem 0.5rem;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #555555;
    text-align: left;
    align-items: center;
}

.pricing-card.pricing-active .pricing-ul li.pricing-feature {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #e1e8ed;
}

.pricing-ul li.pricing-feature i {
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

.pricing-ul li.pricing-price {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.pricing-card.pricing-active .pricing-ul li.pricing-price {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pricing-price-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FF4917;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.pricing-price-value {
    font-size: 34px;
    font-weight: 800;
    color: #17224D;
}

.pricing-card.pricing-active .pricing-price-value {
    color: #ffffff;
}

.pricing-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pricing-btn {
    margin-top: 1.5rem;
    height: 3rem;
    width: 100%;
    max-width: 14rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #17224D;
    color: #fff;
    outline: none;
    border: 0;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(23, 34, 77, 0.15);
    cursor: pointer;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    background: #FF4917;
    box-shadow: 0 6px 15px rgba(255, 73, 23, 0.4);
    color: #ffffff;
}

.pricing-active-btn {
    background: linear-gradient(90deg, #FF4917 0%, #FF6B3D 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 73, 23, 0.4);
}

.pricing-active-btn:hover {
    background: linear-gradient(90deg, #FF6B3D 0%, #FF4917 100%);
    box-shadow: 0 6px 20px rgba(255, 73, 23, 0.6);
}

.pricing-pack {
    font-size: 1.25rem;
    font-weight: 700;
    color: #17224D;
    padding-bottom: 0.5rem !important;
}

.pricing-card.pricing-active .pricing-pack {
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 280px) {
    .pricing-ul {
        margin: 1rem;
    }
    .pricing-header h1 {
        font-size: 1.2rem;
    }
    .pricing-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 80px;
    }
    .pricing-cards {
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    .pricing-card {
        transform: scale(0.8);
        margin-bottom: 1rem;
    }
    .pricing-cards .pricing-card.pricing-active {
        transform: scale(0.8);
    }
}

@media (min-width: 280px) and (max-width: 320px) {
    .pricing-ul {
        margin: 20px;
    }
    .pricing-cards {
        display: flex;
        flex-direction: column;
    }
    .pricing-card {
        margin-bottom: 1rem;
    }
    .pricing-cards .pricing-card.pricing-active {
        transform: scale(1);
    }
}

@media (min-width: 320px) and (max-width: 414px) {
    .pricing-cards {
        display: flex;
        flex-direction: column;
    }
    .pricing-card {
        margin-bottom: 1rem;
    }
    .pricing-cards .pricing-card.pricing-active {
        transform: scale(1);
    }
}

@media (min-width: 414px) and (max-width: 768px) {
    .pricing-card {
        margin-bottom: 1rem;
        margin-right: 1rem;
    }
    .pricing-cards .pricing-card.pricing-active {
        transform: scale(1);
    }
}

@media (min-width: 768px) and (max-width: 1046px) {
    .pricing-cards {
        display: flex;
    }
    .pricing-card {
        margin-bottom: 1rem;
        margin-right: 1rem;
    }
    .pricing-cards .pricing-card.pricing-active {
        transform: scale(1);
    }
}


/* Style-Preços */


body {
    font-family: 'lato', sans-serif;
  }
  
  .ceara-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .ceara-container h2 {
    font-size: 26px;
    margin: 20px 0;
    text-align: center;
  }
  
  .ceara-container h2 small {
    font-size: 0.5em;
  }
  
  .ceara-responsive-table {
    list-style: none;
    padding: 0;
  }
  
  .ceara-responsive-table li {
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
   
  }
  
  .ceara-responsive-table .ceara-table-header {
    background-color: #17224d;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  
  .ceara-responsive-table .ceara-table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
  }
  
  .ceara-responsive-table .ceara-col-1 {
    flex-basis: 20%;
  }
  
  .ceara-responsive-table .ceara-col-2 {
    flex-basis: 20%;
  }
  
  .ceara-responsive-table .ceara-col-3 {
    flex-basis: 20%;
  }
  
  .ceara-responsive-table .ceara-col-4 {
    flex-basis: 20%;
  }
  
  .ceara-responsive-table .ceara-col-5 {
    flex-basis: 20%;
  }
  
  @media all and (max-width: 767px) {
    .ceara-responsive-table .ceara-table-header {
      display: none;
    }
  
    .ceara-responsive-table li {
      display: block;
    }
  
    .ceara-responsive-table .ceara-col {
      flex-basis: 100%;
      display: flex;
      padding: 10px 0;
    }
  
    .ceara-responsive-table .ceara-col:before {
      color: #6C7A89;
      padding-right: 10px;
      content: attr(data-label);
      flex-basis: 50%;
      text-align: right;
    }
  }

/* Custom Calculator Styles for React SPA */
.calculator-card {
    background: #17224D;
    color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.calc-title {
    color: #FF4917;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 25px;
}

.pest-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.pest-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.pest-option:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #31587f;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.pest-option.active {
    background: rgba(255, 73, 23, 0.18);
    border-color: #FF4917;
    box-shadow: 0 4px 12px rgba(255, 73, 23, 0.25);
}

.pest-option i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #a1b0cb;
    transition: all 0.3s;
}

.pest-option:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.pest-option.active i {
    color: #FF4917;
    transform: scale(1.15);
}

.pest-option span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #e1e8ed;
    transition: all 0.3s;
}

.pest-option:hover span {
    color: #ffffff;
}

.pest-option.active span {
    color: #ffffff;
}

/* Clickability Dot Indicator */
.pest-option::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #a1b0cb;
    opacity: 0.5;
    transition: all 0.3s;
}
.pest-option:hover::after {
    background-color: #ffffff;
    transform: scale(1.3);
    opacity: 1;
}
.pest-option.active::after {
    background-color: #FF4917;
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 6px #FF4917;
}

.form-label-custom {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #EDF1FC;
}

.price-display-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-large {
    font-size: 40px;
    font-weight: 800;
    color: #FF4917;
}

.btn-calc-hire {
    background: linear-gradient(90deg, #FF4917 0%, #FF6B3D 100%);
    border: none;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    width: 100%;
}

.btn-calc-hire:hover {
    background: linear-gradient(90deg, #FF6B3D 0%, #FF4917 100%);
    box-shadow: 0 5px 15px rgba(255, 73, 23, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-calc-wa {
    background: #25D366;
    border: none;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
}

.btn-calc-wa:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    color: white;
}

.slider-m2 {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.slider-m2::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FF4917;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 73, 23, 0.5);
    transition: transform 0.2s;
}

.slider-m2::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
