/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
:root {
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--cor-fundo);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #222;
}

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

a:hover {
    color: var(--cor-destaque);
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--cor-destaque);
    border-color: var(--cor-destaque);
}

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

.btn-outline-primary:hover {
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

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

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

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

.section-title .subtitle {
    display: inline-block;
    color: var(--cor-primaria);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--cor-primaria);
    margin: 15px auto 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: var(--cor-primaria);
    height: 100%;
    width: 6px;
    display: inline-block;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    animation-delay: -1.1s;
}

.spinner .rect3 {
    animation-delay: -1.0s;
}

.spinner .rect4 {
    animation-delay: -0.9s;
}

.spinner .rect5 {
    animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% { 
        transform: scaleY(0.4);
    }  
    20% { 
        transform: scaleY(1.0);
    }
}

/*--------------------------------------------------------------
# Cookie Notice
--------------------------------------------------------------*/
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px 0;
    z-index: 999;
    display: none;
}

.cookie-notice p {
    margin-bottom: 0;
    font-size: 14px;
}

.cookie-notice a {
    color: var(--cor-destaque);
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    position: relative;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-info ul li {
    margin-right: 20px;
}

.top-info ul li i {
    margin-right: 5px;
}

.top-social ul li a {
    color: #fff;
    font-size: 16px;
    margin-left: 15px;
}

.top-social ul li a:hover {
    color: var(--cor-destaque);
}

.navbar {
    padding: 15px 0;
}

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

.navbar-light .navbar-nav .nav-link {
    color: #444;
    font-weight: 500;
    padding: 8px 15px;
    transition: var(--transition);
}

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

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*--------------------------------------------------------------
# Header Simple (For Policy Pages)
--------------------------------------------------------------*/
.header-simple {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    animation-delay: 0.3s;
}

.hero-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    animation-delay: 0.6s;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    animation-delay: 0.9s;
}

.hero-buttons {
    animation-delay: 1.2s;
}

.info-banner {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.info-card {
    background-color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.info-card .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    color: var(--cor-primaria);
    background-color: rgba(46, 139, 87, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Promo Banner
--------------------------------------------------------------*/
.promo-banner {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    white-space: nowrap;
    padding: 0 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.marquee-content span i {
    margin-right: 10px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-img {
    position: relative;
    margin-bottom: 30px;
}

.about-img .experience {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-img .experience h2 {
    font-size: 42px;
    margin-bottom: 0;
    color: #fff;
}

.about-img .experience span {
    font-size: 15px;
    line-height: 1.2;
}

.about-feature-item {
    display: flex;
    margin-bottom: 25px;
}

.about-feature-item .icon {
    flex: 0 0 50px;
    font-size: 24px;
    color: var(--cor-primaria);
    margin-right: 15px;
}

.about-feature-item .content h5 {
    font-size: 20px;
    margin-bottom: 8px;
}

.about-feature-item .content p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-card {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.service-card .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 36px;
    color: var(--cor-primaria);
    background-color: rgba(46, 139, 87, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .icon {
    background-color: var(--cor-primaria);
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    color: var(--cor-primaria);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-slider {
    overflow: hidden;
    padding: 20px 10px;
}

.testimonial-item {
    padding: 15px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-card .rating {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 20px;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #777;
}

.testimonial-cta {
    padding: 30px;
    background-color: var(--cor-secundaria);
    border-radius: var(--radius);
}

.testimonial-cta h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-item {
    margin-bottom: 30px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-card img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 139, 87, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: #fff;
    font-size: 30px;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

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

.contact-info-item .icon {
    flex: 0 0 50px;
    font-size: 24px;
    color: var(--cor-primaria);
    margin-right: 15px;
}

.contact-info-item .content h5 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-info-item .content p {
    margin-bottom: 0;
}

.contact-info-item .content a {
    color: #333;
}

.contact-info-item .content a:hover {
    color: var(--cor-primaria);
}

.contact-form-box {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

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

.form-control {
    height: auto;
    padding: 12px 15px;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    font-size: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--cor-primaria);
}

.form-select {
    height: auto;
    padding: 12px 15px;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    font-size: 15px;
}

.map-container {
    margin-top: 50px;
}

.map-wrapper {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: #222;
    color: #fff;
}

.footer-top {
    padding: 80px 0 50px;
}

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

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

.footer-widget p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--cor-primaria);
    color: #fff;
}

.widget-title {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
    padding-bottom: 10px;
}

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

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

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

.footer-links li a {
    color: #ccc;
    transition: var(--transition);
}

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

.footer-contact-info p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact-info p i {
    margin-right: 10px;
    color: var(--cor-primaria);
}

.footer-contact-info a {
    color: #ccc;
}

.footer-contact-info a:hover {
    color: var(--cor-primaria);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.copyright {
    color: #ccc;
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: #ccc;
    margin-left: 15px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--cor-primaria);
}

/*--------------------------------------------------------------
# Footer Simple (For Policy Pages)
--------------------------------------------------------------*/
.footer-simple {
    background-color: #f5f5f5;
    padding: 20px 0;
    font-size: 14px;
    margin-top: 50px;
}

.footer-simple ul {
    margin-bottom: 0;
}

.footer-simple ul li a {
    color: #777;
    margin-left: 15px;
}

/*--------------------------------------------------------------
# Back to Top & Whatsapp Float
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    background-color: var(--cor-primaria);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--cor-destaque);
    color: #fff;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 99;
    transition: var(--transition);
}

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

/*--------------------------------------------------------------
# Policy Content
--------------------------------------------------------------*/
.policy-content h2 {
    color: #333;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-content h3 {
    color: #444;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-slide {
        height: 600px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .info-banner {
        margin-top: -50px;
    }
    
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: var(--radius);
        margin-top: 15px;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-slide {
        height: 500px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .info-banner {
        margin-top: 0;
    }
    
    .about-img .experience {
        right: 50%;
        transform: translateX(50%);
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-feature-item .icon {
        flex: 0 0 40px;
        font-size: 20px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .footer-top {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn:last-child {
        margin-left: 0 !important;
    }
} 