/*-----------------------------------------------------------------------------------
	Custom Modern Styles - Assessoria Vieri
	REFATORAÇÃO COMPLETA - LAYOUT MODERNO 2025
	UI/UX Otimizado com Google Fonts e Design Responsivo
-----------------------------------------------------------------------------------*/

/* ============================================
   Importação de Fontes Google
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
============================================ */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 17px;
    line-height: 1.8;
    color: #2d2d2d;
    font-weight: 400;
    letter-spacing: -0.01em;
}

p {
    font-family: 'Inter', sans-serif !important;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.8rem; font-weight: 700; }
h3 { font-size: 2.2rem; font-weight: 700; }
h4 { font-size: 1.8rem; font-weight: 600; }
h5 { font-size: 1.4rem; font-weight: 600; }
h6 { font-size: 1.2rem; font-weight: 600; }

/* ============================================
   TOP BAR - ESCURO PROFISSIONAL SEM HOVER
============================================ */
#top-bar {
    background: #1a1a1a;
    padding: 14px 0;
    font-family: 'Inter', sans-serif;
    border-bottom: 3px solid #00a859;
}

#top-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
}

#top-bar .col_half {
    float: none !important;
    width: auto !important;
}

#top-bar .top-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#top-bar .top-links ul li {
    border-right: 1px solid rgba(255,255,255,0.08);
    display: inline-block;
    margin: 0;
}

#top-bar .top-links ul li:last-child {
    border-right: none;
}

#top-bar .top-links ul li a {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
}

#top-bar .top-links ul li a:hover {
    color: #ffffff !important;
    background: transparent !important;
}

#top-bar .top-links ul li a i {
    margin-right: 10px;
    font-size: 16px;
    color: #00a859;
}

/* ============================================
   HEADER - LOGO E MENU NA MESMA LINHA
============================================ */
#header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#header-wrap {
    position: relative;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding-top: 15px !important; */
    padding-bottom: 15px !important;
}

#header #logo {
    float: none !important;
    margin-right: 0 !important;
    display: flex;
    align-items: center;
    position: relative !important;
    height: auto !important;
}

#header #logo img {
    max-height: 70px !important;
    width: auto !important;
    height: auto !important;
}

#primary-menu-trigger,
#page-menu-trigger {
    top: 50%;
    transform: translateY(-50%);
}

/* Menu moderno alinhado à direita */
#primary-menu {
    float: right !important;
    margin: 0 !important;
}

#primary-menu > ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 !important;
}

#primary-menu > ul > li {
    float: none !important;
    margin: 0 !important;
}

#primary-menu ul li a {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a !important;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    padding: 12px 20px !important;
    border-radius: 8px;
}

#primary-menu ul li a:hover,
#primary-menu ul li.current a {
    color: #ffffff !important;
    background: #00a859 !important;
}

/* Submenu moderno */
#primary-menu ul ul {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    border: none;
    padding: 15px 0;
    background: #ffffff;
    min-width: 260px;
}

#primary-menu ul ul li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#primary-menu ul ul li:last-child {
    border-bottom: none;
}

#primary-menu ul ul li a {
    padding: 14px 25px !important;
    font-size: 14px;
    color: #333 !important;
    font-weight: 500;
    border-radius: 0 !important;
}

#primary-menu ul ul li a:hover {
    background: rgba(0, 168, 89, 0.08) !important;
    color: #00a859 !important;
    padding-left: 30px !important;
}

/* ============================================
   SLIDERS E BANNERS - CARDS MODERNOS
============================================ */
.slider-caption {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    padding: 55px 60px !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border-left: 8px solid #00a859;
    max-width: 750px;
}

.slider-caption h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-shadow: none !important;
    margin-bottom: 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

.slider-caption h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #2d2d2d !important;
    margin-bottom: 25px !important;
    text-shadow: none !important;
}

.slider-caption p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.25rem !important;
    color: #333 !important;
    line-height: 1.8 !important;
    margin-bottom: 35px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

.slider-caption span {
    color: #00a859;
}

/* Botão do slider */
.slider-caption .button {
    background: #00a859 !important;
    color: white !important;
    padding: 18px 45px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    border: none !important;
}

.slider-caption .button:hover {
    background: #008f4a !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 35px rgba(0, 168, 89, 0.6) !important;
}

