:root {
    --primary-color: #06839d;
    --primary-dark: #05657a;
    --secondary-color: #f3a712;
    --dark-color: #2d2d2d;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --font-main: 'Nunito', sans-serif;
    --font-heading: 'Nunito', sans-serif;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --max-width: 1200px;
    --header-height: 80px;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, li, button, input, textarea {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Miglioramento accessibilitÃ  per utenti che preferiscono ridurre le animazioni */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Skip link per accessibilitÃ  */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 700;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--light-color);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Focus management per accessibilitÃ  */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

/* Error messages per form */
.error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    min-height: 1.2em;
    opacity: 0;
    transition: var(--transition-fast);
}

.error-message.show {
    opacity: 1;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.5;
    text-transform: none;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(6, 131, 157, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(6, 131, 157, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #06839d;
    border: 2px solid #06839d;
    box-shadow: 0 2px 4px rgba(6, 131, 157, 0.1);
}

.btn-secondary:hover {
    background-color: #06839d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(6, 131, 157, 0.3);
}

.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    color: var(--dark-color);
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
    z-index: 2;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: var(--spacing-md) auto var(--spacing-xl);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
    position: relative;
    z-index: 2;
}

/* ==================== */
/* HEADER */
/* ==================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: var(--header-height);
}

.header-pre-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 var(--spacing-xl);
}

.header .logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header .logo:hover img {
    transform: scale(1.05);
}

.header .nav-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.header .nav-list li {
    margin-left: var(--spacing-xl);
    position: relative;
    white-space: nowrap;
}

.header .nav-list a {
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding: var(--spacing-sm) 0;
    color: var(--dark-color);
    transition: var(--transition);
}

.header .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header .nav-list a:hover {
    color: var(--primary-color);
}

.header .nav-list a:hover::after {
    width: 100%;
}

.header-pre-mobile .logo {
    display: flex;
    align-items: center;
}

.header-pre-mobile .hamburger {
    margin-left: auto;
}

.header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: var(--transition);
}

.header .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform-origin: center;
    border-radius: var(--radius-sm);
}

.header .hamburger.active {
    transform: rotate(180deg);
}

.header .hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header .hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--header-height);
    overflow: hidden;
    color: white;
}

.hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/background.jpg") no-repeat center center/cover;
    z-index: -1;
}

.hero .hero-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero .hero-content {
    max-width: 800px;
    padding: 0 var(--spacing-lg);
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-2xl);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .scroll-down {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.hero .scroll-down:hover {
    transform: translateX(-50%) translateY(-5px);
}

.hero .scroll-down svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-top: var(--spacing-sm);
}

/* ==================== */
/* ABOUT SECTION - EFFETTO SCROLL BACKGROUND */
/* ==================== */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    padding: calc(var(--spacing-2xl) * 2) 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06839d, #f3a712, transparent);
    opacity: 0.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    padding: var(--spacing-xl);
    text-align: left;
}

.about-text {
    margin-bottom: var(--spacing-xl);
}

.professional-info p,
.qualifications,
.experience {
    margin-bottom: calc(var(--spacing-xl) + var(--spacing-sm));
}

.professional-info p {
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.qualification-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.qualification-list {
    margin-left: var(--spacing-lg);
}

.qualification-list li {
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: var(--spacing-lg);
    line-height: 1.6;
}

.qualification-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -8px;
}

.qualification-name {
    font-weight: 700;
    color: var(--primary-dark);
}

.service-list {
    margin-left: var(--spacing-lg);
}

.service-list li {
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: var(--spacing-lg);
    line-height: 1.6;
}

.service-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -8px;
}

.profile-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 8px solid white;
    border-radius: var(--radius);
}

.about-image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover .profile-img {
    transform: scale(1.05);
}

.signature {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    display: inline-block;
    position: relative;
}

.signature::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-height: 60%;
        max-width: 80%;
        margin: 0 auto;
    }

    .about-content {
        padding: 0;
        text-align: center;
    }

    .qualification-list,
    .service-list {
        text-align: left;
        display: inline-block;
    }

    .signature-container {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .about-grid {
        padding: 0 1.5rem;
    }

    .about-image {
        height: 300px;
    }

    .professional-info p,
    .qualifications,
    .experience {
        margin-bottom: 2rem;
    }
}


/* Services section */
.treatments-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    padding: calc(var(--spacing-2xl) * 2) 0;
    position: relative;
    min-height: 100vh;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.treatments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #06839d, #f3a712, #06839d, transparent);
    opacity: 0.7;
}

.treatments-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.treatments-carousel {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-lg);
    transition: var(--transition-slow);
}

