:root {
    --primary-color: white;
    --secondary-color: #333333;
    --accent-color: #A00BD3;
    --text-color: #ffffff;
    --background-color: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #141215;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Update header layout */
header {
    background: transparent;
    padding: 20px 50px;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

nav button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

nav button:hover {
    transform: scale(1.05);
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Update form section */
.formulario {
    background-color: #131313;
    padding: 60px 20px;
    position: relative;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid #A00BD3;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(160, 11, 211, 0.2);
}

.form-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: transparent;
}

.formulario h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Steps Section */
.steps {
    text-align: left;
}

.step {
    margin-bottom: 40px;
}

.step h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.button-green{
    font-size: 20px;
    font-weight: 600;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: transparent;
    background-image: linear-gradient(90deg, #15FF00 0%, #018E00 100%);
    border-radius: 5px 5px 5px 5px;
    padding: 14px 50px 14px 50px;
    border: none;
    transition: all 0.3s ease;
}

.button-green:hover {
    transform: translateY(-2px);
}

.button-29 {
    align-items: center;
    appearance: none;
    background-color: #9C27B0;
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: normal;
    word-wrap: break-word;
    will-change: box-shadow, transform;
    font-size: 18px;
    font-weight: 600;
}

.button-29:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, var(--accent-color) 0 -3px 0 inset;
}

.button-29:hover {
    transform: translateY(-2px);
}

.button-29:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px);
}


/* Form Elements */
form {
    width: 100%;
}

.formulario input,
.formulario select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: rgba(51, 51, 51, 0.9);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.formulario button {
    width: 100%;
}

/* Clients Section */
.clientes {
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.clientes h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.clientes h5 {
    color: white;
    margin-bottom: 40px;
    font-size: 12pt;
}


.carousel {
    width: 70%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    animation: slide 20s linear infinite;
}

.carousel img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    margin: 0 20px;
}

/* Testimonials Section */
.depoimentos {
    text-align: center;
    padding: 80px 20px;
    background-color: transparent;
}

.depoimentos h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 20px;
    justify-items: center;
}

.videos iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

/* What We Do Section */
.o-que-faremos {
    text-align: center;
    padding: 80px 20px;
    background-color: transparent;
}

.o-que-faremos h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.o-que-faremos h3 {
    margin-bottom: 30px;
}

.o-que-faremos ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.o-que-faremos li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.o-que-faremos i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.5rem;
}
.o-que-faremos-item{
    text-align: left;
}

footer {
    background-color: transparent;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-content img {
    height: 50px;
}

.footer-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--accent-color);
}

.footer-content i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }
}




@media (max-width: 768px) {
    .form-container {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .button-green{
        margin-bottom: 20px;
    }

    .food-icons {
        display: none;
    }

    header {
        padding: 30px 20px;
        justify-content: center;
    }

    header nav {
        display: none;
    }

    .hero {
        padding: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .formulario h2,
    .clientes h2,
    .depoimentos h2,
    .o-que-faremos h2 {
        font-size: 2rem;
    }

    .carousel img {
        width: 150px;
    }
}

/* New Section - Exclusive Work */
.exclusive-work {
    text-align: center;
    padding: 80px 20px;
    background-color: transparent;
}

.exclusive-work .content-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
}

.content-box span {
    color: var(--accent-color);
}

.exclusive-work h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.exclusive-work p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.exclusive-work button {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .exclusive-work .content-box {
        margin: 0 20px;
        padding: 30px;
    }

    .exclusive-work h2 {
        font-size: 1.8rem;
    }

    .exclusive-work p {
        font-size: 1.1rem;
    }
}

/* Logo Styles */
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    .logo::before {
        font-size: 1.3rem;
        padding: 4px 8px;
    }
}

/* Glowing Button Effect */
.glow-button {
    position: relative;
    z-index: 1;
}

.glow-button::before {
    display: none;
}

.formulario::after {
    display: none;
}

/* Update font weights and sizes for better readability */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

p,
li,
a {
    font-weight: 400;
    line-height: 1.6;
}

.swiper {
    width: 80%;
    padding: 40px 0;
    margin-bottom: 40px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s;
}

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

.swiper-slide img {
    width: 150px;
    height: 150px;
    object-fit: contain;

}

.swiper-button-prev {
    left: 0; 
    color: var(--accent-color);
}

.swiper-button-next {
    right: 0; 
    color: var(--accent-color);
}


/* Paginação */
.swiper-pagination-bullet {
    background: var(--accent-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .swiper {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .videos {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .videos iframe {
        height: 500px;
        max-width: 100%;
    }
}