/* ============================================
   FOOTER MODERNO - LAYOUT CORRETO
============================================ */
#footer {
    background: #1a1a1a !important;
    color: #e0e0e0;
    padding: 70px 0 0 !important;
    font-family: 'Inter', sans-serif;
    border-top: 4px solid #00a859 !important;
}

#footer .container {
    max-width: 1200px;
}

#footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

#footer .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
    margin-bottom: 40px;
}

#footer .widget {
    margin-bottom: 0;
}

#footer .widget h4 {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    padding-bottom: 18px !important;
    border-bottom: 3px solid #00a859 !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#footer .widget h4:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 70px;
    height: 3px;
    background: #ffffff;
}

#footer .widget p {
    color: #b8b8b8 !important;
    line-height: 1.9 !important;
    font-size: 16px !important;
    margin-bottom: 18px !important;
    font-weight: 400 !important;
}

#footer .widget p strong {
    color: #ffffff !important;
    font-weight: 700 !important;
    display: inline-block;
    min-width: 95px;
}

#footer .widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#footer .widget ul.list-unstyled {
    list-style: none !important;
}

#footer .widget ul li {
    margin-bottom: 14px !important;
    list-style: none !important;
}

#footer .widget ul li a {
    color: #e8e8e8 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    position: relative !important;
    padding-left: 25px !important;
    font-weight: 500 !important;
}

#footer .widget ul li a:before {
    content: '→' !important;
    position: absolute !important;
    left: 0 !important;
    color: #00a859 !important;
    transition: all 0.3s ease !important;
    font-size: 18px !important;
}

#footer .widget ul li a:hover {
    color: #00a859 !important;
    padding-left: 30px !important;
}

#footer .widget ul li a:hover:before {
    left: 5px !important;
}

/* Copyrights */
#copyrights {
    background: #0d0d0d !important;
    padding: 35px 0 !important;
    margin-top: 50px !important;
}

#copyrights p {
    color: #999 !important;
    font-size: 15px !important;
    margin-bottom: 10px !important;
    line-height: 1.7 !important;
}

#copyrights .col_full {
    text-align: center;
}

