    :root {
            --primary: #E74C3C;
            --secondary: #C0392B;
            --dark-bg: #121212;
            --card-bg: #1E1E1E;
            --text-color: #FFFFFF;
            --light-gray: #ECF0F1;
            --border-color: #333;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            max-width: 100%;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            position: relative;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--card-bg);
        }

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

        header {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/imagem-barbearia.jpg') no-repeat center center/cover;
            color: white;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 1rem;
            width: 100vw;
        }

        header::before {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--card-bg);
            clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
            width: 100%;
            padding: 0 20px;
        }

        .logo-container img {
            max-width: 180px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
            animation: pulse 2s infinite;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        header h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            color: var(--primary);
            animation: fadeInDown 1s ease-out;
        }

        header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            max-width: 600px;
            margin: 0 auto 2rem;
            color: var(--light-gray);
            animation: fadeIn 1.5s ease-out 0.3s both;
            padding: 0 20px;
        }

        .btn-agendar {
            display: inline-block;
            background-color: var(--primary);
            color: var(--text-color);
            padding: clamp(10px, 3vw, 15px) clamp(20px, 5vw, 35px);
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: clamp(1rem, 2vw, 1.1rem);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
            position: relative;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn-agendar:hover {
            background-color: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
        }

        .scissors-animation {
            position: absolute;
            top: 20%;
            left: 10%;
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: rgba(231, 76, 60, 0.6);
            animation: float 6s ease-in-out infinite;
            opacity: 0;
            animation-delay: 1s;
        }

        .razor-animation {
            position: absolute;
            top: 60%;
            right: 15%;
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            color: rgba(231, 76, 60, 0.6);
            animation: float 8s ease-in-out infinite;
            opacity: 0;
            animation-delay: 1.5s;
        }

        .comb-animation {
            position: absolute;
            top: 40%;
            right: 20%;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: rgba(231, 76, 60, 0.6);
            animation: float 7s ease-in-out infinite reverse;
            opacity: 0;
            animation-delay: 2s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        section {
            padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
            position: relative;
            background-color: var(--card-bg);
            width: 100%;
        }

        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: clamp(2rem, 4vw, 3rem);
            color: var(--primary);
            position: relative;
            width: 100%;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 10px auto;
        }

        #sobre {
            background-color: var(--card-bg);
        }

        .sobre-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: clamp(1.5rem, 3vw, 3rem);
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .sobre-img {
            flex: 1;
            min-width: 300px;
            max-width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--primary);
        }

        .sobre-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
            display: block;
        }

        .sobre-img:hover img {
            transform: scale(1.05);
        }

        .sobre-texto {
            flex: 1;
            min-width: 300px;
            text-align: center;
            padding: 0 20px;
        }

        .sobre-texto h3 {
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .sobre-texto p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: var(--light-gray);
            text-align: center;
        }

        #cortes {
            background-color: var(--dark-bg);
        }

        .cortes-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .corte {
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .corte-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .corte-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .corte:hover .corte-img img {
            transform: scale(1.1);
        }

        .corte-info {
            padding: 20px;
            text-align: center;
        }

        .corte:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
            border-color: var(--primary);
        }




        .corte-info h3 {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .corte-info p {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }

        .corte-preco {
            font-weight: bold;
            color: var(--primary);
            font-size: clamp(1rem, 2vw, 1.2rem);
        }

        #localizacao {
            background-color: var(--card-bg);
        }

        .localizacao-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: clamp(1.5rem, 3vw, 3rem);
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .mapa {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--primary);
        }

        .mapa iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .localizacao-info {
            flex: 1;
            min-width: 300px;
            text-align: center;
            padding: 0 20px;
        }

        .localizacao-info h3 {
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            justify-content: center;
            text-align: center;
            flex-direction: column;
        }

        .info-icon {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--primary);
            margin-right: 0;
            margin-bottom: 0.5rem;
            min-width: 30px;
        }

        .info-text h4 {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        .info-text p {
            color: var(--light-gray);
            line-height: 1.6;
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-align: center;
        }

        #contato {
            background-color: var(--dark-bg);
        }

        .contato-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(1rem, 2vw, 2rem);
            width: 100%;
            padding: 0 20px;
        }

        .contato-info {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .contato-info h3 {
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .contato-info p {
            color: var(--light-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: clamp(0.95rem, 2vw, 1rem);
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--text-color);
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px);
            background-color: var(--text-color);
            color: var(--primary);
        }

        #cta {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('../img/imagem-barbearia.jpg') no-repeat center center/cover;
            padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
            text-align: center;
            color: white;
            position: relative;
            width: 100%;
        }


        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            padding: 0 20px;
        }

        .cta-container h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .cta-container p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        footer {
            background-color: var(--card-bg);
            color: var(--text-color);
            text-align: center;
            padding: clamp(2rem, 3vw, 3rem) clamp(1rem, 3vw, 2rem);
            border-top: 1px solid var(--primary);
            width: 100%;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: clamp(1rem, 2vw, 2rem);
            text-align: center;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
            padding: 0 15px;
        }

        .footer-col h3 {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .footer-col p,
        .footer-col a {
            color: var(--light-gray);
            margin-bottom: 0.8rem;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .copyright {
            margin-top: clamp(2rem, 3vw, 3rem);
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: clamp(0.85rem, 1.8vw, 1rem);
            text-align: center;
            width: 100%;
        }

        .corte-link {
            display: block;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }

        .corte-link:hover {
            opacity: 0.9;
        }
        .corte:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
            border-color: var(--primary);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: clamp(50px, 8vw, 60px);
            height: clamp(50px, 8vw, 60px);
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 100;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .text-animate {
            animation: textFadeIn 1s ease-out forwards;
            opacity: 0;
        }

        @keyframes textFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-delay-100 {
            animation-delay: 0.1s;
        }

        .animate-delay-200 {
            animation-delay: 0.2s;
        }

        .animate-delay-300 {
            animation-delay: 0.3s;
        }

        .animate-delay-400 {
            animation-delay: 0.4s;
        }

        .animate-delay-500 {
            animation-delay: 0.5s;
        }

        @media (max-width: 768px) {

            .sobre-container,
            .localizacao-container {
                flex-direction: column;
            }

            .sobre-texto,
            .localizacao-info,
            .contato-info {
                text-align: center;
            }

            .info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
            }

            .footer-col {
                text-align: center;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 480px) {

            .scissors-animation,
            .razor-animation,
            .comb-animation {
                display: none;
            }

            header h1 {
                font-size: 2rem;
            }

            header p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .sobre-texto h3,
            .localizacao-info h3,
            .contato-info h3 {
                font-size: 1.3rem;
            }

            .cortes-container {
                grid-template-columns: 1fr;
            }
        }

        .text-typing {
            overflow: hidden;
            border-right: .15em solid var(--primary);
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: .15em;
            animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
        }

        @keyframes typing {
            from {
                width: 0
            }

            to {
                width: 100%
            }
        }

        @keyframes blink-caret {

            from,
            to {
                border-color: transparent
            }

            50% {
                border-color: var(--primary)
            }
        }