/* 
* Modulus - Estilos principais
* Desenvolvido com HTML5, CSS3 e Bootstrap 5
*/

:root {
    --primary-color: #139877;
    --secondary-color: #FFA500;
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --dark-gray: #666666;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Estilos Gerais */
body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #008c44;
    border-color: #008c44;
}

.btn-schedule {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-schedule:hover {
    background-color: #e69500;
    border-color: #e69500;
    color: var(--light-color);
}

.btn-access {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.btn-access:hover {
    background-color: #008c44;
    border-color: #008c44;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

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

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header */
.site-header {
    padding: 15px 0;
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img.logo {
    max-height: 50px;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--light-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link i {
    margin-right: 5px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.navbar-toggler {
    border-color: var(--light-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-dots.svg');
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-content {
    padding: 20px;
    text-align: center;
}

.feature-content h3 {
    margin-bottom: 15px;
}

/* Tabs Section */
.tabs-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.nav-tabs {
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
}

.nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tab-content {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Virtual Secretary Section */
.virtual-secretary-section {
    padding: 80px 0;
}

.secretary-feature {
    text-align: center;
    margin-bottom: 30px;
}

.secretary-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 166, 81, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* YouTube Section */
.youtube-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

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

.youtube-placeholder {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-title {
    margin-bottom: 50px;
    text-align: center;
}

.contact-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-form .form-control {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: 150px;
}

.contact-form .form-text {
    color: var(--dark-gray);
    font-style: italic;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 70px 0 0;
}

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

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-info li div {
    flex: 1;
}

.contact-info li h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info li p {
    margin: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
}

.copyright-text {
    margin: 0;
}

.footer-bottom a {
    color: var(--secondary-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* Badges */
.badge-feature {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-title {
    margin-bottom: 15px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Utilitários */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-white {
    color: var(--light-color) !important;
}

.bg-light-gray {
    background-color: var(--gray-color) !important;
}

/* Processo Steps */
.process-steps {
    position: relative;
    padding-left: 20px;
}

.process-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--primary-color);
}

.process-step:last-child:before {
    height: 50%;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    z-index: 1;
}

.step-content h5 {
    margin-bottom: 10px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

/* CTA Box */
.cta-box {
    /* background-color: rgba(0, 166, 81, 0.1); */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.cta-box h5 {
    margin-bottom: 15px;
}

/* Highlight Box */
.highlight-box {
    /* background-color: rgba(255, 165, 0, 0.1); */
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
}

.highlight-box h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Testimonial */
.testimonial-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.testimonial-content:before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin-bottom: 5px;
}

.testimonial-info p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}