/*------------------------------------------------------------
 BASE CSS - Variáveis, Reset, Tipografia e Fundamentos
------------------------------------------------------------*/

:root {
    --color-primary: #e40d0d;
    --color-text: #333;
    --color-muted: #666;
    --color-text-muted: #666;
    --color-success: #25d366;
    --color-bg: #fff;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --spacing-sm: 0.5rem;
    --spacing: 1rem;
}

body {
    color: var(--color-text);
    background: #f2f2f2;
    font-family: inherit;
    line-height: 1.5;
}

/*------------------------------------------------------------
 COMPONENTES BÁSICOS - Botões, Links, Tags
------------------------------------------------------------*/

/* Botões de ação */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.action-buttons .button {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
}

.action-buttons .button i {
    font-size: 1.1rem;
}

.button--primary {
    background: var(--color-primary);
    color: white;
}

.button--primary:hover {
    background: #c00d0d;
    color: white;
}

.button--green {
    background: #25d366;
    color: white;
}

.button--green:hover {
    background: #128c7e;
    color: white;
}

.button--blue {
    background: #0088cc;
    color: white;
}

.button--blue:hover {
    background: #006699;
    color: white;
}

.button.disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* Tags para características e serviços */
.caracteristicas-tags,
.comodidades-tags,
.outros-locais-tags,
.pagamento-tags,
.idiomas-tags,
.especialidades-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px var(--color-shadow);
}

.tag {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #bbdefb;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #bbdefb;
    transform: translateY(-1px);
}

/* Tags específicas por tipo */
.tag-payment {
    background: #e8f5e8;
    color: #2e7d32;
    border-color: #c8e6c9;
}

.tag-payment:hover {
    background: #c8e6c9;
}

.tag-language {
    background: #fff3e0;
    color: #ef6c00;
    border-color: #ffcc02;
}

.tag-language:hover {
    background: #ffcc02;
}

.tag-specialty {
    background: #fce4ec;
    color: #c2185b;
    border-color: #f8bbd9;
}

.tag-specialty:hover {
    background: #f8bbd9;
}

/*------------------------------------------------------------
 FOOTER MOBILE FIXO
------------------------------------------------------------*/
.contact-footer-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -2px 10px var(--color-shadow);
    display: flex;
    gap: 0.75rem;
    z-index: 1000;
}

.contact-footer-mobile .button {
    flex: 1;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Responsividade */
@media (min-width: 768px) {
    .contact-footer-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .caracteristicas-tags,
    .comodidades-tags,
    .outros-locais-tags,
    .pagamento-tags,
    .idiomas-tags,
    .especialidades-tags {
        padding: 1rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
} 