@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Quicksand:wght@300;400;500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-sage: #789678;
    --dark-sage: #4A5D4A;
    --light-bg: #FDFDFB;
    --accent-green: #E8F0E8;
    --text-main: #2D3436;
    --white: #ffffff;
}

html, body {
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.7;
    padding-top: 80px;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--dark-sage); font-weight: 700; }
.section-title { text-align: center; font-size: 2.2rem !important; margin-bottom: 20px; margin-top: 10px; }
.top-subtitle { color: var(--primary-sage); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.75rem !important; display: block; margin-bottom: 10px !important; }


.navbar {
    background-color: rgba(253, 253, 251, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(120, 150, 120, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.logo-img { height: 60px; width: auto; transition: all 0.3s ease; }
.navbar-list { display: flex; list-style: none; gap: 25px; }
.navbar-list a { text-decoration: none; color: var(--dark-sage); font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
.navbar-list a:hover { color: var(--primary-sage); }
.navbar-prenota { background: var(--primary-sage); color: white !important; padding: 10px 22px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.8rem; transition: 0.3s; white-space: nowrap; }

.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; background: #F4F7F4; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { display: flex; align-items: center; padding: 60px; }
.hero-text h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 25px; }
.hero-subtitle { color: var(--primary-sage); text-transform: uppercase; letter-spacing: 4px; font-weight: 700; display: block; }

.chisono-modern { padding: 100px 20px; background-color: var(--white); }
.chisono-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 60px; align-items: center; }
.chisono-image-wrapper { width: 100%; }
.chisono-img { width: 100%; height: auto; object-fit: cover; border-radius: 30px; border: 15px solid var(--accent-green); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.chisono-content { display: flex; flex-direction: column; justify-content: center; }
.nutri-divider { width: 60px; height: 4px; background: var(--primary-sage); margin: 20px 0; }
.chisono-content p { font-size: 1.05rem; line-height: 1.5; color: var(--text-main); margin-bottom: 20px; }


.attestati-foto-section { padding: 80px 20px; background-color: var(--white); border-top: 1px solid rgba(120, 150, 120, 0.15); }
.attestati-foto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; margin-top: 45px; }
.attestato-foto-card { background: var(--light-bg); border-radius: 20px; overflow: hidden; border: 1px solid var(--accent-green); box-shadow: 0 8px 20px rgba(0,0,0,0.02); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.attestato-foto-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(120, 150, 120, 0.15); border-color: var(--primary-sage); }
.attestato-img-wrapper { position: relative; width: 100%; height: 190px; background-color: #eee; overflow: hidden; }
.attestato-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.attestato-foto-card:hover .attestato-img-wrapper img { transform: scale(1.08); }
.attestato-zoom-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(74, 93, 74, 0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.attestato-zoom-overlay i { color: var(--white); font-size: 2.2rem; transform: scale(0.7); transition: transform 0.3s ease; }
.attestato-foto-card:hover .attestato-zoom-overlay { opacity: 1; }
.attestato-foto-card:hover .attestato-zoom-overlay i { transform: scale(1); }
.attestato-foto-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.attestato-badge { align-self: flex-start; background: var(--accent-green); color: var(--primary-sage); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 12px; margin-bottom: 10px; }
.attestato-foto-info h4 { font-family: 'Quicksand', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark-sage); line-height: 1.3; margin-bottom: 8px; }
.attestato-foto-info p { font-size: 0.85rem; color: #777; margin: 0; margin-top: auto; }

.occupo-large-container { background: var(--white); padding: 60px; border-radius: 40px; border: 1px solid var(--accent-green); box-shadow: 0 15px 35px rgba(0,0,0,0.03); }
.occupo-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); row-gap: 20px; column-gap: 40px; }
.occupo-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; color: var(--text-main); font-weight: 500; transition: transform 0.2s ease, color 0.2s ease; }
.occupo-list li i { color: var(--primary-sage); font-size: 1.2rem; margin-top: 3px; }
.occupo-list li:hover { color: var(--dark-sage); transform: translateX(5px); }

.ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 20px; }
.ig-post-card { background-color: #ffffff; border: 1px solid #dbdbdb; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ig-post-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.ig-header { display: flex; align-items: center; padding: 12px 15px; background-color: #fff; }
.ig-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid #dbdbdb; padding: 2px; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.ig-user-info { display: flex; flex-direction: column; margin-left: 12px; flex-grow: 1; }
.ig-username { font-weight: 600; font-size: 0.9rem; color: #262626; }
.ig-location { font-size: 0.75rem; color: #8e8e8e; }
.ig-image-wrapper { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background-color: #fafafa; border-top: 1px solid #efefef; border-bottom: 1px solid #efefef; }
.ig-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ig-image-wrapper:hover img { transform: scale(1.03); }
.ig-actions { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px 8px 15px; }
.ig-action-left { display: flex; gap: 15px; }
.ig-actions i { font-size: 1.4rem; color: #262626; cursor: pointer; transition: color 0.2s, transform 0.2s; }
.ig-caption { padding: 0 15px 15px 15px; }
.ig-caption p { font-size: 0.9rem; color: #262626; line-height: 1.4; margin-bottom: 8px; }
.ig-username-bold { font-weight: 600; margin-right: 5px; }
.ig-read-more { font-size: 0.85rem; color: #8e8e8e; text-decoration: none; display: inline-block; margin-bottom: 8px; }
.ig-date-bottom { display: block; font-size: 0.65rem; color: #8e8e8e; text-transform: uppercase; }

.contatti-elegante { background-color: var(--white); padding: 120px 0; }
.contact-grid-chic { display: grid; grid-template-columns: 4fr 6fr; gap: 80px; max-width: 1000px; margin: 0 auto; }
.contact-info-chic { padding-right: 40px; border-right: 1px solid rgba(141, 163, 153, 0.2); }
.info-block { margin-bottom: 40px; }
.info-block h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark-sage); margin-bottom: 15px; }
.info-block p { font-size: 1.1rem; color: var(--dark-sage); line-height: 1.8; }
.info-block a { color: var(--dark-sage); text-decoration: none; transition: color 0.3s; }
.info-block a:hover { color: var(--primary-sage); }
.nota-orari { font-size: 0.9rem !important; font-style: italic; color: #888 !important; }
.relative-map { position: relative; display: block; overflow: hidden; border-radius: 12px; }
.map-link-container { display: block; width: 100%; height: 100%; }
.map-image-static { width: 100%; height: 100%; min-height: 450px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.relative-map:hover .map-image-static { transform: scale(1.03); }
.map-overlay-btn { position: absolute; top: 80%; left: 50%; transform: translate(-50%, -50%); background-color: var(--dark-sage); color: var(--white); padding: 12px 25px; border-radius: 8px; font-weight: 700; font-size: 1rem; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); display: flex; align-items: center; gap: 10px; transition: 0.3s ease; }
.relative-map:hover .map-overlay-btn { background-color: var(--white); color: var(--primary-sage); }

.contatti-lineare { padding: 100px 20px; background-color: var(--white); }
.contatti-list { display: flex; flex-direction: column; gap: 15px; margin-top: 40px; }
.contact-line { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; background: var(--light-bg); border: 1px solid rgba(120, 150, 120, 0.15); border-radius: 15px; text-decoration: none; color: var(--text-main); transition: all 0.3s ease; }
.contact-line:hover { background: var(--white); border-color: var(--primary-sage); box-shadow: 0 10px 25px rgba(120, 150, 120, 0.1); transform: translateY(-3px); }
.c-line-left { display: flex; align-items: center; gap: 20px; }
.c-line-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 1.4rem; flex-shrink: 0; }
.c-line-icon.whatsapp { background: #e8f9ee; color: #25D366; }
.c-line-icon.phone { background: var(--accent-green); color: var(--primary-sage); }
.c-line-icon.email { background: #fdf2f2; color: #e17055; }
.c-line-icon.instagram { background: #fdecf0; color: #E4405F; }
.c-line-icon.tiktok { background: #f5f5f5; color: #000000; }
.c-line-info h4 { font-size: 1.1rem; color: var(--dark-sage); margin-bottom: 2px; }
.c-line-info p { font-size: 0.85rem; color: #777; margin: 0; }
.c-line-right { display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 1rem; color: var(--dark-sage); }
.contact-line .arrow { color: #ccc; font-size: 1.1rem; transition: 0.3s ease; }
.contact-line:hover .arrow { color: var(--primary-sage); transform: translateX(5px); }


.recensioni-carousel-section { padding: 90px 20px; background-color: #FBFDFB; border-top: 1px solid rgba(120, 150, 120, 0.15); overflow: hidden; }
.carousel-wrapper { position: relative; display: flex; align-items: center; margin-top: 40px; }
.carousel-track-container { overflow: hidden; width: 100%; padding: 15px 0; }

.carousel-track {
    display: flex;
    gap: 25px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 calc((100% - 50px) / 3);
    width: calc((100% - 50px) / 3);
    flex-shrink: 0;
    display: flex;
}

.rev-card-equal { background: var(--white); border: 1px solid rgba(120, 150, 120, 0.2); border-radius: 24px; padding: 30px 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.02); display: flex; flex-direction: column; justify-content: space-between; width: 100%; transition: all 0.3s ease; }
.rev-card-equal:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(120, 150, 120, 0.12); border-color: var(--primary-sage); }
.rev-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.rev-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }
.rev-badge { font-size: 0.75rem; color: #059669; background: #E8FBF0; padding: 4px 10px; border-radius: 12px; font-weight: 600; }
.rev-body p { font-size: 0.95rem; color: #444; line-height: 1.6; font-style: italic; margin-bottom: 25px; }
.rev-author { display: flex; align-items: center; gap: 12px; border-top: 1px dashed rgba(120, 150, 120, 0.25); padding-top: 15px; margin-top: auto; }
.rev-avatar { width: 42px; height: 42px; min-width: 42px; background: var(--accent-green); color: var(--primary-sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; border: 1px solid var(--primary-sage); }
.rev-name-box strong { display: block; font-size: 0.95rem; color: var(--dark-sage); }
.rev-name-box span { font-size: 0.75rem; color: #888; }
.carousel-arrow { background: var(--white); border: 1px solid var(--primary-sage); color: var(--primary-sage); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; z-index: 10; flex-shrink: 0; }
.left-arrow { margin-right: 15px; }
.right-arrow { margin-left: 15px; }
.carousel-arrow:hover { background: var(--primary-sage); color: var(--white); transform: scale(1.08); }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 35px; }
.dot { width: 10px; height: 10px; background: #D8E2D8; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--primary-sage); width: 28px; border-radius: 10px; }

.btn-prenota { display: inline-block; padding: 16px 35px; background: var(--primary-sage); color: white; text-decoration: none; border-radius: 12px; font-weight: 700; transition: 0.3s; }
.btn-prenota:hover { background: var(--dark-sage); transform: translateY(-3px); }
.nutri-divider-center { width: 40px; height: 3px; background: var(--primary-sage); margin: 15px auto; }
.container-small { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-desc { text-align: center; margin-top: -40px; margin-bottom: 50px; color: #666; }

footer { background-color: var(--accent-green); padding: 80px 20px 30px; color: var(--dark-sage); }
.footer-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: left; }
.footer-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 20px; position: relative; }
.footer-title::after { content: ''; display: block; width: 30px; height: 2px; background: var(--primary-sage); margin-top: 8px; }
.footer-bio { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { font-size: 0.9rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-links i { color: var(--primary-sage); margin-top: 4px; }
.footer-social { display: flex; gap: 15px; font-size: 1.2rem; }
.footer-social a { color: var(--primary-sage); transition: 0.3s; }
.footer-social a:hover { color: var(--dark-sage); transform: translateY(-3px); }
.footer-bottom { max-width: 1100px; margin: 60px auto 0; padding-top: 20px; border-top: 1px solid rgba(120, 150, 120, 0.2); text-align: center; font-size: 0.8rem; opacity: 0.8; }
.footer-bottom a { color: var(--dark-sage); text-decoration: underline; }



@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc((100% - 25px) / 2);
        width: calc((100% - 25px) / 2);
    }
}

@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-image { height: 380px; }
    .hero-content { padding: 40px 25px; }

    .chisono-container { grid-template-columns: 1fr; gap: 35px; }
    .chisono-image-wrapper { max-width: 420px; margin: 0 auto; }

    .navbar-list { display: none; }
    .navbar-container { padding: 0 20px; }
    .map-image-static { min-height: 300px; }

    .contact-grid-chic { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-chic { padding-right: 0; border-right: none; }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }

    .section-title { font-size: 1.75rem !important; line-height: 1.3 !important; margin-bottom: 15px !important; }
    .hero-text h1 { font-size: 2.3rem; margin-bottom: 15px; }
    .hero-subtitle { font-size: 0.8rem; letter-spacing: 2px; }

    .chisono-modern,
    .attestati-foto-section,
    .di-cosa-mi-occupo,
    .blog-section,
    .contatti-elegante,
    .contatti-lineare,
    .recensioni-carousel-section {
        padding: 55px 15px !important;
    }

    .attestati-foto-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
    .attestato-img-wrapper { height: 130px; }
    .attestato-foto-info { padding: 12px 10px; }
    .attestato-foto-info h4 { font-size: 0.9rem; }
    .attestato-foto-info p { font-size: 0.75rem; }

    .occupo-large-container { padding: 30px 20px; border-radius: 24px; }
    .occupo-list { grid-template-columns: 1fr; row-gap: 14px; }
    .occupo-list li { font-size: 0.95rem; }

    .ig-grid { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 25px !important; }
    .ig-post-card { width: 100% !important; max-width: 350px !important; margin: 0 auto !important; }

    .contact-grid-chic { display: block; }
    .contact-info-chic { margin-bottom: 35px; }
    .info-block { margin-bottom: 25px; }
    .map-image-static { min-height: 220px; }
    .map-overlay-btn { padding: 10px 18px; font-size: 0.85rem; }

    .contact-line { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
    .c-line-right { width: 100%; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(120, 150, 120, 0.15); }

    .carousel-slide { flex: 0 0 100%; width: 100%; }
    .rev-card-equal { padding: 22px 18px; border-radius: 18px; }

    .footer-container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 25px; padding-bottom: 20px; }
    .footer-column:nth-child(2), .footer-column:nth-child(3) { display: none; }
    .footer-column:first-child { width: 100%; }
    .footer-bio { font-size: 0.88rem; margin: 10px auto 18px; max-width: 280px; }
    .footer-social { justify-content: center; gap: 20px; margin-bottom: 10px; }
    .footer-social a i { font-size: 1.3rem; background: rgba(255, 255, 255, 0.6); padding: 10px; border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; }
    .footer-title::after { margin: 8px auto 0 auto; }
}

@media (max-width: 430px) {
    .hero-text h1 { font-size: 2rem; }
    .btn-prenota { width: 100%; text-align: center; }

    .attestati-foto-grid { grid-template-columns: 1fr; }
    .attestato-img-wrapper { height: 170px; }

    .navbar-prenota { padding: 8px 14px; font-size: 0.75rem; }
}

@media (max-width: 768px) {

    .recensioni-carousel-section {
        padding: 55px 6px !important;
    }

    .recensioni-carousel-section .container-small {
        padding: 0 4px !important;
    }

    .rev-card-equal {
        padding: 24px 16px !important;
        border-radius: 16px;
        width: 100%;
    }

    .rev-body p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        margin-bottom: 20px;
        color: #333;
    }
}

@media (max-width: 430px) {
    .recensioni-carousel-section {
        padding: 45px 4px !important;
    }

    .rev-card-equal {
        padding: 20px 14px !important;
    }
}

@media (max-width: 768px) {
    .hero-text h1 br {
        display: none !important;
    }

    .hero-text h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 430px) {
    .hero-text h1 {
        font-size: 1.90rem !important;
    }
}
@media (max-width: 768px) {
    .hero-subtitle {
        text-align: center !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-text {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-subtitle {
        text-align: center !important;
        width: 100%;
    }

    .hero-text h1 {
        text-align: center !important;
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px;
        width: 100%;
    }
    .hero-text h1 br {
        display: none !important;
    }

    .hero-text p {
        text-align: center !important;
        max-width: 90%;
        margin: 0 auto 15px auto !important;
    }
}
@media (max-width: 768px) {

    .hero-text p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        max-width: 88%;
        margin: 0 auto 20px auto !important;
        color: var(--text-main);
    }

    .hero-text .btn-prenota {
        display: inline-block !important;
        width: auto !important;
        max-width: 80%;
        padding: 13px 30px !important;
        font-size: 0.88rem !important;
        border-radius: 10px;
    }
}

@media (max-width: 430px) {
    .hero-text p {
        font-size: 1rem !important;
    }

    .hero-text .btn-prenota {
        padding: 14px 30px !important;
        font-size: 1rem !important;
    }
}
@media (max-width: 768px) {

    .chisono-content .top-subtitle {
        text-align: center !important;
        width: 100%;
    }

    .chisono-content .section-title {
        text-align: center !important;
        width: 100%;
    }

    .chisono-content .nutri-divider {
        margin: 15px auto 25px auto !important;
    }
}

@media (max-width: 768px) {

    .contact-line .c-line-right span {
        font-size: 0.85rem !important;
        word-break: break-all;
    }


}

@media (max-width: 430px) {
    .contact-line .c-line-right span {
        font-size: 0.78rem !important;
    }


}

.visita-section {
    padding: 90px 20px;
    background-color: #F8FAF8;
    border-top: 1px solid rgba(120, 150, 120, 0.15);
}

.visita-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 40px;
}

.visita-card {
    background: var(--white);
    border: 1px solid rgba(120, 150, 120, 0.25);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.visita-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(120, 150, 120, 0.12);
    border-color: var(--primary-sage);
}

.visita-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(120, 150, 120, 0.15);
    margin-bottom: 22px;
}

.visita-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--accent-green);
    color: var(--primary-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.visita-icon.online {
    background: #EBF3F5;
    color: #5A8F9B;
}

.visita-title-box h3 {
    font-size: 1.45rem;
    color: var(--dark-sage);
    margin-bottom: 4px;
    line-height: 1.2;
}

.visita-duration {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    background: #F2F4F2;
    padding: 3px 10px;
    border-radius: 20px;
}

.visita-card-body p {
    font-size: 1.02rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
}

.visita-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.visita-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.55;
}

.visita-list li i {
    color: var(--primary-sage);
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 768px) {

    .visita-section {
        padding: 60px 15px !important;
    }

    .visita-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        margin-top: 30px;
    }

    .visita-card {
        padding: 25px 20px !important;
        border-radius: 20px;
    }

    .visita-card-header {
        gap: 15px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .visita-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .visita-title-box h3 {
        font-size: 1.25rem !important;
    }

    .visita-duration {
        font-size: 0.78rem !important;
    }

    .visita-card-body p {
        font-size: 0.95rem !important;
    }

    .visita-list li {
        font-size: 0.9rem !important;
    }
}
@media (max-width: 768px) {

    .map-overlay-btn {
        white-space: nowrap !important;
        padding: 10px 20px !important;
        font-size: 0.88rem !important;
        width: max-content;
    }
}

@media (max-width: 430px) {
    .map-overlay-btn {
        padding: 10px 15px !important;
        font-size: 0.82rem !important;
        gap: 6px !important;
    }
}
@media (max-width: 768px) {

    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 430px) {

    .section-title {
        font-size: 1.70rem !important;
    }
}


.guide-percorsi-chic {
    background-color: #faf9f7;
    position: relative;
}

.pdf-premium-card {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 70px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pdf-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.pdf-image-side {
    width: 45%;
    position: relative;
}

.pdf-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pdf-content-side {
    width: 55%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pdf-category {
    font-family: 'Quicksand', sans-serif;
    color: var(--primary-sage, #829a83);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-content-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pdf-content-side p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-download-chic {
    align-self: flex-start;
    background: #222;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-download-chic:hover {
    background: var(--primary-sage, #829a83);
    color: #fff;
    padding-right: 22px;
}

.cta-premium-banner {
    background: linear-gradient(135deg, var(--primary-sage, #829a83) 0%, #6b826c 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(130, 154, 131, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-premium-content {
    position: relative;
    z-index: 2;
}

.cta-icon-top i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.cta-premium-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-premium-banner p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-chic {
    background: #ffffff;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-chic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.wa-chic { color: #25D366; }
.phone-chic { color: #333333; }
.ig-chic { color: #E1306C; }

@media (max-width: 900px) {
    .pdf-premium-card {
        flex-direction: column;
    }
    .pdf-image-side {
        width: 100%;
        height: 250px;
    }
    .pdf-content-side {
        width: 100%;
        padding: 30px 25px;
    }
    .pdf-content-side h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .cta-premium-banner {
        padding: 40px 25px;
    }
    .cta-premium-banner h3 {
        font-size: 1.8rem;
    }
    .btn-chic {
        width: 100%;
        justify-content: center;
    }
}


.privacy-page {
    background-color: #faf9f7;
}

.navbar-spacer {
    height: 100px;
}

.privacy-section {
    padding: 60px 20px 100px 20px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.last-updated {
    font-family: 'Quicksand', sans-serif;
    color: #888;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

.privacy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #222;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.privacy-content p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.privacy-content li {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.privacy-content a {
    color: var(--primary-sage, #829a83);
    text-decoration: none;
    font-weight: 600;
}

.privacy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 40px 25px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-content p, .privacy-content li {
        font-size: 1rem;
    }
}