:root {
    --color-bg: #FDFCFB;
    --color-primary: #3E3B39; /* Marrom escuro/Elegância */
    --color-secondary: #C5A07D; /* Bege/Dourado suave */
    --color-text-main: #2D2A28;
    --color-text-muted: #7A7672;
    --color-border-light: rgba(62, 59, 57, 0.08);
    --color-card-bg: #FFFFFF;
    --radius-sm: 0px; /* Design mais reto/minimalista */
    --radius-md: 4px;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--color-bg);
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                      url('https://www.transparenttextures.com/patterns/natural-paper.png');
    color: var(--color-text-main);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

/* Header */
.header {
    margin-bottom: 35px;
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    position: relative;
}

.logo-placeholder::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-secondary);
    z-index: -1;
}

.shop-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--color-primary);
    line-height: 1;
}

.shop-name-sub {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
}

.shop-description {
    max-width: 320px;
    margin: 20px auto 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-weight: 400;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 30px;
    padding: 5px 15px;
    border-bottom: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Links */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.canais-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-align: center;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    padding: 20px 25px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.link-card i {
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.link-card span {
    flex: 1;
}

.link-card:hover {
    border-color: var(--color-primary);
    background: #F9F8F7;
    padding-left: 30px;
}

.link-card.featured {
    background: var(--color-primary);
    color: white;
    border: none;
}

.link-card.featured i {
    color: var(--color-secondary);
}

.link-card.featured:hover {
    background: #2D2A28;
}

/* Horário */
.hours-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #F9F8F7;
    border: 1px solid var(--color-border-light);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hours-header i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.hours-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding-bottom: 10px;
}

.hour-item span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hour-item strong {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Ambientes */
.services-section {
    margin-bottom: 40px;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.services-header i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.services-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border-light);
    border: 1px solid var(--color-border-light);
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 10px;
    background: white;
    transition: var(--transition);
}

.service-item i {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.service-item span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    color: var(--color-text-muted);
}

.service-item:hover {
    background: #F9F8F7;
}

.service-item:hover i {
    color: var(--color-primary);
}

/* Avaliação */
.review-section {
    margin-bottom: 40px;
}

.review-content {
    padding: 40px;
    background: white;
    border: 1px solid var(--color-border-light);
    text-align: center;
}

.review-content .fa-google {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.review-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.review-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.review-button {
    display: inline-flex;
    padding: 15px 40px;
    text-decoration: none;
    background: var(--color-primary);
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.review-button:hover {
    background: var(--color-secondary);
}

/* Compartilhar */
.share-container {
    width: 100%;
    margin-bottom: 40px;
}

.share-button {
    width: 100%;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

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

/* FAQ */
.faq-section {
    margin-bottom: 40px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.faq-header i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.faq-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.faq-item {
    background: white;
    border-bottom: 1px solid var(--color-border-light);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--color-secondary);
    transition: var(--transition);
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 0 20px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Media Queries */
@media (max-width: 480px) {
    body { padding: 15px; }
    .shop-name { font-size: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .container { max-width: 600px; }
}
