.hero {
            background-image: url("../../img/banner/s-1.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            padding: 140px 20px;
            text-align: center;
            color: #000000;
        }

        /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", sans-serif;
        }

        body {
            background: #ffffff;
            color: #111;
            overflow-x: hidden;
        }

        /* ANIMAÇÕES GLOBAIS */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse-stats {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }


        .badge {
            background: #ffe5d3;
            color: #ff7a18;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 30px;
        }

        .badge::before {
            content: "";
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: #ff7a18;
        }

        .hero p {
            max-width: 720px;
            margin: 0 auto 40px;
            font-size: 18px;
            color: #000000;
            font-weight: 500;
            /* bold */
            letter-spacing: 0.5px;
        }

        /* BOTÕES */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .btn-primary,
        .btn-secondary,
        .btn-white {

            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border-radius: 100px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff7a18, #ff9a3d);
            color: #fff !important;
            padding: 15px 32px;
            border-radius: 12px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(255, 122, 24, 0.3);
            border-radius: 100px;
            font-weight: 700;
            /* bold */
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(255, 122, 24, 0.45);
            border-radius: 100px;
            color: #fff !important
        }

        .btn-secondary {
            border: 1px solid #ddd;
            padding: 15px 32px;
            border-radius: 12px;
            text-decoration: none;
            color: #000000;
            font-weight: 700;
            /* bold */
            letter-spacing: 0.5px;
        }

        .btn-secondary:hover {
            background: #f7f7f7;
            transform: translateY(-2px);
            border-radius: 100px;
        }

        /* INFO HERO */
        .hero-info {
            display: flex;
            justify-content: center;
            gap: 50px;
            color: #000000;
            font-size: 15px;
        }

        .hero-info div {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* SERVICES */
        .services {
            padding: 120px 20px;
            text-align: center;
        }

        .section-tag {
            color: #ff7a18;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .services h2 {
            font-size: 44px;
            margin: 20px 0;
        }

        .section-desc {
            max-width: 600px;
            margin: 0 auto 70px;
            color: #000000;
        }

        /* GRID */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: auto;
        }

        .service-card {
            text-align: center;
            padding: 35px 30px;
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(255, 122, 24, 0.08),
                    rgba(255, 154, 61, 0.08));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
        }

        /* ÍCONE */
        .service-icon {
            font-size: 44px;
            color: #ff7a18;
            margin-bottom: 22px;
            display: inline-block;
            transition: transform 0.5s ease, color 0.5s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.25) rotate(8deg);
            color: #ff9a3d;
        }

        /* TEXTO */
        .service-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.5;
        }


        /* WHY US */
        /* WHY US */
        .why-us {
            background: linear-gradient(180deg, #e7e7e7, #e7e7e7);
            padding: 120px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            max-width: 1900px;
            margin: auto;

            align-items: center;
            /* centraliza verticalmente */
            justify-items: center;
            /* centraliza horizontalmente */
        }

        /* TEXTO */
        .why-text {
            text-align: center;
            max-width: 600px;
        }

        .why-text h2 {
            font-size: 42px;
            margin: 20px 0;
        }

        .why-text ul {
            margin-top: 30px;
            list-style: none;
            padding: 0;
        }

        .why-text li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* centraliza cada item */
            gap: 10px;

        }

        .why-text li::before {
            content: "✔";
            color: #ff7a18;
        }


        /* STATS */
        .why-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            justify-items: center;
            /* centraliza os cards */
        }

        .stat {
            background: #ffffff;
            padding: 35px;
            border-radius: 20px;
            font-size: 36px;
            font-weight: 800;
            color: #ff7a18;
            text-align: center;
            animation: pulse-stats 3s infinite;

            width: 100%;
            max-width: 260px;
            /* mantém padrão visual */
        }

        .stat span {
            display: block;
            font-size: 15px;
            color: #000;
            margin-top: 5px;
        }


        /* CTA */
        .cta {
            background: linear-gradient(135deg, #ff7a18, #ff9a3d);
            color: #000000;
            text-align: center;
            padding: 80px 20px;
            border-radius: 0px;
            margin: 0px 0px;
            box-shadow: 0 40px 80px rgba(255, 122, 24, 0.4);
        }

        .cta h2 {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 620px;
            margin: auto;
            opacity: 0.95;
        }

        .btn-white {
            display: inline-block;
            margin-top: 35px;
            background: #fff;
            color: #111;
            padding: 15px 34px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 100px;
            letter-spacing: 0.5px;
        }

        .btn-white:hover {
            transform: translateY(-4px);
        }

        .cta-contact {
            margin-top: 5px;
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 25px;
            opacity: 0.95;
        }

        /* RESPONSIVO */
        @media (max-width: 900px) {
            .why-us {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 42px;
            }
        }

        .service-card {
            text-align: center;
            /* centraliza conteúdo do card */
        }

        .service-card::before {
            margin: 0 auto 20px auto;
            /* centraliza o ícone */
        }

        .footer {
            background: #000000;
            color: #cbd5e1;
            padding: 60px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
        }

        .footer-col h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-col ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #f88538;
        }

        .footer-logo {
            max-width: 160px;
            margin-bottom: 20px;
        }

        .footer-social a {
            font-size: 20px;
            margin-right: 12px;
            color: #cbd5e1;
            transition: color 0.3s, transform 0.3s;
        }

        .footer-social a:hover {
            color: #f88538;
            transform: translateY(-3px);
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-bottom {
            background: #020617;
            color: #94a3b8;
            text-align: center;
            padding: 15px;
            font-size: 14px;
        }