
:root {
    --primary-orange: #F26B35;
    --primary-black: #212121;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #e5762e;
    border-color: #e5762e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,134,52,0.4);
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,134,52,0.4);
}

.btn:focus,
.btn:active {
  color: white !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Correção específica para botões com contorno azul */
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: #e5762e !important;
  background-color: transparent !important;
  border-color: #e5762e !important;
}

/* Correção específica para botões com contorno branco */
.btn-outline-light:focus,
.btn-outline-light:active {
  color: #fff !important;
  background-color: transparent !important;
  border-color: #fff !important;
}

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

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

.navbar {
    background-color: var(--white) !important;
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-orange) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 15px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-black) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, #4a474a 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="rgba(245,134,52,0.1)" points="1000,100 1000,0 0,0 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 6.5rem;
    padding-top: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 10px;
}

.promo-carousel {
    background-color: var(--primary-orange);
    color: white;
    padding: 15px 0;
}

.carousel-item {
    text-align: center;
}

.promo-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.service-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-orange), #ffffff);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-btn {
    width: 100%;
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-gray) 100%);
}

.about-stats {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background: var(--primary-orange);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--primary-black);
    color: white;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 0 5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    flex-grow: 1;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-orange);
}

.testimonial-rating {
    color: #ffc107;
    margin: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: auto;  
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e5762e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

footer {
    background-color: var(--primary-black);
    color: white;
    padding: 60px 0 30px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #ccc;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

@keyframes pulse {
    0% { box-shadow: 0 5px 20px rgba(245,134,52,0.4); }
    50% { box-shadow: 0 5px 30px rgba(245,134,52,0.8); }
    100% { box-shadow: 0 5px 20px rgba(245,134,52,0.4); }
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-black);
    color: white;
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .hero-slide {
        height: 80vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
   
    .service-card {
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        margin: 0 5px;
        height: auto;
        min-height: 280px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .navbar-mobile {
        text-align: center;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }
}

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5762e;
}