/* ============================================
   SEÇÃO DE ESTATÍSTICAS (COUNTERS) - COM ÍCONES
============================================ */
.feature-box.fbox-outline {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid rgba(0, 168, 89, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.feature-box.fbox-outline:hover {
    border-color: #00a859;
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.15);
    transform: translateY(-5px);
}

.feature-box.fbox-outline .fbox-icon {
    margin-bottom: 20px;
    display: block;
}

.feature-box.fbox-outline .fbox-icon a {
    display: inline-block;
}

.feature-box.fbox-outline .fbox-icon i,
.feature-box.fbox-outline .fbox-icon [class^="icon-"],
.feature-box.fbox-outline .fbox-icon [class*=" icon-"] {
    font-size: 48px !important;
    color: #00a859 !important;
    transition: all 0.3s ease;
    line-height: 1 !important;
    display: inline-block !important;
}

.feature-box.fbox-outline:hover .fbox-icon i,
.feature-box.fbox-outline:hover .fbox-icon [class^="icon-"],
.feature-box.fbox-outline:hover .fbox-icon [class*=" icon-"] {
    color: #008f4a !important;
    transform: scale(1.1);
}

.counter {
    font-family: 'Poppins', sans-serif !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #00a859 !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.counter.counter-small {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
}

.counter span {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
}

h5.nomargin.color {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 !important;
}

/* ============================================
   FEATURE BOXES - 2x2 GRID COM ÍCONES NO TOPO
============================================ */
.feature-box.fbox-plain {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.feature-box.fbox-plain .fbox-icon {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.feature-box.fbox-plain .fbox-icon a {
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-box.fbox-plain .fbox-icon a:hover {
    transform: scale(1.1);
}

.feature-box.fbox-plain .fbox-icon i,
.feature-box.fbox-plain .fbox-icon [class^="icon-medical-"],
.feature-box.fbox-plain .fbox-icon [class*=" icon-medical-"] {
    font-family: 'webfont-medical-icons' !important;
    font-size: 64px !important;
    color: #00a859 !important;
    line-height: 1 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.3s ease;
}

.feature-box.fbox-plain .fbox-icon a:hover i,
.feature-box.fbox-plain .fbox-icon a:hover [class^="icon-medical-"],
.feature-box.fbox-plain .fbox-icon a:hover [class*=" icon-medical-"] {
    color: #008f4a !important;
}

.feature-box.fbox-plain h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.feature-box.fbox-plain p {
    font-family: 'Inter', sans-serif !important;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

/* Grid 2x2 para col_two_fifth */
.col_two_fifth {
    width: 48%;
    float: left;
    margin-right: 4%;
}

.col_two_fifth:nth-child(2n) {
    margin-right: 0;
}

.col_two_fifth:nth-child(3) {
    clear: left;
}

.heading-block {
    text-align: center;
    margin-bottom: 50px;
}

.heading-block h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.heading-block span {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

/* ============================================
   BOTÕES MODERNOS
============================================ */
.button, button, input[type="submit"],
.button-3d, .button-rounded {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    transition: all 0.3s ease !important;
    border-radius: 10px !important;
    background: #00a859 !important;
    color: white !important;
    padding: 16px 40px !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    border: none !important;
    box-shadow: 0 6px 22px rgba(0, 168, 89, 0.4) !important;
}

.button:hover, button:hover, input[type="submit"]:hover,
.button-3d:hover, .button-rounded:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(0, 168, 89, 0.6) !important;
    background: #008f4a !important;
    color: white !important;
}

/* ============================================
   FORMULÁRIOS MODERNOS
============================================ */
.form-control, .sm-form-control, 
input[type="text"], input[type="email"], 
input[type="tel"], textarea, select {
    font-family: 'Inter', sans-serif !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
    color: #333 !important;
    font-weight: 400 !important;
}

.form-control:focus, .sm-form-control:focus, 
input[type="text"]:focus, input[type="email"]:focus, 
input[type="tel"]:focus, textarea:focus, select:focus {
    border-color: #00a859 !important;
    box-shadow: 0 0 0 5px rgba(0, 168, 89, 0.12) !important;
    outline: none !important;
}

label {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
    margin-bottom: 10px !important;
}

/* ============================================
   WHATSAPP MODAL MODERNO
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99999;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    color: #fff;
    font-size: 34px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
}

/* Modal WhatsApp */
.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 110px;
    left: 30px;
    z-index: 99998;
    background: #fff;
    width: 370px;
    border-radius: 18px;
    box-shadow: 0 12px 50px rgba(0,0,0,0.25);
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-modal.active {
    display: block;
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-modal-header h4 {
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.3rem;
    font-weight: 700;
}

.whatsapp-modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.whatsapp-modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.whatsapp-modal-body {
    padding: 30px;
}

.whatsapp-modal-body p {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.whatsapp-modal-body textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    resize: vertical;
    min-height: 100px;
}

.whatsapp-modal-body textarea:focus {
    outline: none;
    border-color: #25D366;
}

.whatsapp-modal-body button {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 18px;
    text-transform: uppercase;
}

.whatsapp-modal-body button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-modal-body button i {
    margin-right: 10px;
    font-size: 18px;
}

/* ============================================
   RESPONSIVIDADE MOBILE
============================================ */
@media (max-width: 991px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.3rem; }
    h3 { font-size: 1.9rem; }
    
    .slider-caption {
        padding: 40px 35px !important;
    }
    
    .slider-caption h2 {
        font-size: 2.5rem !important;
    }
    
    .slider-caption h3 {
        font-size: 2rem !important;
    }
    
    .slider-caption p {
        font-size: 1.1rem !important;
    }
    
    .whatsapp-modal {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 25px;
        left: 25px;
    }
    
    .whatsapp-float i {
        font-size: 30px;
    }
    
    #footer .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.6rem; }
    
    #footer {
        padding: 50px 0 0 !important;
    }
    
    #footer .widget {
        margin-bottom: 30px;
    }
    
    .slider-caption {
        padding: 30px 25px !important;
    }
    
    .slider-caption h2 {
        font-size: 2rem !important;
    }
    
    .slider-caption h3 {
        font-size: 1.6rem !important;
    }
    
    .slider-caption p {
        font-size: 1rem !important;
    }
    
    #primary-menu > ul {
        flex-direction: column;
        gap: 0;
    }
    
    #primary-menu ul li a {
        padding: 15px 20px !important;
        border-radius: 0 !important;
    }
}

/* ============================================
   MELHORIAS GERAIS DE UI/UX
============================================ */
.container {
    max-width: 1200px;
}

section {
    padding: 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Remover fontes antigas do tema */
.medical-icon,
.feature-box i,
.counter,
.heading-block {
    font-family: 'Inter', sans-serif !important;
}

/* Links globais */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* Cards e boxes */
.box,
.card,
.panel {
    border-radius: 12px;
    overflow: hidden;
}

/* Sombras consistentes */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.shadow {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}
    padding: 30px 0;
    margin-top: 40px;
}

#copyrights p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

#copyrights .col_full {
    text-align: center;
}

