css_content = """/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2e26; /* Verde Escuro extraído do logotipo */
    --secondary-color: #2c423b;
    --accent-color: #25D366; /* Verde Oficial do WhatsApp para conversão */
    --accent-hover: #1ebd57;
    --light-bg: #f4f7f5;
    --white: #ffffff;
    --text-dark: #1e2d27;
    --text-muted: #60756c;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-card {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    margin-top: auto;
    border-radius: 6px;
    padding: 10px 20px;
}

.btn-card:hover {
    background-color: var(#25D366);
    transform: scale(1.1);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    background-color: #25D366 !important; 
    color: white !important;              
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--accent-hover);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links a {
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.btn-nav {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    font-size: 13px;
}

.btn-nav:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 46, 38, 0.4), rgba(26, 46, 38, 0.7)), url('fundo.png') no-repeat center center/cover;
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 60px 0;
}

.hero-content {
    max-width: 750px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Headers de Seção */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Quem Sou Eu */
.about {
    padding: 90px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
    text-align: center;
}

.profile-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 5px solid var(--light-bg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 600;
}

.profile-title {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-text {
    flex: 1.6;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #3b4d45;
    text-align: justify;
}

/* Serviços / Cardápio */
.services {
    padding: 90px 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 60px;
    padding-top: 60px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 30px;
    align-items: center; 
    text-align: center;
}
    .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}
    .btn-card {
    margin-top: auto;
    align-self: stretch;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    display: block;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.07);
}

.card-icon-img {
    width: 110px;
    height: 110px;
    border-radius: 50%; /
    object-fit: cover; 
    position: absolute;
    top: -55px; 
    left: 50%;
    transform: translateX(-50%); 
    border: 5px solid var(--light-bg); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.duration {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #2e4a3d;
    background-color: #e3ede6;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.card-body p {
    font-size: 14px;
    color: #4a5c53;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: justify;
}

/* Modalidades de Atendimento */
.modalities {
    padding: 90px 0;
    background-color: var(--white);
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 45px;
}

.modality-item {
    text-align: center;
    padding: 25px 15px;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.modality-item:hover {
    background-color: #ebf0ed;
}

.modality-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.modality-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modality-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.modality-footer {
    text-align: center;
}

/* Depoimentos */
.testimonials {
    padding: 90px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: #b3c7be;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.quote {
    font-style: italic;
    font-size: 14.5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.author {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Rodapé */
.footer {
    background-color: #0f1c17;
    color: #9cbdae;
    padding: 60px 0 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 24px;
}

.footer-logo p {
    font-size: 13px;
    opacity: 0.7;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: right;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    opacity: 0.5;
}

/* Responsividade (Media Queries) */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .hero {
        text-align: center;
        min-height: 60vh;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info p {
        text-align: center;
    }
}
