    /* Resetando estilos padrão */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Corpo */
    body {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        line-height: 1.6;
        background-color: #f4f4f4;
        color: #333;
    }

    /* Cabeçalho */
    header {
        background: linear-gradient(100deg, #FF6347, #FFD700);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: 150px;
    }

    /* Logo do cabeçalho */
    header .logo .logoimg {
        height: 100px;
        transition: transform 0.3s ease;
        width: 150px;
    }

    header .logo .logoimg:hover {
        transform: scale(1.05);
    }

    /* Menu de navegação */
    header nav ul {
        list-style: none;
        display: flex;
        justify-content: end;
        font-weight: 300;
    }

    header nav ul li {
        margin: -20px 50px;
        position: relative;
    }


    header nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 1.3rem;
        display: inline-block;
        border-radius: 17px;
        transition: all 0.5s ease;
        position: relative;
    }

    /* Efeito ao passar o mouse sobre os links */
    header nav ul li a:hover {
        color: rgb(255, 255, 255);
        transform: translateY(-3px);
        border-radius: 50px;
    }

    /* Seções */
    section {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    section h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: rgb(255, 99, 71);
        font-weight: bold;
    }

    section p {
        font-size: 1.3rem;
        color: #666;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Carousel */
    .carousel-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        overflow: hidden;
        border-radius: 10px;
    }

    .carousel {
        display: flex;
        transition: transform 1s ease-in-out;
        width: 100%;
    }

    .carousel-slide {
        display: flex;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Botões de navegação */
    button {
        position: absolute;
        top: 50%;
        background-color: rgb(255, 255, 255);
        color: white;
        border: none;
        padding: 15px;
        cursor: pointer;
        font-size: 2rem;
        z-index: 1;
        transform: translateY(-50%);
        border-radius: 50%;
        transition: background-color 0.3s, transform 0.3s ease;
    }

    button:hover {
        background: linear-gradient(20deg, rgba(255, 99, 71, 0.116), rgba(255, 217, 0, 0.425));
    }

    button.prev {
        left: 15px;
    }
    
    button.next {
        right: 15px;
    }

    #Cadastro form {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        background-color: #f4f4f4;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    #Cadastro div {
        margin-bottom: 15px;
    }

    #Cadastro label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
    }

    #Cadastro input,
    #Cadastro textarea {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    #Cadastrop form {
        max-width: 600px;
        max-height: 800px;
        margin: 0 auto;
        padding: 40px;
        background-color: #f4f4f4;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    #Cadastrop div {
        margin-bottom:20px;
    }

    #Cadastrop label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
    }

    #Cadastrop input,
    #Cadastrop textarea {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #ffffff;
    }

    #Cadastroc form {
        max-width: 600px;
        margin: 0 auto;
        padding: 40px;
        background-color: #f4f4f4;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    #Cadastroc div {
        margin-bottom: 15px;
    }

    #Cadastroc label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
    }

    #Cadastroc input {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    #Cadastroc textarea {
        width: 100%;
        height: 50px;
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
    }



    #Cadastro button {
        padding: 10px 30px;
        background-color: #FF6347;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        width: 20%;
        margin-top: 30px;
        margin-left: 220px;
    }

    #Cadastroc button {
        padding: 10px ;
        background-color: #FF6347;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        width: 20%; 
        margin-top: 190px; 
        margin-left: 90px; 
    }
    #Cadastrop button {
        padding: 10px ;
        background-color: #FF6347;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        width: 20%; 
        margin-top: 200px; 
        margin-left: 80px; 
    }
    
    #Cadastroc button:hover,
    #Cadastrop button:hover {
        background-color: #f7320f;
    }

    #Cadastroc button:hover {
        background-color: #f7320f;
    }

    #Cadastro button:hover {
        background-color: #f7320f;
    }

    #Cadastrop button:hover {
        background-color: #f7320f;
    }

        /* Botões dentro dos formulários */
        form button, form .botao {
            display: block;
            margin: 20px auto;
            padding: 10px 30px;
            background-color: #FF6347;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
    
        form button:hover, form .botao:hover {
            background-color: #f7320f;
        }

    /* Divisões */
    #divisao {
        text-align: center;
        font-family: 'Arial', sans-serif;
        font-size: 32px;
        font-weight: bold;
        color: #fff;
        background: linear-gradient(20deg, #FF6347, #FFD700);
        padding: 15px 0;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        letter-spacing: 2px;
        width: 80%;
        margin: 20px auto;
        transition: all 0.5s ease;
        height: 100px;
    }

    #divisao:hover {
        background: linear-gradient(20deg, #FFD700, #FF6347);
        transform: scale(1.02);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2)
    }

    #divisao h2 {
        font-family: 'Courier New', Courier, monospace;
        text-align: center;
        color: white;
    }

    /* Reservas */
    #reservas {
        background-color: rgb(255, 99, 71);
        margin-bottom: 40px;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #333;
        border-radius: 10px;
    }

    #reservas p {
        color: white;
        font-size: 1.4rem;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
        transition: all 0.3s ease;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    }

    #reservas p:hover {
        color: #f4f4f4;
        font-size: 1.5rem;
        transform: scale(1);
    }

    /* Container do carrossel */
    .carousel-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        overflow: hidden;
        border-radius: 10px;
        height: 600px;
        margin-top: -20px;
    }

    /* Carrossel */
    .carousel {
        display: flex;
        transition: transform 1s ease-in-out;
        width: 100%;
    }

    /* Slides do carrossel */
    .carousel-slide {
        display: block;
        width: 100%;
        height: 80%;
        object-fit: cover;
        object-position: top center;
    }



    /* Botões de navegação */
    button {
        position: absolute;
        top: 50%;
        background-color: rgba(255, 99, 71, 0.301);
        color: white;
        border: none;
        padding: 15px;
        cursor: pointer;
        font-size: 2rem;
        z-index: 1;
        width: 70px;
        border-radius: 20%;
    }

    button:hover {
        background-color: rgba(255, 99, 71, 0.664);

    }

    button.prev {
        left: 15px;

    }

    button.next {
        right: 15px;

    }

    .botao {
        display: flex;
        position: relative;
        margin-bottom: -40px;
        width: 90px;
    }

    .container {
        width: 30%;
        margin-left: 50px;
        margin-top: 20px;
        padding: 10px;
        border: 2px solid #f4f4f4;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .container img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .container p {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-top: 10px;
    }

    .container .description {
        font-size: 14px;
        color: #666;
        margin-top: 5px;
        line-height: 1.5;
    }

    .container:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .imgpizza {
        margin-bottom: 20px;
    }

    .tit {
        text-align: center;
        font-family: 'Arial', sans-serif;
        font-size: 32px;
        font-weight: bold;
        color: #fff;
        background: linear-gradient(20deg, #FF6347, #FFD700);
        padding: 15px 0;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        letter-spacing: 2px;
        width: 80%;
        margin: 20px auto;
        transition: all 0.5s ease;
    }

    .tit:hover {
        background: linear-gradient(20deg, #FFD700, #FF6347);
        transform: scale(1.02);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2)
    }

    footer {
        background: linear-gradient(100deg, #FF6347, #FFD700);
        color: white;
        padding: 1.5rem 0;
        text-align: center;
        font-size: 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    footer p {
        margin: 10px 0;
    }

    footer a {
        color: white;
        text-decoration: none;
        margin: 0 10px;
        font-size: 1.1rem;
    }

    footer a:hover {
        color: #f4f4f4;
        text-decoration: underline;
    }

    .risco {
        margin-top: -15px;
    }

    @media (max-width: 768px) {
        header nav ul {
            flex-direction: column;
            align-items: center;
        }

        header nav ul li {
            margin: 10px 0;
        }

        .container {
            width: 90%;
            margin: 10px auto;
        }

        .carousel-container {
            height: 400px;
        }

        button, .botao {
            width: 100%;
            padding: 15px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        header {
            height: auto;
            padding: 1rem;
            text-align: center;
        }

        header .logo .logoimg {
            height: 80px;
            width: 120px;
        }

        section h2 {
            font-size: 2rem;
        }

        section p {
            font-size: 1rem;
        }

        button, .botao {
            width: 100%;
            padding: 12px;
            font-size: 0.9rem;
        }
    }