.treatment-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .treatment-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .treatment-card {
        flex: 0 0 calc(100% - 1rem);
    }
}

.treatment-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.treatment-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.1);
}

.treatment-content {
    padding: var(--spacing-lg);
}

.treatment-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.treatment-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
}

.treatment-card p {
    color: var(--gray-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(6, 131, 157, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 131, 157, 0.4);
}

.carousel-prev svg,
.carousel-next svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .treatment-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (min-width: 992px) {
    .treatment-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
}

/* Animation delays for cards */
.treatment-card:nth-child(1) { animation-delay: 0.1s; }
.treatment-card:nth-child(2) { animation-delay: 0.2s; }
.treatment-card:nth-child(3) { animation-delay: 0.3s; }
.treatment-card:nth-child(4) { animation-delay: 0.4s; }
.treatment-card:nth-child(5) { animation-delay: 0.5s; }
.treatment-card:nth-child(6) { animation-delay: 0.6s; }

/* Preventivo section */
.preventivo-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    padding: calc(var(--spacing-2xl) * 2) 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.preventivo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
    #06839d,
    #06839d 15px,
    #f3a712 15px,
    #f3a712 30px
    );
    opacity: 0.8;
}

.preventivo-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

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

.form-group .required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 16px;
    transition: var(--transition);
    background-color: #fff;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ==================== */
/* ATMOSPHERE SECTION - EFFETTO SCROLL BACKGROUND */
/* ==================== */
.atmosphere-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #06839d 100%);
    padding: calc(var(--spacing-2xl) * 2) 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.atmosphere-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg,
    transparent,
    #06839d,
    #f3a712,
    #06839d,
    transparent
    );
    opacity: 0.7;
}

.file-info {
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray-color);
}

/* Atmosphere section */
.atmosphere-section {
    background-color: white;
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==================== */
/* CONTACT SECTION - EFFETTO SCROLL BACKGROUND */
/* ==================== */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #06839d 100%);
    padding: calc(var(--spacing-2xl) * 2) 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg,
    transparent,
    #06839d,
    #f3a712,
    #06839d,
    transparent
    );
    opacity: 0.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-details h3::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    -webkit-mask: var(--icon-url) no-repeat center;
    mask: var(--icon-url) no-repeat center;
}

.contact-item:nth-child(1) .contact-details h3::before {
    --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z'/%3E%3C/svg%3E");
}

.contact-item:nth-child(2) .contact-details h3::before {
    --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z'/%3E%3C/svg%3E");
}

.contact-item:nth-child(3) .contact-details h3::before {
    --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z'/%3E%3C/svg%3E");
}

.contact-item:nth-child(4) .contact-details h3::before {
    --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C6.47,22 2,17.5 2,12A10,10 0 0,1 12,2M12.5,7V12.25L17,14.92L16.25,16.15L11,13V7H12.5Z'/%3E%3C/svg%3E");
}

.contact-details p {
    margin-top: var(--spacing-md);
    color: var(--dark-color);
    line-height: 1.6;
    padding-left: 2.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--dark-color);
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%; /* Occupa tutto lo spazio disponibile */
}

.contact-form form {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Fai espandere il form */
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.contact-form textarea {
    flex-grow: 1;
    min-height: 150px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    margin-top: auto;
    padding: var(--spacing-md);
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid rgba(6, 131, 157, 0.3);
    border-radius: var(--radius);
    font-family: var(--font-main);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 131, 157, 0.2);
    background: white;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        height: auto;
        min-height: 500px;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
}

.contact-form:hover {
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(6, 131, 157, 0.3);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-item.large-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
}

.map-container {
    margin-top: var(--spacing-2xl);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid rgba(6, 131, 157, 0.1);
    transition: var(--transition);
}

.map-container:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

#map {
    height: 400px;
    width: 100%;
}

/* Footer Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: white;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover .social-icon {
    fill: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}

/* Resto del footer CSS (come precedentemente fornito) */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: var(--spacing-2xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col {
    padding: 0 var(--spacing-md);
}

.footer-col h3 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
    line-height: 1.6;
}

