:root {
    --bg: #fff7fb;
    --card: #ffffff;
    --text: #2d2432;
    --muted: #f4e7f0;
    --primary: #b53f8b;
    --primary-dark: #8f2f6d;
    --shadow: 0 10px 24px rgba(82, 26, 62, 0.12);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}
.container { width: min(1120px, 92%); margin: 0 auto; }

.topbar { background: var(--primary-dark); color: #fff; font-size: 14px; }
.topbar-content { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; padding: 10px 0; }

.navbar { position: sticky; top: 0; z-index: 20; background: var(--primary-dark); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(0,0,0,0.1); }
.nav-content { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.brand img { height: 70px; }
.menu { display: flex; align-items: center; gap: 16px; }
.menu a { text-decoration: none; color: #fff; font-weight: 600; }
.menu .admin-link { color: var(--primary); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; }

.hero { padding: 54px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 26px; }
.hero h1 { font-size: clamp(30px, 5vw, 52px); margin: 0 0 10px; }
.hero p { font-size: 18px; margin-bottom: 18px; }
.hero img { width: 100%; border-radius: 20px; box-shadow: none; }

.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}
.btn:hover { background: var(--primary-dark); }

.section { padding: 100px 0; overflow: visible; }
.section h2 { margin-top: 0; font-size: clamp(24px, 3vw, 34px); }
.muted { background: var(--muted); }

.slider { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; overflow: visible; }
.slider-btn { 
    border: 0; 
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    background: var(--primary); 
    color: #fff; 
    font-size: 24px; 
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(181, 63, 139, 0.3);
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(181, 63, 139, 0.4);
}

.slides { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; overflow-y: visible; padding: 12px 0; }

.slide-card {
    background: linear-gradient(135deg, #fff 0%, #faf5f8 100%);
    border-radius: 16px;
    box-shadow: none;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 18px;
    flex: 0 0 480px;
    min-height: 180px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 12px 0;
}

.slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.slide-card:hover::before {
    left: 100%;
}

.slide-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff 0%, #fff0f6 100%);
}

.slide-card img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: none;
    outline: none;
}

.slide-card:hover img {
    transform: scale(1.08);
}

.slide-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.slide-card h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 18px;
    transition: color 0.3s ease;
}

.slide-card:hover h3 {
    color: var(--primary-dark);
}

.slide-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.slide-card:hover p {
    color: var(--text);
}

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { 
    background: linear-gradient(135deg, #fff 0%, #f9f3f7 100%);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(181, 63, 139, 0.1);
    text-align: center;
    padding: 24px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 30px rgba(181, 63, 139, 0.25);
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff 0%, #fff0f6 100%);
}

.service-card img { 
    width: 100%; 
    height: 120px; 
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-bottom: 12px;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--primary);
}
.hours { margin-top: 20px; background: #fff; padding: 16px; border-radius: 14px; box-shadow: var(--shadow); }

.content-box { background: #fff; border-left: 4px solid var(--primary); padding: 14px; border-radius: 10px; margin-bottom: 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }

.hotel-box { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; align-items: center; }
.hotel-box img { width: 100%; border-radius: 16px; box-shadow: var(--shadow); }

.noticias-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.noticia-card {
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: start;
    gap: 12px;
    padding: 12px;
}
.noticia-card:hover { transform: translateY(-6px); }
.noticia-imagem {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 10px;
}
.noticia-conteudo { padding: 0; }
.noticia-conteudo h3 { margin: 0 0 8px; font-size: 18px; color: var(--text); }
.noticia-conteudo p { margin: 0 0 12px; font-size: 14px; color: #666; line-height: 1.5; }

/* Botões de Compartilhamento */
.share-buttons { 
    display: flex !important; 
    flex-direction: row !important; 
    flex-wrap: nowrap !important; 
    gap: 8px; 
    margin-top: 8px; 
    justify-content: flex-end; 
    align-items: center; 
}
.share-buttons-noticia { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }

.share-btn {
    padding: 8px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) saturate(100%) invert(42%) sepia(89%) saturate(1214%) hue-rotate(299deg) brightness(94%) contrast(87%);
}

.share-btn:hover {
    transform: scale(1.15);
    background: rgba(181, 63, 139, 0.1);
}

.share-btn:hover img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(1483%) hue-rotate(299deg) brightness(89%) contrast(88%);
}

.share-whatsapp:hover { background: rgba(37, 211, 102, 0.1); }
.share-whatsapp:hover img { filter: brightness(0) saturate(100%) invert(64%) sepia(89%) saturate(448%) hue-rotate(88deg) brightness(98%) contrast(87%); }

.share-facebook:hover { background: rgba(24, 119, 242, 0.1); }
.share-facebook:hover img { filter: brightness(0) saturate(100%) invert(32%) sepia(97%) saturate(2217%) hue-rotate(201deg) brightness(99%) contrast(97%); }

.share-instagram:hover { background: rgba(225, 48, 108, 0.1); }
.share-instagram:hover img { filter: brightness(0) saturate(100%) invert(24%) sepia(97%) saturate(1945%) hue-rotate(322deg) brightness(94%) contrast(96%); }

.share-copy:hover { background: rgba(107, 114, 128, 0.1); }
.share-copy:hover img { filter: brightness(0) saturate(100%) invert(52%) sepia(8%) saturate(566%) hue-rotate(182deg) brightness(92%) contrast(86%); }

.footer { background: var(--primary-dark); color: #fff; padding-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.1fr; gap: 24px; }
.footer-logo { height: 42px; margin-bottom: 8px; }
.footer a { color: #ffd7f0; }
.socials { display: flex; gap: 10px; }
.socials img { width: 28px; height: 28px; }
.copy { text-align: center; padding: 14px; border-top: 1px solid #4a3a48; margin-top: 20px; }

.footer-mapa h4 { margin-top: 0; margin-bottom: 12px; }
.footer-mapa iframe { display: block; max-width: 100%; }

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 15;
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 0.5;
    visibility: visible;
}

.scroll-top:hover {
    opacity: 1;
    transform: translateY(-4px);
}

@media (max-width: 980px) {
    .hero-grid,
    .hotel-box,
    .footer-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .noticias-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .menu-toggle { display: block; color: #fff; }
    .menu { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: var(--primary-dark); padding: 14px; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .menu a { color: #fff !important; }
    .menu.open { display: flex; }
    .slide-card { grid-template-columns: 1fr; }
    .slide-card img { height: 210px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .share-buttons { flex-wrap: wrap !important; justify-content: flex-start; }
}

@media (max-width: 480px) {
    .topbar-content { font-size: 12px; }
    .hero { padding-top: 34px; }
    .service-grid,
    .gallery-grid { grid-template-columns: 1fr; }
    .share-btn img { width: 20px; height: 20px; }
    .share-buttons { gap: 6px; }
}
