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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            color: #222222;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, rgba(227, 28, 28, 0.03) 1px, transparent 1px),
                linear-gradient(0deg, rgba(227, 28, 28, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 1;
        }

        /* NOVO: Container principal com 80% de largura */
        .main-container {
            max-width: 80%;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(227, 28, 28, 0.5);
            border-radius: 50%;
            animation: float linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        header {
            background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
            padding: 0;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid rgba(227, 28, 28, 0.3);
            z-index: 10;
        }

        .logo-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(227, 28, 28, 0.15), transparent);
            animation: shine 4s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            z-index: 2000;
            animation: modalFadeIn 0.3s ease;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .welcome-modal {
            background: linear-gradient(135deg, #f2f2f2 0%, #fafafa 100%);
            padding: 30px 25px;
            border-radius: 16px;
            max-width: 400px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(227, 28, 28, 0.15);
            animation: modalSlide 0.5s ease;
            border: 1px solid rgba(227, 28, 28, 0.3);
        }

        @keyframes modalSlide {
            from {
                opacity: 0;
                transform: translateY(-80px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .welcome-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #E31C1C, #B91C1C, #E31C1C);
            border-radius: 16px 16px 0 0;
        }

        .welcome-modal-close {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 1.8em;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
            line-height: 1;
            z-index: 10;
        }

        .welcome-modal-close:hover {
            color: #E31C1C;
            transform: rotate(90deg);
        }

        .welcome-modal-icon {
            font-size: 3.2em;
            text-align: center;
            margin-bottom: 15px;
            animation: iconPulse 2s ease infinite;
            filter: drop-shadow(0 0 10px rgba(227, 28, 28, 0.5));
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .welcome-modal h2 {
            font-size: 1.45em;
            text-align: center;
            margin-bottom: 15px;
            color: #E31C1C;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(227, 28, 28, 0.5);
        }

        .welcome-modal-text {
            text-align: center;
            font-size: 1.05em;
            line-height: 1.7;
            color: #444444;
            margin-bottom: 20px;
        }

        .welcome-modal-text strong {
            color: #E31C1C;
            font-size: 1.08em;
            text-shadow: 0 0 10px rgba(227, 28, 28, 0.3);
        }

        .welcome-modal-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.05em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .welcome-modal-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .welcome-modal-btn:hover::before {
            left: 100%;
        }

        .welcome-modal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
        }

        .hero {
            background: linear-gradient(135deg, #fafafa 0%, #f2f2f2 50%, #fafafa 100%);
            padding: 24px 20px 20px;
            text-align: center;
            position: relative;
            z-index: 10;
            border-bottom: 1px solid rgba(227, 28, 28, 0.2);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(227, 28, 28, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 2.15em;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: #E31C1C;
            font-weight: bold;
            animation: slideDown 0.8s ease;
            letter-spacing: 3px;
            position: relative;
            text-shadow: 0 0 30px rgba(227, 28, 28, 0.5);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-description {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1em;
            line-height: 1.7;
            color: #444444;
            animation: fadeInUp 1s ease 0.3s both;
            position: relative;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .image-section {
            padding: 20px 20px;
            background: #ffffff;
            position: relative;
            z-index: 10;
        }

        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(227, 28, 28, 0.1);
            border: 1px solid rgba(227, 28, 28, 0.2);
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 450px;
            background: #ffffff;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.9) contrast(1.1);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: #E31C1C;
            border: 1px solid rgba(227, 28, 28, 0.3);
            width: 55px;
            height: 55px;
            font-size: 26px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .carousel-nav:hover {
            background: rgba(227, 28, 28, 0.2);
            border-color: #E31C1C;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 0 20px rgba(227, 28, 28, 0.4);
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(227, 28, 28, 0.2);
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .carousel-dot.active {
            background: #E31C1C;
            border-color: rgba(227, 28, 28, 0.5);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(227, 28, 28, 0.6);
        }

        .carousel-dot:hover {
            background: rgba(227, 28, 28, 0.6);
            transform: scale(1.2);
        }

        .services-section {
            padding: 50px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
            position: relative;
            z-index: 10;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 1.9em;
            text-align: center;
            color: #E31C1C;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(227, 28, 28, 0.4);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #E31C1C, transparent);
            margin: 15px auto 0;
        }

        .section-subtitle {
            text-align: center;
            color: #444444;
            font-size: 1.05em;
            margin: 12px 0 24px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 12px;
            margin-bottom: 28px;
        }

        .service-card {
            background: linear-gradient(135deg, #f2f2f2 0%, #fafafa 100%);
            padding: 18px 20px;
            border-radius: 12px;
            border: 1px solid rgba(227, 28, 28, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(227, 28, 28, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-3px);
            border-color: #E31C1C;
            box-shadow: 0 10px 30px rgba(227, 28, 28, 0.2);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 2.2em;
            flex-shrink: 0;
            filter: grayscale(1) brightness(0.8);
        }

        .service-content {
            flex: 1;
        }

        .service-card h3 {
            font-size: 1.15em;
            color: #E31C1C;
            margin-bottom: 6px;
            font-weight: bold;
        }

        .service-card p {
            color: #444444;
            font-size: 1em;
            line-height: 1.7;
        }

        .extra-service {
            display: none;
        }

        .toggle-services-btn {
            background: linear-gradient(135deg, #E31C1C 0%, #B91C1C 100%);
            color: #ffffff;
            border: none;
            padding: 14px 40px;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(227, 28, 28, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .toggle-services-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(227, 28, 28, 0.5);
        }

        .toggle-services-btn span {
            display: inline-block;
            transition: transform 0.3s ease;
            margin-left: 8px;
        }

        .toggle-services-btn.active span {
            transform: rotate(180deg);
        }

        .mercadolivre-badge {
            background: linear-gradient(135deg, #f2f2f2 0%, #fafafa 100%);
            border-radius: 16px;
            padding: 20px 30px;
            border: 2px solid rgba(227, 28, 28, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }

        .mercadolivre-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border-color: #E31C1C;
        }

        .mercadolivre-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(227, 28, 28, 0.1) 0%, transparent 70%);
            animation: badgePulse 4s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .badge-content {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .ml-logo-image {
            width: 80px;
            height: auto;
            flex-shrink: 0;
        }

        .badge-text h3 {
            font-size: 1.28em;
            color: #E31C1C;
            margin-bottom: 6px;
            font-weight: bold;
        }

        .badge-text p {
            color: #444444;
            font-size: 1em;
            line-height: 1.7;
        }

        .video-section {
            margin-top: 16px;
            background: linear-gradient(135deg, #f2f2f2 0%, #fafafa 100%);
            border-radius: 16px;
            padding: 20px 20px 24px;
            border: 1px solid rgba(227, 28, 28, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .video-title {
            font-size: 1.8em;
            text-align: center;
            color: #E31C1C;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .video-caption {
            margin-top: 12px;
            margin-bottom: 4px;
            text-align: center;
            color: #444444;
            font-size: 1em;
            line-height: 1.7;
            padding: 0 10px;
        }

        .video-section-title {
            font-size: 1.9em;
            text-align: center;
            color: #E31C1C;
            margin-top: 34px;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
            padding-top: 26px;
            border-top: 1px solid rgba(227, 28, 28, 0.15);
        }

        .video-section-description {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1em;
            line-height: 1.7;
            color: #444444;
            text-align: center;
            padding: 0 6px;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            border-radius: 12px;
            overflow: hidden;
            background: #ffffff;
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .location-section {
            padding: 50px 20px 60px;
            background: linear-gradient(135deg, #fafafa 0%, #f2f2f2 100%);
            position: relative;
            z-index: 10;
        }

        .location-grid {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            align-items: start;
        }

        .map-box {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(227, 28, 28, 0.2);
            height: 280px;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            border: none;
            position: relative;
        }

        /* NOVO: Estilizar barra de pesquisa do Google Maps com cor amarela */
        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(0.2) contrast(1.1) sepia(0.3) saturate(1.5) hue-rotate(20deg);
        }

        /* Adicionar borda amarela ao mapa */
        .map-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid rgba(227, 28, 28, 0.4);
            border-radius: 12px;
            pointer-events: none;
        }

        .contact-info {
            background: linear-gradient(135deg, #f2f2f2 0%, #fafafa 100%);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(227, 28, 28, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Bloco que junta o texto do endereço com o mini-mapa, lado a lado */
        .location-with-map {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: flex-start !important;
            flex-wrap: nowrap !important;
            gap: 16px !important;
            width: 100%;
        }

        .location-text {
            flex: 0 1 auto !important;
            min-width: 0 !important;
        }

        .location-text p {
            margin: 0;
        }

        /* Mini-mapa: pequeno, arredondado, sem "botão" do Google visível */
        .mini-map {
            position: relative !important;
            width: 80px !important;
            height: 80px !important;
            min-width: 80px !important;
            max-width: 80px !important;
            flex: 0 0 80px !important;
            border-radius: 14px !important;
            overflow: hidden !important;
            border: 1px solid rgba(227, 28, 28, 0.25);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .mini-map iframe {
            position: absolute !important;
            top: -34px !important;
            left: -20px !important;
            width: 130px !important;
            height: 150px !important;
            max-width: none !important;
            border: none !important;
            pointer-events: none !important; /* remove a interação/"botão" do Google embutido */
        }

        /* Área inteira clicável, sem aparência de botão, abre o mapa em nova aba */
        .mini-map-link {
            position: absolute !important;
            inset: 0 !important;
            display: block !important;
        }

        @media (max-width: 480px) {
            .mini-map,
            .mini-map {
                width: 62px !important;
                height: 62px !important;
                min-width: 62px !important;
                max-width: 62px !important;
                flex: 0 0 62px !important;
            }

            .mini-map iframe {
                top: -30px !important;
                left: -18px !important;
                width: 105px !important;
                height: 128px !important;
            }
        }

        .contact-title {
            font-size: 1.6em;
            color: #E31C1C;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 0 15px rgba(227, 28, 28, 0.3);
        }

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

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            font-size: 2em;
            flex-shrink: 0;
            filter: grayscale(1) brightness(0.8);
        }

        .contact-details h3 {
            font-size: 1.1em;
            color: #E31C1C;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .contact-details p,
        .contact-details a {
            color: #444444;
            font-size: 1.05em;
            line-height: 1.6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #E31C1C;
        }

        .contact-details .small-text {
            font-size: 0.85em;
            color: #888;
            margin-top: 3px;
        }

        .cta-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
            position: relative;
            z-index: 10;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, #f2f2f2 0%, #fafafa 100%);
            padding: 50px 40px;
            border-radius: 16px;
            border: 2px solid rgba(227, 28, 28, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(227, 28, 28, 0.1) 0%, transparent 70%);
            animation: ctaGlow 6s ease-in-out infinite;
        }

        @keyframes ctaGlow {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        .cta-title {
            font-size: 1.9em;
            color: #E31C1C;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(227, 28, 28, 0.5);
            position: relative;
            z-index: 1;
        }

        .cta-description {
            font-size: 1em;
            line-height: 1.7;
            color: #444444;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 45px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.15em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
            text-decoration: none;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px rgba(37, 211, 102, 0.7);
        }

        .cta-icon {
            width: 26px;
            height: 26px;
            fill: white;
        }
    
        .header-foto {
            height: 200px;
            background: url("desmanche.jpg") center center / contain no-repeat;
            background-color: #ffffff;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .header-foto::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(227, 28, 28, 0.1) 0%, transparent 50%, rgba(227, 28, 28, 0.1) 100%);
            pointer-events: none;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 9999;
            animation: pulse 2s infinite;
            text-decoration: none;
            border: 2px solid rgba(37, 211, 102, 0.3);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.3);
            }
            50% {
                transform: scale(1.08);
                box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7), 0 0 60px rgba(37, 211, 102, 0.5);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.15) !important;
            box-shadow: 0 12px 45px rgba(37, 211, 102, 0.8), 0 0 80px rgba(37, 211, 102, 0.6) !important;
        }

        .whatsapp-float svg {
            width: 38px;
            height: 38px;
            fill: #fff;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        @media (max-width: 1400px) {
            .main-container {
                max-width: 90%;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                max-width: 100%;
            }

            .header-foto {
                height: 160px;
            }

            .hero {
                padding: 30px 20px;
            }

            .hero h1 {
                font-size: 1.75em;
                margin-bottom: 15px;
                letter-spacing: 2px;
            }

            .hero-description {
                font-size: 1em;
            }

            .image-section {
                padding: 30px 20px;
            }

            .services-section {
                padding: 35px 20px;
            }

            .section-title {
                font-size: 1.6em;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .service-card {
                padding: 15px 18px;
                gap: 15px;
            }

            .service-icon {
                font-size: 2em;
            }

            .service-content h3 {
                font-size: 1.08em;
            }

            .service-content p {
                font-size: 0.95em;
            }

            .mercadolivre-badge {
                padding: 18px 22px;
            }

            .badge-content {
                flex-direction: row;
                text-align: left;
                gap: 15px;
            }

            .ml-logo-image {
                width: 65px;
            }

            .badge-text h3 {
                font-size: 1.18em;
            }

            .badge-text p {
                font-size: 0.95em;
            }

            .video-section {
                padding: 15px;
                margin-top: 20px;
            }

            .location-section {
                padding: 35px 20px;
            }

            .location-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .map-box {
                height: 250px;
            }

            .contact-info {
                padding: 25px;
            }

            .contact-title {
                font-size: 1.4em;
            }

            .cta-section {
                padding: 40px 20px;
            }

            .cta-container {
                padding: 35px 25px;
            }

            .cta-title {
                font-size: 1.6em;
            }

            .cta-description {
                font-size: 1em;
            }

            .cta-button {
                padding: 16px 35px;
                font-size: 1em;
            }

            .carousel-wrapper {
                height: 320px;
            }

            .carousel-nav {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .carousel-prev {
                left: 12px;
            }

            .carousel-next {
                right: 12px;
            }

            .whatsapp-float {
                width: 58px;
                height: 58px;
                bottom: 22px;
                right: 22px;
            }

            .whatsapp-float svg {
                width: 32px;
                height: 32px;
            }

            .welcome-modal {
                padding: 28px 22px;
                max-width: 360px;
            }

            .welcome-modal h2 {
                font-size: 1.3em;
            }

            .welcome-modal-icon {
                font-size: 2.8em;
            }

            .welcome-modal-text {
                font-size: 0.96em;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 25px 15px;
            }

            .hero h1 {
                font-size: 1.55em;
                margin-bottom: 12px;
            }

            .hero-description {
                font-size: 0.96em;
            }

            .image-section {
                padding: 25px 15px;
            }

            .services-section {
                padding: 30px 15px;
            }

            .section-title {
                font-size: 1.45em;
            }

            .service-card {
                padding: 14px 16px;
                gap: 12px;
            }

            .service-icon {
                font-size: 1.8em;
            }

            .mercadolivre-badge {
                padding: 15px 18px;
            }

            .ml-logo-image {
                width: 55px;
            }

            .badge-text h3 {
                font-size: 1.08em;
            }

            .badge-text p {
                font-size: 0.9em;
            }

            .video-section {
                padding: 12px;
                margin-top: 15px;
            }

            .location-section {
                padding: 30px 15px;
            }

            .map-box {
                height: 220px;
            }

            .contact-info {
                padding: 20px;
            }

            .contact-title {
                font-size: 1.25em;
            }

            .contact-item {
                gap: 15px;
            }

            .contact-icon {
                font-size: 1.7em;
            }

            .cta-section {
                padding: 35px 15px;
            }

            .cta-container {
                padding: 30px 20px;
            }

            .cta-title {
                font-size: 1.45em;
            }

            .cta-description {
                font-size: 0.96em;
            }

            .cta-button {
                padding: 14px 30px;
                font-size: 0.95em;
            }

            .carousel-wrapper {
                height: 250px;
            }

            .whatsapp-float {
                width: 52px;
                height: 52px;
            }

            .whatsapp-float svg {
                width: 30px;
                height: 30px;
            }

            .welcome-modal {
                padding: 25px 18px;
                max-width: 340px;
            }

            .welcome-modal h2 {
                font-size: 1.25em;
            }

            .welcome-modal-text {
                font-size: 0.93em;
            }

            .welcome-modal-icon {
                font-size: 2.5em;
            }

            .welcome-modal-btn {
                font-size: 0.98em;
                padding: 14px;
            }
        }
