/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis Globais */
:root {
    --primary-color: #F03E42;
    --secondary-color: #223a66;
    --accent-color: #f1f6fd;
    --dark-color: #222222;
    --light-color: #fff;
    --grey-color: #6c757d;
    --text-color: #6F8BA4;
    --border-color: #e9ecef;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* Estilos Base */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    font-weight: 400;
    min-height: 100%;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
}

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

.hero-content h2 .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--grey-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Cabeçalho Principal */
.main-header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

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

.logo img {
    max-height: 40px;
    width: auto;
    margin: 5px 0;
}

.main-menu ul {
    display: flex;
}

.main-menu li {
    margin: 0 15px;
}

.main-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-menu a:hover, .main-menu a.active {
    color: var(--primary-color);
}

.main-menu a {
    text-decoration: none;
}

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

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

.main-menu a:hover, .main-menu a.active {
    text-decoration: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

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

/* Banner Principal */
.hero-section {
    color: #222;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 150px;
    margin-top: 70px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    color: #222222;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.hero-content h2 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 500;
    color: #222222;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.hero-content h4 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #222222;
    font-family: 'Roboto', sans-serif;
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 30px;
    opacity: 0.8;
    color: #222222;
    font-weight: 300;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.primary-btn, .secondary-btn, .learn-more-btn, .contact-btn {
    display: inline-block;
    padding: 0 25px;
    line-height: 50px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 99;
    border: none;
    text-transform: uppercase;
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    width: 200px;
    box-shadow: 0 3px 10px rgba(225, 36, 84, 0.2);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding-right: 30px;
}

.primary-btn i {
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    background: #fff;
    border-radius: 0 30px 30px 0;
    color: var(--primary-color);
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.primary-btn:hover {
    background-color: #D5373A;
}

.primary-btn:hover i {
    /* Sem animação */
}

.secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Seção de Benefícios */
.benefits-section {
    background-color: var(--light-color);
}

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

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(240, 62, 66, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-card:hover .icon-wrapper {
    background-color: var(--primary-color);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover .icon-wrapper i {
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
}

.benefit-card p {
    color: var(--grey-color);
}

/* Seção do Assistente de IA */
.ai-assistant-section {
    background-color: #fff;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ai-assistant-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(240, 62, 66, 0.05);
    z-index: 0;
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
}

.ai-assistant-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-assistant-text {
    flex: 1;
    padding-right: 50px;
}

.ai-assistant-image {
    flex: 1;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.ai-assistant-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ai-assistant-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

.ai-assistant-text .subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.ai-assistant-text p {
    margin-bottom: 20px;
    color: var(--grey-color);
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Seção da Equipe Médica */
.doctors-section {
    background-image: url('../img/doctors-image.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
}

/* Seção de Telemedicina */
.telemedicine-section {
    background-color: var(--light-color);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.telemedicine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(34, 58, 102, 0.05);
    z-index: 0;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
}

.telemedicine-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-direction: row-reverse;
}

.telemedicine-text {
    flex: 1;
    padding-left: 50px;
}

.telemedicine-image {
    flex: 1;
    min-height: 400px;
    background-color: #eee;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    background-image: url('../img/service-img.jpg');
    background-size: cover;
    background-position: center;
}

.telemedicine-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

.telemedicine-text .subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.telemedicine-text p {
    margin-bottom: 20px;
    color: var(--grey-color);
    font-size: 1.1rem;
}

/* Seção de Segurança e Privacidade */
.security-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.security-content {
    text-align: center;
}

.security-content .section-header {
    margin-bottom: 60px;
}

.security-content .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
}

.security-content .section-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-feature-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.security-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.security-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(240, 62, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.security-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.security-feature-card:hover .security-icon-wrapper {
    background-color: var(--primary-color);
}

.security-feature-card:hover .security-icon-wrapper i {
    color: #fff;
}

.security-feature-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.security-feature-card p {
    color: var(--grey-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsividade para segurança */
@media (max-width: 992px) {
    .security-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 60px 0;
    }
    
    .security-content .section-header h2 {
        font-size: 2rem;
    }
    
    .security-feature-card {
        padding: 30px 20px;
    }
    
    .security-feature-card h4 {
        font-size: 1.2rem;
    }
}

/* Seção de Módulos */
.modules-section {
    background-color: var(--light-color);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey-color);
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    background-color: rgba(240, 62, 66, 0.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tab-image {
    flex: 1;
    background-color: #eee;
    min-height: 400px;
}

.tab-description {
    flex: 1;
    padding: 40px;
}

.tab-description h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.tab-description p {
    margin-bottom: 20px;
    color: var(--grey-color);
}

.tab-description ul {
    list-style: disc;
    padding-left: 20px;
}

.tab-description ul li {
    margin-bottom: 10px;
    color: var(--grey-color);
}

/* Horário de Atendimento */
.open-hours-section {
    position: relative;
    margin: 40px 0;
}

.open-hours-container {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: 50px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.open-hours-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    background-image: url('../img/service-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.open-hours-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
}

.open-hours-title i {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    font-size: 1.1rem;
}

.time {
    font-weight: 700;
}

.learn-more-btn {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
    padding: 12px 30px;
}

.learn-more-btn i {
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    background: #fff;
    border-radius: 0 30px 30px 0;
    color: var(--primary-color);
}

.learn-more-btn:hover {
    background-color: #D5373A;
}

.learn-more-btn:hover i {
    /* Sem animação */
}

/* Seção de Contato */
.contact-section {
    background-color: var(--light-color);
    padding: 110px 0 100px;
}

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

.contact-info-wrapper, .contact-form-wrapper {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info-wrapper {
    padding: 40px;
}

.contact-info-wrapper .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.contact-info-wrapper .section-header h2:after {
    left: 0;
    transform: none;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-details .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(240, 62, 66, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: var(--transition);
}

.contact-item:hover .icon {
    background-color: var(--primary-color);
}

.contact-details .icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item:hover .icon i {
    color: #fff;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.contact-details p {
    color: var(--grey-color);
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
    background-color: #fff;
}

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

.form-group select {
    cursor: pointer;
    color: #999;
}

.form-group select:focus,
.form-group select:valid {
    color: var(--dark-color);
}

.form-group select option {
    padding: 10px;
    color: var(--dark-color);
}

.form-group select option[value=""] {
    color: #999;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group.half-width {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half-width {
        margin-bottom: 20px;
    }
}

.contact-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 30px;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.contact-btn i {
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    background: #fff;
    border-radius: 0 30px 30px 0;
    color: var(--primary-color);
}

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

.contact-btn:hover i {
    /* Sem animação */
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding-top: 70px;
}

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

.footer-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.about-widget p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget .social-links {
    margin-top: 20px;
}

.footer-widget .social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.links-widget ul li, .services-widget ul li {
    margin-bottom: 10px;
}

.links-widget ul li::before, .services-widget ul li::before {
    content: '▶';
    color: #fff;
    margin-right: 8px;
    font-size: 12px;
}

.links-widget a, .services-widget a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.links-widget a:after, .services-widget a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.links-widget a:hover, .services-widget a:hover {
    color: #fff;
    text-decoration: none;
}

.links-widget a:hover:after, .services-widget a:hover:after {
    width: 100%;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form input {
    padding-right: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}

.newsletter-form input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Botão voltar ao topo - estilos adicionais */

/* Botão de voltar ao topo */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    animation: float 2s ease-in-out infinite;
}

.scroll-to-top:hover {
    background-color: #d5373a;
}

.scroll-to-top i {
    display: inline-block;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 50px;
        align-items: flex-start;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tab-content-inner {
        flex-direction: column;
    }
    
    .tab-image {
        width: 100%;
        min-height: 250px;
    }
    
    .ai-assistant-content, .telemedicine-content {
        flex-direction: column;
    }
    
    .ai-assistant-text, .telemedicine-text {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .open-hours-container {
        margin: 0 auto;
    }
    
    .open-hours-bg {
        display: none;
    }
    
}

/* Ocultar seção dos médicos em tablets e dispositivos móveis */
@media (max-width: 992px) {
    .doctors-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 50px;
    }
    
    .main-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .benefit-card, .pricing-card, .blog-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Ocultar a seção de telemedicina em mobile */
    .telemedicine-section {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}