/* css/03-components.css */

/* Botões CTA */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.cta-button:hover {
    background-color: #9c7b34;
    transform: translateY(-2px);
    color: var(--background-color);
}

.mobile-cta {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.3em;
    padding: 15px 40px;
    margin-top: 30px;
}

.mobile-cta:hover {
    background-color: #9c7b34;
    color: white;
}

/* Acordeão de Tratamentos */
.accordion-container {
    flex: 1;
    min-width: 300px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    padding: 15px 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.3em;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header i {
    font-size: 0.8em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 15px;
}

/* Área de Mídia do Acordeão */
.accordion-media-preview {
    flex: 1;
    min-width: 400px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.accordion-media-preview .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-media-preview .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.carousel-image-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 0.8em;
    text-align: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2em;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev { left: 10px; }
.carousel-button.next { right: 10px; }

/* Cards de Dicas */
.tip-card {
    background-color: var(--background-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.tip-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 0.95em;
    color: var(--text-light);
}

/* Formulário de Contato */
.contact-form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(183, 150, 66, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .cta-button {
    width: auto;
    padding: 12px 40px;
}

/* Botões Flutuantes */
.floating-socials {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-socials a,
.floating-socials button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.8em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.floating-socials a:hover,
.floating-socials button:hover {
    background-color: #9c7b34;
    transform: scale(1.1);
    color: white;
}

.floating-socials .float-whatsapp {
    background-color: var(--whatsapp-green);
}
.floating-socials .float-whatsapp:hover {
    background-color: var(--whatsapp-green-dark);
}

.floating-socials .float-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: white;
}
.floating-socials .float-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdd97e 0%, #fdd97e 5%, #fc4a3a 45%, #c21f92 60%, #244ac8 90%) !important;
    color: white;
}

.float-scroll-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* --- INÍCIO DA MODIFICAÇÃO: Estilo do link 'Saiba mais' --- */
.saiba-mais-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9em;
    text-decoration: none;
}

.saiba-mais-link:hover {
    text-decoration: underline;
    color: #9c7b34;
}
/* --- FIM DA MODIFICAÇÃO --- */