/*
Theme Name: Odonto Premium Franca Theme
Theme URI: https://odontopremiumfranca.com.br
Author: AI Developer
Description: Um tema premium elegante e responsivo desenvolvido especialmente para a clínica Odonto Premium Franca. Cores sofisticadas, seções completas de serviços e design institucional de alto padrão.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: odonto-premium-franca
*/

/* --- Configurações Gerais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
}

body {
    color: #2C3E50;
    background-color: #FAFAFA;
    line-height: 1.6;
}

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

/* --- Tipografia & Botões --- */
h1, h2, h3, h4 {
    color: #0A192F;
    font-weight: 700;
}

.btn-premium {
    display: inline-block;
    background-color: #D4AF37;
    color: #0A192F;
    padding: 14px 28px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-premium:hover {
    background-color: #BC962B;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 26px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: #D4AF37;
    color: #0A192F;
}

/* --- Cabeçalho --- */
.main-header {
    background-color: #0A192F;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #D4AF37;
}

.main-header .container {
    display: table;
    width: 100%;
}

.logo-box {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
}

.logo-box h2 {
    color: #FFF;
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.logo-box h2 span {
    color: #D4AF37;
}

.nav-box {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 70%;
}

.nav-menu {
    list-style: none;
    display: inline-block;
}

.nav-menu li {
    display: inline-block;
    margin-left: 25px;
}

.nav-menu a {
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.nav-menu .menu-btn a {
    background-color: #D4AF37;
    color: #0A192F;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

.nav-menu .menu-btn a:hover {
    background-color: #FFF;
    color: #0A192F;
}

/* --- Seção Hero --- */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.6) 100%);
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    max-width: 650px;
}

.hero-content h1 {
    color: #FFF;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #D4AF37;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #E2E8F0;
}

/* --- Seção Sobre --- */
.about-section {
    padding: 90px 0;
    background-color: #FFF;
}

.about-table {
    display: table;
    width: 100%;
}

.about-cell {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding: 0 20px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #D4AF37;
}

.about-text p {
    font-size: 1.05rem;
    color: #4A5568;
    margin-bottom: 20px;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Seção Serviços --- */
.services-section {
    padding: 90px 0;
    background-color: #F7FAFC;
    text-align: center;
}

.services-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.services-subtitle {
    color: #718096;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-row {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.service-card-cell {
    display: table-cell;
    padding: 0 15px;
    vertical-align: top;
}

.service-card {
    background-color: #FFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #0A192F;
}

.service-info p {
    color: #4A5568;
    font-size: 0.95rem;
}

/* --- Seção Diferenciais / Call to Action --- */
.cta-section {
    background-color: #0A192F;
    color: #FFF;
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #D4AF37;
}

.cta-section h2 {
    color: #FFF;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

/* --- Rodapé --- */
.main-footer {
    background-color: #061020;
    color: #A0AEC0;
    padding: 60px 0 30px 0;
    font-size: 0.95rem;
    border-top: 1px solid #1A2E44;
}

.footer-table {
    display: table;
    width: 100%;
}

.footer-cell {
    display: table-cell;
    width: 33.33%;
    vertical-align: top;
    padding: 0 20px;
}

.footer-cell h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-cell p {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1A2E44;
    text-align: center;
    font-size: 0.85rem;
}

/* Responsividade Básica via Media Query */
@media (max-width: 768px) {
    .logo-box, .nav-box, .about-cell, .service-card-cell, .footer-cell {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 15px 0 !important;
    }
    .nav-menu li {
        margin: 5px 10px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
