 :root {
            --primary-color: #de2623;
            --primary-dark: #c11f1c;
            --secondary-color: #333;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--secondary-color);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .phone {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .phone-icon {
            background-color: var(--primary-color);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
            font-size: 18px;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(222, 38, 35, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(222, 38, 35, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(222, 38, 35, 0);
            }
        }
        
        .phone-number {
            font-weight: 600;
            font-size: 18px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .phone:hover .phone-icon {
            animation: none;
            transform: scale(1.1);
            background-color: var(--primary-dark);
        }
        
        .phone:hover .phone-number {
            color: var(--primary-dark);
        }
        
        /* Hero Banner */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                        url('../img/varal-tradicional-c-suporte/varal-tradicional1.jpeg') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            margin-top: 90px;
            position: relative;
            color: var(--white);
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero h2 {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 30px;
            line-height: 1.5;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(222, 38, 35, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }
        
        /* Why Choose Us */
        .section {
            padding: 80px 5%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(222, 38, 35, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 30px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background-color: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .feature-card p {
            color: var(--gray-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Services */
        .services {
            background-color: #f8f9fa;
        }
        
        .service-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .service-tab {
            padding: 10px 25px;
            background-color: var(--white);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .service-tab.active, .service-tab:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .popular-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .service-content p {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .service-features {
            margin-bottom: 25px;
        }
        
        .service-features li {
            list-style: none;
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
            color: var(--secondary-color);
        }
        
        .service-features li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .service-btn {
            width: 100%;
            display: block;
            text-align: center;
        }
        
        /* Coverage Area */
        .coverage {
            text-align: center;
        }
        
        .neighborhoods {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }
        
        .neighborhood {
            background-color: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .neighborhood:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .neighborhood i {
            margin-right: 8px;
            font-size: 14px;
        }
        
        /* Gallery */
        .gallery {
            background-color: #f8f9fa;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: var(--white);
            transition: bottom 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            bottom: 0;
        }
        
        .gallery-overlay h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Testimonials */
        .testimonials {
            position: relative;
            background-color: #f8f9fa;
        }
        
        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .testimonial-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--primary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.6;
            position: relative;
        }
        
        .testimonial-text:before, .testimonial-text:after {
            content: '"';
            font-size: 24px;
            color: var(--primary-color);
            opacity: 0.5;
        }
        
        .testimonial-text:before {
            margin-right: 5px;
        }
        
        .testimonial-text:after {
            margin-left: 5px;
        }
        
        .client-name {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .client-location {
            color: var(--primary-color);
            font-size: 0.9rem;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        /* Videos */
        .video-section {
            background-color: #f8f9fa;
        }
        
        .video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .video-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .video-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .video-thumbnail {
            position: relative;
            height: 200px;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(222, 38, 35, 0.8);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .video-item:hover .play-btn {
            background-color: var(--primary-color);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-title {
            padding: 15px;
            background-color: var(--white);
        }
        
        .video-title h3 {
            font-size: 1.1rem;
            color: var(--dark-color);
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary-color);
        }
        
        .faq-question {
            padding: 15px 20px;
            background-color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f8f9fa;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 15px 20px;
            max-height: 500px;
        }
        
        /* CTA */
        .cta {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 60px 5%;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/varal-tradicional/varal-tradicional2.jpeg') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 1;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn {
            background-color: var(--white);
            color: var(--primary-color);
            font-size: 1.1rem;
            padding: 15px 40px;
            border: 2px solid var(--white);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .cta-btn:hover {
            color: var(--white);
        }
        
        .cta-btn:hover:before {
            left: 0;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 60px 5% 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-about p {
            color: #adb5bd;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .contact-info {
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(222, 38, 35, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .contact-text p, .contact-text a {
            color: #adb5bd;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--primary-color);
        }
        
        .footer-links li {
            list-style: none;
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 12px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse-whatsapp 2s infinite;
        }
        
        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            background-color: #128C7E;
            animation: none;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate {
            opacity: 0;
        }
        
        .animated {
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero h2 {
                font-size: 1.3rem;
            }
            
            .testimonial-slider {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 15px 5%;
            }
            
            .logo img {
                height: 40px;
            }
            
            .phone-number {
                font-size: 16px;
            }
            
            .hero {
                height: auto;
                padding: 100px 5% 80px;
                text-align: center;
            }
            
            .hero-content {
                margin: 0 auto;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero h2 {
                font-size: 1.1rem;
            }
            
            .btn {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 0 auto 15px !important;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .testimonial-slider {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .phone-number {
                display: none;
            }
            
            .section {
                padding: 60px 5%;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .neighborhood {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }
        }

.neighborhood-link {
    color: #777777; /* Cinza médio */
    text-decoration: none; /* Remove o sublinhado */
    transition: color 0.2s ease; /* Transição suave para o hover */
}

.neighborhood-link:hover {
    color: #ffffff; /* Branco no hover */
    text-decoration: none; /* Remove sublinhado (opcional) */
}

/* (Opcional) Se quiser que o ícone também mude para branco no hover */
.neighborhood:hover i.fas {
    color: #ffffff; /* Ícone branco no hover */
}