html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: #2c7a7b; 
    --secondary-color: #f0fdf4;
    --accent-color: #c53030;
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fdfdfd;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { margin-top: 0; }

header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative; 
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }

section { 
    padding: 70px 20px; 
    text-align: center; 
    scroll-margin-top: 20px;
}

@media (min-width: 769px) {
    header { position: sticky; top: 0;}
    section {scroll-margin-top: 90px;}
    body { padding-bottom: 0; }
}

.hero {
    background: linear-gradient(rgba(44, 122, 123, 0.6), rgba(44, 122, 123, 0.4)), url('https://images.unsplash.com/photo-1596272875729-ed2ff7d6d9c5?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA==') fixed center/cover no-repeat;
    background-size: cover;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 { font-size: 2.8rem; margin-bottom: 15px; }
.hero p { font-size: 1.3rem; margin-bottom: 35px; opacity: 0.9; }

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    color: white;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.btn-whatsapp { background-color: #25D366; }
.btn-whatsapp:hover { background-color: #20bd5a; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.about { background-color: var(--white); }
.matricula { 
    background-color: #e6fffa; 
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #b2f5ea;
}

.services { background-color: var(--secondary-color); padding-bottom: 20px;}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.service-card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.2); }
.service-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }
.service-card h3 { color: #2d3748; margin-bottom: 10px; }

.testimonials { background-color: #fff; }
.testimonial-card {
    background: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    text-align: left;
    border-radius: 0 10px 10px 0;
}
.client-name {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
}

.special-service {
    background-color: #f1f1f1;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
}
.discreet-card { max-width: 700px; margin: auto; }
.discreet-card h3 { color: #555; font-size: 1.2rem; }
.discreet-card p { color: #666; font-size: 0.95rem; }

.contact { background-color: var(--white); }
.info-panel {
    background-color: #fffaf0;
    border: 1px solid #feeebc;
    color: #744210;
    padding: 25px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 700px;
}

.alert-box {
    background-color: #fff5f5;
    border-left: 4px solid var(--accent-color);
    color: var(--accent-color);
    padding: 15px;
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

footer {
    background-color: #2d3748;
    color: #cbd5e0;
    text-align: center;
    padding: 50px 20px 100px 20px;
}

.social-footer a {
    font-size: 1.8rem;
    margin: 0 15px;
    color: white;
    transition: color 0.3s;
}
.social-footer a:hover { color: var(--primary-color); }

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    box-sizing: border-box;
    transform: translateY(100%);
    animation: slideUp 0.5s forwards 1s;
}

#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 16px;
    position: fixed;
    z-index: 10000;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

#toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 90px;
}

@keyframes slideUp { to { transform: translateY(0); } }

.bar-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bar-btn-whatsapp { background-color: #25D366; color: white; }
.bar-btn-save { background-color: #2d3748; color: white; }

@media (min-width: 769px) {
    .mobile-sticky-bar { display: none; }
    footer {padding-bottom: 50px !important;}
}

@media (max-width: 700px) {
    .hero {background-attachment: scroll;}
    .header-content { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 2rem; }
    .buttons-container { flex-direction: column; align-items: center; width: 100%; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }
}

.faq { background-color: var(--secondary-color); margin-top: 70px;}
.faq-container { max-width: 800px; margin: auto;}
.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}
.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 20px;
    font-weight: bold;
    color: var(--primary-color);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
    color: #666;
    text-align: left; 
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.map-section {
    padding-bottom: 0;
}

.map-container {
    max-width: 900px;
    margin:-20px auto 20px auto;
    border-radius: 15px;
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--secondary-color);
    position: relative; 
    transition: transform 0.3s ease;
}

.map-image {
    width: 100%;
    height: auto;
    display: block; 
}

@media (max-width: 700px) {
    .map-container {
        width: 100vw; 
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-radius: 0; 
        border-left: none;
        border-right: none;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #20bd5a;}

@media (max-width: 768px) {
    .whatsapp-float { display: none; }
}