
        :root {
            --primary: #E30613;
            --primary-dark: #C00511;
            --primary-light: #FFEAEC;
            --secondary: #333333;
            --secondary-light: #555555;
            --light: #F5F5F5;
            --light-gray: #EEEEEE;
            --gray: #777777;
            --white: #FFFFFF;
            --dark: #222222;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--secondary);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .bg-primary {
            background-color: var(--primary) !important;
        }
        
        .bg-primary-light {
            background-color: var(--primary-light) !important;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .btn {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
        }
        
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: 30px;
            padding: 12px 30px;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
        }
        
        /* Top Bar */
        .top-bar {
            background-color: var(--secondary);
            color: var(--white);
            font-size: 14px;
            padding: 8px 0;
        }
        
        .top-bar a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .top-bar a:hover {
            color: var(--primary);
        }
        
        /* Navbar */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            background-color: var(--white) !important;
        }
        
        .navbar-brand img {
            height: 60px;
            transition: all 0.3s;
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 50px;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--secondary) !important;
            padding: 8px 15px !important;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 15px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-link:hover::before,
        .nav-link.active::before {
            width: calc(100% - 30px);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 10px 0;
            margin-top: 10px;
        }
        
        .dropdown-item {
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://freiosbreque.com.br/wp-content/uploads/2021/03/banner-home.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
            padding: 120px 0;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        /* Section Title */
        .section-title {
            position: relative;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .section-title h2 {
            font-weight: 800;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .section-title.left h2 {
            text-align: left;
        }
        
        .section-title.left h2::after {
            margin: 15px 0 0;
        }
        
        /* Services Section */
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: none;
            height: 100%;
            background-color: var(--white);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-icon {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* About Section */
        /* About Section Styles */
.about-section {
    background-color: #f8f9fa;
}

.about-image-container {
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.feature-list-container {
    margin-top: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.feature-list i {
    color: #e30713;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.section-title h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #e30713;
}
        
        /* Brands Section */
        .brands-section {
            padding: 60px 0;
            background-color: var(--white);
        }
        
        .brand-logo {
            height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        
        .brand-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Testimonials */
        .testimonials-section {
            background-color: var(--light);
        }
        
        .testimonial-card {
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
            height: 100%;
            background-color: var(--white);
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
        }
        
        .rating {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Blog Section */
        .blog-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .blog-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            margin-bottom: 30px;
            height: 100%;
            background-color: var(--white);
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .blog-date {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .blog-title {
            font-size: 1.25rem;
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .blog-card:hover .blog-title {
            color: var(--primary);
        }
        
        .blog-excerpt {
            color: var(--gray);
            margin-bottom: 15px;
        }
        
        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .read-more:hover {
            color: var(--primary-dark);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://freiosbreque.com.br/wp-content/uploads/2021/03/banner-contato.jpg');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: var(--white);
            position: relative;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-section h2 {
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 80px 0 20px;
        }
        
        .footer-logo img {
            height: 60px;
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #BBBBBB;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-contact i {
            color: var(--primary);
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            font-size: 14px;
            color: #BBBBBB;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar {
                padding: 15px 0;
                background-color: var(--white) !important;
            }
            
            .navbar-collapse {
                padding: 20px 0;
            }
            
            .dropdown-menu {
                margin-left: 15px;
                width: calc(100% - 30px);
            }
            
            .hero {
                min-height: auto;
                padding: 120px 0 80px;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .about-content {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .brand-logo {
                height: 40px;
                margin-bottom: 20px;
            }
            
            .footer-links {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 575.98px) {
            .top-bar .col-6 {
                text-align: center !important;
                margin-bottom: 5px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
                bottom: 80px;
                right: 20px;
            }
        }
        .carousel {
    cursor: grab;
    user-select: none; /* Prevent text selection during drag */
}

.carousel.dragging {
    cursor: grabbing;
}

.carousel-inner {
    overflow: visible; /* Ensure no clipping issues */
}

.carousel-item {
    transition: transform 0.6s ease-in-out; /* Smooth transition */
}
/* Modal de Agendamento */
#agendamentoModal .modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#agendamentoModal .modal-header {
    background-color: #e30713;
    color: white;
    border-bottom: none;
}

#agendamentoModal .btn-close {
    filter: invert(1);
}

#agendamentoModal .form-control {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#agendamentoModal .form-control:focus {
    border-color: #e30713;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

#agendamentoModal #successMessage {
    display: flex;
    align-items: center;
    padding: 15px;
}

#agendamentoModal .modal-footer {
    border-top: none;
    padding-top: 0;
}
/* Estilo para os botões de agendamento */
.agendamento-btn, .btn-primary[onclick*="agendamento"] {
    transition: all 0.3s ease;
}

.agendamento-btn:hover, .btn-primary[onclick*="agendamento"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
}