.quick-links {
    display: flex;
    gap: var(--spacing-xl);
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.links-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.links-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

address {
    font-style: normal;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    line-height: 1.6;
}

.footer-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .quick-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-col p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.social-links a {
    position: relative;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.social-links a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-container {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    padding: 8px;
    border-radius: var(--radius);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.qr-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ==================== */
/* WHATSAPP FLOAT BUTTON */
/* ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.footer .social-icon {
    width: 24px;
    height: 24px;
    fill: white;
    transition: var(--transition);
}

.footer .social-links a:hover .social-icon {
    fill: var(--primary-color);
    transform: translateY(-3px);
}

/* Stile per i tooltip (opzionale) */
.footer .social-links a {
    position: relative;
}

.footer .social-links a::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.footer .social-links a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #06839d 100%);
    padding: 6rem 0;
    position: relative;
}


/* ==================== */
/* SERVICES SECTION */
/* ==================== */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    padding: 6rem 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06839d, #f3a712, transparent);
}

/* ==================== */
/* PREVENTIVO SECTION */
/* ==================== */
.preventivo-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #06839d 100%);
    padding: 6rem 0;
    position: relative;
}

.preventivo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg,
    transparent,
    #06839d,
    #f3a712,
    #06839d,
    transparent);
    opacity: 0.7;
}

/* ==================== */
/* TOAST NOTIFICATIONS */
/* ==================== */
.atmosphere-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, #06839d 100%);
    padding: 6rem 0;
    position: relative;
}

.atmosphere-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: repeating-linear-gradient(90deg,
    #06839d,
    #06839d 10px,
    transparent 10px,
    transparent 20px);
}

/* STILI COMUNI PER LEGGIBILITÃ€ */
.about-section,
.services-section,
.preventivo-section,
.atmosphere-section {
    background-attachment: fixed;
}

.section-title,
.section-subtitle,
.about-text p,
.treatment-card h3 {
    color: var(--dark-color);
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

/* ADATTAMENTO CONTENUTI */
.preventivo-form {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(8px);
}

.treatment-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(6, 131, 157, 0.1);
}

.gallery-item {
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* ===== */
/* TOAST */
/* ===== */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    width: 350px;
    padding: 0 15px;
    box-sizing: border-box;
}

.toast {
    background: #333;
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    font-size: 14px;
    line-height: 1.4;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: var(--success-color);
}

.toast.error {
    background: var(--error-color);
}

button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Animation delays per cards */
.treatment-card:nth-child(1) { animation-delay: 0.1s; }
.treatment-card:nth-child(2) { animation-delay: 0.2s; }
.treatment-card:nth-child(3) { animation-delay: 0.3s; }
.treatment-card:nth-child(4) { animation-delay: 0.4s; }
.treatment-card:nth-child(5) { animation-delay: 0.5s; }
.treatment-card:nth-child(6) { animation-delay: 0.6s; }

/* Performance optimizations */
.hero .hero-background {
    will-change: transform;
}

.treatment-card,
.gallery-item,
.contact-item {
    will-change: transform;
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .header .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .header .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header .nav-list li {
        margin: var(--spacing-md) 0;
        width: 100%;
        text-align: center;
    }

    .header .nav-list a {
        display: block;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1.1rem;
        width: 100%;
    }

    .header .nav-list a::after {
        display: none;
    }

    .header .nav-list li {
        margin: 1rem 0;
    }

    .header .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
    }

    .hero {
        min-height: 80vh;
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        margin-bottom: 2rem;
        height: 350px;
    }

    .treatment-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        height: auto;
        min-height: 500px;
    }

    .form-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quick-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .preventivo-form {
        padding: 20px;
    }

    .contact-section {
        padding: calc(var(--spacing-2xl) + var(--spacing-md)) 0;
    }

    .contact-item {
        padding: calc(var(--spacing-md) + var(--spacing-xs));
    }

    .contact-form {
        padding: var(--spacing-lg);
    }

    .contact-details h3 {
        font-size: 1.2rem;
    }

    .contact-details h3::before {
        width: 28px;
        height: 28px;
    }

    .contact-details p {
        padding-left: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Disabilita background-attachment fixed su mobile per performance */
    .about-section,
    .treatments-section,
    .preventivo-section,
    .atmosphere-section,
    .contact-section {
        background-attachment: scroll;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .header .container {
        height: 70px;
        padding: 0 var(--spacing-lg);
    }

    .header .logo img {
        height: 40px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2rem);
    }

    .about-grid {
        padding: 0 var(--spacing-lg);
    }

    .about-image {
        height: 300px;
    }

    .professional-info p,
    .qualifications,
    .experience {
        margin-bottom: var(--spacing-xl);
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-section {
        padding: var(--spacing-2xl) 0;
    }

    .contact-item.large-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: var(--spacing-md);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }

    #toast-container {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 15px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    /* Gradient piÃ¹ semplici su mobile per performance */
    .about-section {
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    }

    .treatments-section {
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    }

    .preventivo-section {
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    }

    .atmosphere-section {
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    }

    .contact-section {
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #06839d 100%);
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .carousel-nav,
    .hero .scroll-down {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 1rem 0;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}