/* Elementos de conversão - Instituto Frida Angeli */

/* Estilo para seções de destaque */
.destaque-box {
    background: linear-gradient(135deg, #f9f7fc, #f0ebf5);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    border-left: 5px solid #7B9A7C;
    position: relative;
    overflow: hidden;
}

.destaque-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(123, 154, 124, 0.2) 0%, rgba(123, 154, 124, 0) 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

/* Preço em destaque */
.price-highlight {
    font-size: 2.2rem;
    font-weight: 700;
    color: #7B9A7C;
    display: inline-block;
    position: relative;
}

.price-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(123, 154, 124, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Lista de benefícios */
.lista-beneficios {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.lista-beneficios li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    line-height: 1.5;
}

.lista-beneficios li i {
    color: #7B9A7C;
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Contador regressivo */
.countdown-box {
    background: linear-gradient(135deg, #7B9A7C, #5a7a5b);
    color: white;
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.countdown-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Selos de garantia e segurança */
.seguranca-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem 0;
    padding: 0.8rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}

.seguranca-info i {
    color: #7B9A7C;
    margin-right: 5px;
}

/* Depoimentos em destaque */
.depoimento-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
    position: relative;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 5rem;
    color: rgba(123, 154, 124, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.depoimento-info {
    display: flex;
    flex-direction: column;
}

.depoimento-nome {
    font-weight: 600;
    color: #333;
}

.depoimento-cidade {
    font-size: 0.9rem;
    color: #777;
}

/* Badges e selos */
.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

.badge-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.badge-item i {
    color: #7B9A7C;
    font-size: 1.2rem;
    margin-right: 8px;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Formulários elegantes */
.form-elegante {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7B9A7C;
    font-size: 1.1rem;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    padding-left: 45px !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #7B9A7C;
    box-shadow: 0 0 0 3px rgba(123, 154, 124, 0.2);
    outline: none;
}

/* Valor da sessão */
.valor-sessao {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 1.5rem 0;
    color: #333;
}

/* Responsividade */
@media (max-width: 768px) {
    .destaque-box {
        padding: 1.5rem;
    }
    
    .price-highlight {
        font-size: 1.8rem;
    }
    
    .countdown-unit {
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .badges-container {
        flex-direction: column;
        align-items: center;
    }
}