/* Variáveis */
:root {
    --primary-color: #0064ff;
    --secondary-color: #6c757d;
    --accent-color: #ff6b00;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #212529;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Estilos Gerais */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--white);
}

#preloader .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    border: 3px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 70px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-weight: 500;
    padding: 10px 15px !important;
    color: var(--text-color) !important;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.hero-btns .btn {
    margin-right: 15px;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-btns .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-btns .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-btns .btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
}

.hero-btns .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Features Section */
.features {
    background-color: var(--white);
}

.feature-box {
    padding: 30px;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

.service-box {
    padding: 30px;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-box .read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}

.service-box .read-more i {
    font-size: 1rem;
    margin-left: 5px;
    transition: var(--transition);
}

.service-box:hover .read-more i {
    transform: translateX(5px);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact-info {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid #dee2e6;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,86,179,0.25);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
}

.footer-newsletter button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--white);
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Responsividade */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-info, .footer-links, .footer-newsletter {
        margin-bottom: 30px;
    }
}

/* Animações AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Estilos para Google Ads */
.google-ads-container {
    margin: 30px 0;
    text-align: center;
}

.google-ads-label {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Estilos para elementos de conversão */
.conversion-element {
    position: relative;
    overflow: hidden;
}

.conversion-element::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: var(--transition);
}

.conversion-element:hover::after {
    opacity: 1;
}

/* Estilos para elementos destacados */
.highlight-element {
    position: relative;
    z-index: 1;
}

.highlight-element::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.highlight-element:hover::before {
    opacity: 1;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    right: 30px;
    bottom: 90px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 99;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 30px;
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
}

/* Ajuste para o botão em telas menores */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 80px;
    }

    .whatsapp-button i {
        font-size: 25px;
    }

    .whatsapp-text {
        display: none;
    }
}

/* Estilos para páginas de serviços */
.service-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../images/hero-bg.jpg") center/cover;
    color: #fff;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.service-details {
    padding: 80px 0;
    background-color: #f3f5fa;
}

.service-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.service-content h2 {
    color: #37517e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.service-content h3 {
    color: #37517e;
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.service-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.service-content ul li {
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: #37517e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-card p {
    color: #444;
    margin-bottom: 25px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.contact-info li {
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    color: #47b2e4;
    font-size: 18px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsividade */
@media (max-width: 991px) {
    .service-hero {
        padding: 100px 0 40px;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .service-hero p {
        font-size: 18px;
    }

    .service-sidebar {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 32px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h2 {
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 22px;
    }
} 