/* ============================================
   Sliders e Banners Modernos - CARD BRANCO COM LEITURA OTIMIZADA
============================================ */
.slider-caption {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(15px);
    padding: 50px 55px !important;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    border-left: 6px solid #00a859;
    max-width: 750px;
}

.slider-caption h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-shadow: none !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
    letter-spacing: -1px !important;
}

.slider-caption h3 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #2d2d2d !important;
    margin-bottom: 20px !important;
    text-shadow: none !important;
}

.slider-caption p {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.3rem !important;
    color: #2d2d2d !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

/* Botão do slider */
.slider-caption .button {
    background: #00a859 !important;
    color: white !important;
    padding: 16px 40px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.35) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
}

.slider-caption .button:hover {
    background: #008f4a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.5) !important;
}

/* ============================================
   Feature Boxes Modernizados - LEGIBILIDADE MELHORADA
============================================ */
.feature-box h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-size: 1.3rem;
    margin-left: 60px;
}

.feature-box p {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400;
}

.heading-block h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1a1a1a;
}

.heading-block span {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
}

/* ============================================
   WhatsApp Modal Moderno
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 99999;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #fff;
    font-size: 32px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Modal WhatsApp */
.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 25px;
    z-index: 99998;
    background: #fff;
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-modal.active {
    display: block;
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-modal-header h4 {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.whatsapp-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-modal-close:hover {
    transform: rotate(90deg);
}

.whatsapp-modal-body {
    padding: 25px;
}

.whatsapp-modal-body p {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.whatsapp-modal-body textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    min-height: 80px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.whatsapp-modal-body textarea:focus {
    border-color: #25D366;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.whatsapp-modal-body button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.whatsapp-modal-body button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-modal-body button i {
    margin-right: 8px;
}

/* ============================================
   Responsividade
============================================ */
@media (max-width: 991px) {
    .slider-caption h2 {
        font-size: 2rem;
    }
    
    .slider-caption h3 {
        font-size: 1.5rem;
    }
    
    .slider-caption p {
        font-size: 1rem;
    }
    
    .whatsapp-modal {
        width: 90%;
        left: 5%;
        right: 5%;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    #footer {
        padding: 40px 0 0;
    }
    
    #footer .widget {
        margin-bottom: 30px;
    }
    
    .slider-caption {
        padding: 25px;
    }
    
    .slider-caption h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   Botões Modernizados - VERDE PROFISSIONAL
============================================ */
.button, button, input[type="submit"] {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: #00a859;
    color: white !important;
    padding: 14px 35px;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    box-shadow: 0 5px 18px rgba(0, 168, 89, 0.35);
}

.button:hover, button:hover, input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 22px rgba(0, 168, 89, 0.5);
    background: #008f4a;
    color: white !important;
}

.button-3d {
    box-shadow: 0 5px 20px rgba(0, 168, 89, 0.4);
}

.button-3d:hover {
    box-shadow: 0 7px 30px rgba(0, 168, 89, 0.6);
}

/* ============================================
   Formulários Modernizados - MELHOR LEGIBILIDADE
============================================ */
.form-control, .sm-form-control, input[type="text"], 
input[type="email"], input[type="tel"], textarea, select {
    font-family: 'Open Sans', sans-serif;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

.form-control:focus, .sm-form-control:focus, 
input[type="text"]:focus, input[type="email"]:focus, 
input[type="tel"]:focus, textarea:focus, select:focus {
    border-color: #00a859;
    box-shadow: 0 0 0 4px rgba(0, 168, 89, 0.1);
    outline: none;
}

label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

/* ============================================
   Page Title Modernizado
============================================ */
#page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
}

#page-title h1 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

#page-title span {
    color: rgba(255,255,255,0.9);
    font-family: 'Open Sans', sans-serif;
}

/* ============================================
   Cards e Containers
============================================ */
.content-wrap {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
}

/* Melhoria visual geral */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
