/* ===================================
   VARIÁVEIS E RESET
   =================================== */
:root {
    /* Cores principais - Paleta Elegante & Profissional */
    --primary-color: #6b9b8a;
    --secondary-color: #a89998;
    --accent-color: #d4a5a0;
    --dark-color: #4a4844;
    --light-color: #f5f2f0;
    --white: #ffffff;

    /* Cores de texto */
    --text-primary: #4a4844;
    --text-secondary: #7a776f;
    --text-light: #b5b0a8;

    /* Cores de apoio */
    --success: #6b9b8a;
    --warning: #c9956b;
    --error: #c97070;
    --info: #7bb4d4;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(74, 72, 68, 0.08);
    --shadow-md: 0 4px 6px rgba(74, 72, 68, 0.12);
    --shadow-lg: 0 10px 15px rgba(74, 72, 68, 0.15);

    /* Transições */
    --transition: all 0.3s ease;

    /* Fontes */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ===================================
   TIPOGRAFIA
   =================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

/* ===================================
   CONTAINERS E LAYOUT
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

/* ===================================
   FLASH MESSAGES (ALERTAS)
   =================================== */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

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

.alert-error, .alert-danger {
    background-color: var(--error);
    color: white;
}

.alert-warning {
    background-color: var(--warning);
    color: var(--dark-color);
}

.alert-info {
    background-color: var(--info);
    color: white;
}

.close-alert {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.close-alert:hover {
    opacity: 1;
}

/* ===================================
   ERROR PAGES
   =================================== */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===================================
   NAVEGAÇÃO
   =================================== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.logo .subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-agendar {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
}

.btn-agendar::after {
    display: none;
}

.btn-agendar:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* ===================================
   BOTÕES
   =================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-link {
    background: none;
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.center-button {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   HERO SECTION (PÁGINA INICIAL)
   =================================== */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8efea 0%, #f4dcdc 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
}

.lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

.image-placeholder small {
    color: var(--text-light);
}

.hero-photo {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.hero-photo:hover {
    transform: scale(1.02);
}

.about-photo,
.about-photo-large {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about-photo-large {
    border-radius: 15px;
}

/* ===================================
   SERVICES SECTIONS
   =================================== */
.services-preview {
    padding: 4rem 0;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-preview {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.image-placeholder-small {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.image-placeholder-small i {
    font-size: 5rem;
    color: var(--secondary-color);
}

.about-text {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

/* ===================================
   BLOG SECTIONS
   =================================== */
.blog-preview {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.blog-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 4rem;
    color: var(--white);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.8rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--light-color);
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
}

.footer-section ul li a:hover {
    color: var(--white);
}

/* Contato no Footer - Estilo igual aos Links Rápidos */
.footer-section .contact-info {
    list-style: none;
}

.footer-section .contact-info li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.footer-section .contact-info li i {
    margin-right: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-links a i {
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Newsletter no rodapé */
.footer-section .newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-section .newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer-section .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255,255,255,0.15);
}

.footer-section .newsletter-form button {
    padding: 0.8rem 1.2rem;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section .newsletter-form button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-section .newsletter-form button i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   PAGE BANNER
   =================================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1.2rem;
    margin: 0;
}

/* ===================================
   FORMS
   =================================== */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-actions {
    margin-top: 2rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===================================
   PLACEHOLDERS
   =================================== */
.image-placeholder-large,
.image-placeholder-blog,
.image-placeholder-small-blog {
    background: linear-gradient(135deg, var(--light-color), var(--accent-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.image-placeholder-large {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 10px;
}

.image-placeholder-large i {
    font-size: 8rem;
}

.image-placeholder-blog {
    height: 300px;
}

.image-placeholder-blog i {
    font-size: 5rem;
}

.image-placeholder-small-blog {
    height: 150px;
}

.image-placeholder-small-blog i {
    font-size: 3rem;
}

/* ===================================
   PÁGINAS INTERNAS - ESTILOS ADICIONAIS
   =================================== */

/* Página Sobre */
.about-main {
    padding: 4rem 0 2rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.profile-photo {
    display: flex;
    justify-content: center;
}

.intro-text {
    text-align: left;
}

.journey {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--white);
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.specializations-list {
    list-style: none;
}

.specializations-list li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
}

.approach {
    padding: 4rem 0;
}

.approach-description {
    margin-bottom: 3rem;
}

.principles {
    margin-top: 3rem;
}

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

.principle-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.principle-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.areas {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.area-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.area-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.area-item h4 {
    margin: 0;
    font-size: 1rem;
}

.values {
    padding: 4rem 0;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Página Serviços */
.services-detail {
    padding: 4rem 0;
}

/* ===================================
   PÁGINA DE SERVIÇOS
   =================================== */
.services-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-detail {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
}

.service-features i {
    color: var(--success);
    font-size: 1.2rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Responsivo - Serviços */
@media (max-width: 768px) {
    .service-detail {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }
}

.service-detailed-old {
    margin-bottom: 4rem;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--white);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.service-title h2 {
    margin: 0;
}

.service-subtitle {
    color: var(--text-secondary);
    margin: 0;
}

.service-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.service-description h3 {
    color: var(--dark-color);
    margin-top: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.benefits-list i {
    color: var(--success);
    margin-top: 0.3rem;
}

.service-info-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.service-info-box h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-info-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info-box ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-color);
}

.faq {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.faq-item h3 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Página Agendamento */
.appointment {
    padding: 4rem 0;
}

.appointment-intro {
    margin-bottom: 4rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.appointment-options {
    margin-bottom: 4rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.primary-method {
    border: 3px solid #25D366;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.method-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.primary-method .method-icon {
    background: #25D366;
}

.method-info {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.appointment-form-section {
    background-color: var(--light-color);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-bottom: 4rem;
}

.appointment-form {
    max-width: 800px;
    margin: 0 auto;
}

.appointment-info {
    margin-bottom: 4rem;
}

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

.info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.first-session-info {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
}

.session-details {
    max-width: 800px;
    margin: 0 auto;
}

.what-happens {
    margin-top: 2rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checklist i {
    color: var(--success);
    margin-top: 0.3rem;
}

/* Página Blog */
.blog-content {
    padding: 4rem 0;
}

.blog-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.featured-post {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.post-image {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-content {
    padding: 2rem;
}

.post-category {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.post-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.post-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.post-preview {
    margin-top: 2rem;
}

.post-preview h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.post-preview ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.post-tags {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-color);
}

.post-tags i {
    color: var(--text-light);
    margin-right: 0.5rem;
}

.post-tags span {
    display: inline-block;
    background-color: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: var(--text-secondary);
}

.posts-grid {
    display: grid;
    gap: 2rem;
}

.blog-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-image-small {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-info {
    padding: 1.5rem;
}

.post-info h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.post-info h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.8rem;
}

.categories-list a {
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.categories-list a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.categories-list span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-color);
}

.popular-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-posts a {
    color: var(--text-secondary);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.popular-posts a:hover {
    color: var(--primary-color);
}

.popular-posts i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-widget h3 {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.cta-widget p {
    color: var(--white);
}

/* Página Contato */
.contact-section {
    padding: 4rem 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon {
    background: #25D366;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-address {
    line-height: 1.8;
}

.social-media-section {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.social-media-section h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.social-link.instagram:hover {
    color: #E1306C;
}

.social-link.facebook:hover {
    color: #1877F2;
}

.social-link.linkedin:hover {
    color: #0A66C2;
}

.social-link i {
    font-size: 1.5rem;
}

.contact-form-wrapper-old {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
}

.contact-form-wrapper-old h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper-old > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.location-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.quick-faq {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
}

.quick-faq h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.faq-quick-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.faq-quick-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-quick-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.faq-quick-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   PÁGINA SOBRE
   =================================== */
.about-page {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-placeholder-large {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.image-placeholder-large i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.about-text h2 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.about-text .subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
}

.bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.credentials {
    padding: 4rem 0;
    background-color: var(--light-color);
}

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

.credential-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.credential-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credential-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.credential-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.credential-card .year {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================================
   PÁGINA BLOG
   =================================== */
.blog-page {
    padding: 4rem 0;
}

.blog-grid-full {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-card-full {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.blog-image-large i {
    font-size: 4rem;
    color: var(--white);
}

.blog-card-full .blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-full h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-card-full p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===================================
   PÁGINA CONTATO
   =================================== */
.contact-page {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    height: fit-content;
}

.contact-info h2 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: var(--text-primary) !important;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Garantir que todo texto na página de contato seja visível */
.contact-page * {
    color: inherit;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4 {
    color: var(--dark-color) !important;
}

.contact-page p,
.contact-page label,
.contact-page a {
    color: var(--text-secondary) !important;
}

.contact-page .btn {
    color: var(--white) !important;
}

.social-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--white);
}

.social-contact h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 10px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.social-links-large a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.social-links-large i {
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form label {
    color: var(--dark-color) !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background-color: var(--white);
    color: var(--text-primary);
}

/* ===================================
   NEWSLETTER E REDES SOCIAIS
   =================================== */
.social-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-color), var(--accent-color));
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.newsletter-box,
.social-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.newsletter-box i,
.social-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-box h3,
.social-box h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-box p,
.social-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form-home {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form-home input {
    padding: 1rem;
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form-home input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form-home button {
    width: 100%;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
    background-color: #1877F2;
}

.social-btn.linkedin {
    background-color: #0A66C2;
}

.social-btn i {
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Newsletter no rodapé */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1rem;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

/* Botões de compartilhamento */
.share-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.share-btn i {
    font-size: 1.2rem;
}

/* ===================================
   RESPONSIVO - PÁGINAS
   =================================== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
    }

    .blog-card-full {
        grid-template-columns: 1fr;
    }

    .blog-image-large {
        min-height: 200px;
    }

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

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

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

    .newsletter-box,
    .social-box {
        padding: 2rem;
    }
}

/* ===================================
   RESPONSIVO
   =================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content, .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section .newsletter-form {
        flex-direction: column;
    }
    
    .footer-section .newsletter-form button {
        width: 100%;
    }
    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-icon {
        margin: 0 auto;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-body {
        grid-template-columns: 1fr;
    }
    
    .service-info-box {
        position: static;
    }
    
    .contact-content, .blog-content .container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
}

/* Páginas de Artigos do Blog */
.article-content {
    padding: 4rem 0;
    background-color: var(--white);
}

.article-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.article-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.article-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.article-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-text h2:first-child {
    margin-top: 0;
}

.article-text h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-text p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-text li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.article-cta .btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.article-cta .btn:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-3px);
}

.article-back {
    text-align: center;
    margin-top: 2rem;
}

.article-back .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .article-text {
        padding: 2rem 1.5rem;
    }
    
    .article-text h2 {
        font-size: 1.6rem;
    }
    
    .article-text h3 {
        font-size: 1.3rem;
    }
    
    .article-cta {
        padding: 2rem 1.5rem;
    }
    
    .article-icon i {
        font-size: 3rem;
    }
}
