/* 2. CSS - ESTILIZAÇÃO */
.vs-wrapper {
    width: 100%;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

/* HEADER */
.vs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #fff;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.vs-logo img { height: 60px; width: auto; }
.vs-nav ul { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
.vs-nav a { text-decoration: none; color: #003366; font-weight: 500; font-size: 15px; transition: 0.3s; }
.vs-nav a:hover { color: #FF8C00; }

.btn-agendar {
    background-color: #003366;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}
.btn-agendar:hover { background-color: #FF8C00; transform: translateY(-2px); }

/* HERO SECTION */
.vs-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}
.vs-hero-image {
    position: absolute;
    right: 0; top: 0; width: 65%; height: 100%;
    background-image: url('https://vsterapiaesaude.com/wp-content/uploads/2025/12/terapia-scaled.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.vs-hero-overlay {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1) 35%, rgba(255,255,255,0.7) 55%, transparent 90%);
    z-index: 2;
}
.vs-hero-content {
    position: relative;
    z-index: 3;
    width: 45%;
    padding-left: 8%;
}
.vs-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #003366;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* CARDS SERVIÇOS */
.vs-services { padding: 80px 5%; text-align: center; }
.vs-services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.vs-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #f1f1f1;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}
.vs-card:hover { border-color: #003366; transform: translateY(-5px); }
.vs-card h3 { font-family: 'Playfair Display', serif; color: #003366; margin-bottom: 15px; }

/* CITAÇÃO */
.vs-quote {
    padding: 100px 10%;
    text-align: center;
    background-color: #fcfcfc;
    position: relative;
}
.vs-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 30px;
    color: #003366;
    border: none;
}

/* WHATSAPP FLOAT */
.vs-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.vs-whatsapp img { width: 35px; }

/* MOBILE */
@media (max-width: 768px) {
    .vs-nav { display: none; }
    .vs-hero-image { width: 100%; opacity: 0.4; }
    .vs-hero-content { width: 90%; padding: 40px 5%; }
    .vs-hero-overlay { background: rgba(255,255,255,0.85); }
}