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

/* Remove all video controls for GIF-like behavior */
video {
    outline: none;
    border: none;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

video::-webkit-media-controls-timeline {
    display: none !important;
}

video::-webkit-media-controls-current-time-display {
    display: none !important;
}

video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

video::-webkit-media-controls-mute-button {
    display: none !important;
}

video::-webkit-media-controls-volume-slider {
    display: none !important;
}

video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

video::-moz-media-controls {
    display: none !important;
}

video::--webkit-media-controls {
    display: none !important;
}

body {
    font-family: 'Arimo', sans-serif;
    line-height: 1.6;
    background-color: #F6F6F6;
    padding-top: 80px; /* Compensar header fixo */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 2rem;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 53, 19, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2D3513;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #b9bc9c;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    margin-right: 8px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 85%;
    background-color: #2D3513;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    background-color: #F6F6F6;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 0 2rem 0;
}

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

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

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

.hero h1 {
    font-family: 'Lustria', serif;
    color: #2D3513;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h2 {
    font-family: 'Alike', serif;
    color: #2e3513;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    gap: 0.8rem;
}

.benefit-item i {
    color: #b9bc9c;
    font-size: 1rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #2e3513;
    font-size: 0.95rem;
    line-height: 1.4;
}

.experience {
    color: #2e3513;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-photo {
    width: 100%;
    height: 520px;
    max-width: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #b9bc9c;
    color: #2D3513;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(185, 188, 156, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 188, 156, 0.4);
    background-color: #a8ab8f;
}

.pulse-icon {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

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

/* Map Section */
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mobile optimization for map */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Lustria', serif;
    font-size: 2.5rem;
    color: #2e3513;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.faq-item {
    background: #1E2611;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 25px 30px;
    font-family: 'Arimo', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    list-style: none;
    position: relative;
    background: #1E2611;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] summary {
    background: #2a3518;
}

.faq-answer {
    padding: 30px;
    background: #1E2611;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #ffffff;
    font-family: 'Arimo', sans-serif;
    font-size: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-item summary {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-item summary::after {
        right: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background-color: #1E2611;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-name {
    font-family: 'Lustria', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.footer-specialty {
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 5px;
    line-height: 1.4;
}

.footer-education {
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
    color: #8B7355;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-location {
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-crm,
.footer-rqe {
    font-family: 'Arimo', sans-serif;
    font-size: 0.8rem;
    color: #999999;
    margin: 0;
}

.footer-title {
    font-family: 'Lustria', serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-contact-item {
    margin-bottom: 15px;
}

.footer-phone,
.footer-social {
    font-family: 'Arimo', sans-serif;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-social:hover {
    color: #8B7355;
}

.footer-phone i,
.footer-social i {
    font-size: 1rem;
}

.footer-followers {
    margin-top: 10px;
}

.footer-followers p {
    font-family: 'Arimo', sans-serif;
    font-size: 0.8rem;
    color: #999999;
    margin: 0;
}

.footer-schedule-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
}

.schedule-day {
    color: #cccccc;
}

.schedule-time {
    color: #ffffff;
    font-weight: 500;
}

.footer-parking {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-parking p {
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
    color: #8B7355;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    font-family: 'Arimo', sans-serif;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-info-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-links p {
    font-family: 'Arimo', sans-serif;
    font-size: 0.8rem;
    color: #999999;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-address p,
.footer-copyright p {
    font-family: 'Arimo', sans-serif;
    font-size: 0.8rem;
    color: #999999;
    margin: 0;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    /* Melhor design para contato e horários no mobile */
    .footer-contact,
    .footer-schedule {
        max-width: 280px;
        margin: 0 auto;
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        padding: 25px 20px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-contact .footer-title,
    .footer-schedule .footer-title {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.2rem;
        color: #8B7355;
    }
    
    .footer-contact-item {
        margin-bottom: 12px;
    }
    
    .footer-phone,
    .footer-social {
        font-size: 1rem;
        padding: 8px 0;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .footer-phone:hover,
    .footer-social:hover {
        background: rgba(139, 115, 85, 0.1);
        padding-left: 8px;
    }
    
    .footer-schedule-item {
        justify-content: space-between;
        gap: 15px;
        padding: 6px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
    }
    
    .footer-schedule-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .schedule-day {
        font-weight: 500;
    }
    
    .schedule-time {
        font-weight: 600;
        color: #8B7355;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-menu {
        align-items: center;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-titles {
    margin-bottom: 2rem;
}

.contact-title {
    font-family: 'Lustria', serif;
    font-size: 1.2rem;
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-family: 'Lustria', serif;
    font-size: 2.5rem;
    color: #2e3513;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.2;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    object-position: center;
}

.contact-info {
    flex: 1;
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #2D3513;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-number {
    font-size: 1.3rem;
    color: #2D3513;
    font-weight: 400;
    margin: 0;
}

.contact-address {
    font-size: 0.85rem;
    color: #2e3513;
    line-height: 1.4;
    margin: 0;
    opacity: 0.8;
}

.contact-btn {
    background: #1E2611;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
    width: 200px;
    text-align: center;
    height: 48px;
    line-height: 24px;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #2a3518;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #1E2611;
}

.whatsapp-btn:hover {
    background: #2a3518;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    margin-bottom: 3rem;
    text-align: center;
}

.reviews-titles {
    margin-bottom: 2rem;
}

.reviews-title {
    font-family: 'Lustria', serif;
    font-size: 1.2rem;
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-subtitle {
    font-family: 'Lustria', serif;
    font-size: 2.5rem;
    color: #2e3513;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.2;
}

.reviews-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.reviews-rating {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    min-width: 200px;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.score-text {
    font-family: 'Arimo', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D3513;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #FFD700;
    font-size: 1.5rem;
}

.reviews-count {
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.google-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-logo svg {
    width: 80px;
    height: 26px;
}

.reviews-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 320px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3513;
    margin: 0 0 0.5rem 0;
}

.review-stars {
    color: #FFD700;
    font-size: 1rem;
    margin-top: 0.3rem;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
}

.review-text {
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    text-align: left;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-top: auto;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #666;
}

.close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    margin-top: auto;
    align-self: flex-start;
    transition: color 0.3s ease;
    font-weight: bold;
    margin-left: 0.5rem;
}

.close-btn:hover {
    color: #666;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }
    
    .reviews-header {
        margin-bottom: 2rem;
    }
    
    .reviews-titles {
        margin-bottom: 1.5rem;
    }
    
    .reviews-title {
        font-size: 1rem;
    }
    
    .reviews-subtitle {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .reviews-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .reviews-rating {
        min-width: auto;
        order: 1;
    }
    
    .google-logo svg {
        width: 60px;
        height: 20px;
    }
    
    .reviews-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        order: 2;
    }
    
    .review-card {
        height: auto;
        min-height: 200px;
        padding: 1.2rem;
        max-width: none;
    }
}

/* Help Section */
.help-section {
    background-color: #F6F6F6;
    padding: 4rem 0;
    position: relative;
}



.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.help-title {
    font-family: 'Lustria', serif;
    color: #2D3513;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.help-subtitle {
    font-family: 'Arimo', sans-serif;
    color: #2e3513;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    opacity: 0.8;
    white-space: nowrap;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.problem-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    display: block;
    object-fit: contain;
}

.category-title {
    font-family: 'Arimo', sans-serif;
    color: #2D3513;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.problem-list li {
    color: #2e3513;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    transition: color 0.2s ease;
}

.problem-list li::before {
    content: "→";
    color: #b9bc9c;
    font-size: 1.1rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.problem-list li:hover {
    color: #1a1f0c;
}

.help-conclusion {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conclusion-text {
    color: #2e3513;
    font-family: 'Arimo', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    white-space: nowrap;
    text-align: center;
}

/* Video Section */
.video-section {
    background-color: #ffffff;
    padding: 0;
    position: relative;
}

.video-container {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.treatment-gif {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: block;
}

.treatment-gif:hover {
    transform: scale(1.02);
}

/* Care Section */
.care-section {
    background-color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.care-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.care-subtitle {
    font-family: 'Arimo', sans-serif;
    color: #8B7355;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.care-title {
    font-family: 'Lustria', serif;
    color: #2e3513;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
    white-space: nowrap;
}

.care-description {
    font-family: 'Arimo', sans-serif;
    color: #2e3513;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.care-description strong {
    color: #8B7355;
    font-weight: 600;
}



/* Treatments Section */
.treatments-section {
    position: static;
    background-color: rgba(246, 246, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    text-align: center;
}

.treatments-container {
    max-width: 1200px;
    margin: 0 auto;
}

.treatments-title {
    font-family: 'Lustria', serif;
    color: #2e3513;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.2;
}

.treatments-description {
    font-family: 'Arimo', sans-serif;
    color: #2e3513;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    font-style: italic;
    max-width: 100%;
    margin: 0 auto;
    white-space: nowrap;
}

/* Desktop - show original text */
@media (min-width: 769px) {
    .treatments-description::before {
        display: none;
    }
    
    .treatments-description {
        font-size: 1.1rem !important;
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}



/* Video Cards Section */
.video-cards-section {
    padding: 0;
    background-color: #F6F6F6;
}

.video-cards-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.video-card {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    min-height: 50vh;
    width: 100%;
}

.video-wrapper {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    margin: 0;
    padding: 0;
}

.card-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card-content {
    flex: 0 0 50%;
    padding: 4rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.card-title {
    font-family: 'Lustria', serif;
    color: #2e3513;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.card-description {
    font-family: 'Arimo', sans-serif;
    color: #2e3513;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-list {
    font-family: 'Arimo', sans-serif;
    color: #2e3513;
    font-size: 1rem;
    line-height: 1.6;
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.card-list li:before {
    content: '•';
    color: #8B7355;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
        order: 1;
    }
    
    .benefits {
        text-align: left;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .benefit-item span {
        font-size: 1rem;
    }
    
    .experience {
        font-size: 1.1rem;
    }
    

    
    .hero-container {
        padding: 0 1rem;
    }
    

    
    /* Help Section Mobile */
    .help-section {
        padding: 3rem 0;
    }
    
    .help-container {
        padding: 0 1rem;
    }
    
    .help-title {
        font-size: 2.2rem;
    }
    
    .help-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        text-align: center;
        padding: 0 1rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .problem-category {
        padding: 1.5rem;
    }
    
    .help-conclusion {
        padding: 2rem;
    }
    
    .conclusion-text {
        font-size: 1.1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        text-align: center;
        padding: 0 1.5rem;
        line-height: 1.6;
    }
    
    /* Video Section Mobile */
    .video-section {
        padding: 0;
    }
    
    .video-container {
        padding: 0;
    }
    
    .treatment-gif {
        width: 100%;
        border-radius: 0;
    }
    
    /* Care Section Mobile */
    .care-section {
        padding: 3rem 0;
    }
    
    .care-container {
        padding: 0 1rem;
    }
    
    .care-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        white-space: normal;
    }
    
    .care-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Treatments Section Mobile */
    .treatments-section {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
        padding: 3rem 0;
    }
    
    .treatments-container {
        padding: 0 1rem;
    }
    
    .treatments-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .treatments-description {
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: center;
        padding: 0 1rem;
        white-space: normal;
    }
    
    /* Video Cards Section Mobile */
    .video-cards-section {
        padding: 2rem 0;
    }
    
    .video-cards-container {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .video-card {
        flex-direction: column;
        width: 100%;
    }
    
    .video-wrapper {
        width: 100%;
        margin-bottom: 1.5rem;
        order: 1;
    }
    
    .card-content {
        width: 100%;
        padding: 1.5rem;
        order: 2;
    }
    
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .card-list {
        font-size: 1rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .benefit-item {
        text-align: left;
    }
    

    
    .header {
        padding: 1rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    /* Extra mobile optimization */
    .treatments-section {
        padding: 2rem 0;
    }
    
    .treatments-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .treatments-description {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .video-cards-section {
        padding: 1.5rem 0;
    }
    
    .video-cards-container {
        gap: 2rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .card-list {
        font-size: 0.9rem;
    }
    
    /* CTA Section Extra Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-left {
        order: 1;
        max-width: 100%;
    }
    
    .about-right {
        order: 2;
    }
    
    .about-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .about-quote {
        font-size: 1rem;
        text-align: left;
        margin: 1.5rem 0;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .about-image {
        max-width: 350px;
    }
}

/* About Section Styles */
.about-section {
    padding: 5rem 2rem;
    background-color: #F8F9FA;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-left {
    flex: 1;
    max-width: 600px;
}

.about-subtitle {
    font-family: 'Lustria', serif;
    font-size: 1.1rem;
    color: #8B7355;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-title {
    font-family: 'Lustria', serif;
    font-size: 2.5rem;
    color: #2D3513;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-quote {
    font-family: 'Arimo', sans-serif;
    font-size: 1.1rem;
    color: #2D3513;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid #8B7355;
}

.about-description {
    font-family: 'Arimo', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #2D3513;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(45, 53, 19, 0.2);
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 53, 19, 0.4);
    background-color: #1F2610;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Office Gallery Section */
.office-gallery-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.office-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.office-photo {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.office-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile optimization for office gallery */
@media (max-width: 768px) {
    .office-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .office-photo {
        width: 100%;
        aspect-ratio: 1;
        overflow: hidden;
    }
    
    .office-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Mobile Sidebar Menu */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-sidebar.active {
    visibility: visible;
    opacity: 1;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #1E2611;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active .sidebar-content {
    transform: translateX(0);
}

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

.sidebar-logo {
    height: 40px;
    width: auto;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidebar-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #cccccc;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #8B7355;
}

.sidebar-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: #8B7355;
}

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

.sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Arimo', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-whatsapp:hover {
    background-color: #20b358;
    transform: translateY(-2px);
}

.sidebar-whatsapp i {
    font-size: 1.2rem;
}

/* Hide sidebar on desktop */
@media (min-width: 769px) {
    .mobile-sidebar {
        display: none;
    }
}

/* Ajustes responsivos do header */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    body {
        padding-top: 90px;
    }
    
    .hero {
        min-height: calc(100vh - 90px);
        padding: 20px 0 2rem 0;
    }
}