
body,
h1,
h2,
p,
ul,
li,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #333;
    text-align: center;
    overflow-x: hidden;
}


.navbar {
    background: rgba(255, 102, 0, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px 0;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.navbar-nav .nav-link {
    color: #fff;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ff6600;
}


.section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);

}

#home {
    background: url('./assets/portifolio02.jpg') no-repeat center center/cover;
    position: relative;
    height: 100vh;
}

#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fundo escuro */
}

#home > div {
    position: relative;
    z-index: 1;
}

h1,
h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
}   

.text{
    max-width: 600px;
}




#about {
    background-color: #f4f4f4;
}

#about h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ff6600;
}

.custom-box {
    position: relative;
    background-color: #fff;
    padding: 50px;
    border-radius: 100px 0 100px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: visible;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}


.custom-box::before {
    content: "";
    position: absolute;
    top: -35px;
    left: -5px;
    width: 90px;
    height: 90px;
    background-color: #ff6600;
    border-radius: 50%;
}


.custom-content {
    position: relative;
    z-index: 1;
    padding: 10px;

}

.custom-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.custom-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}


.custom-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: auto;
    z-index: 0;
    border-bottom-right-radius: 100px;
}


#services {
    background-color: #ff6600;
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.title-line {
    width: 100px;
    height: 4px;
    background-color: #fff;
    margin: 10px auto 20px auto;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #fff;
}

.section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ff6600;
    font-weight: bold;
}


.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


.service-box {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.service-black {
    background-color: #222;
    color: #fff;
    padding: 20px 30px;
    width: 50%;
    text-align: left;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    z-index: 2;
}

.service-black h4 {
    font-size: 1.5rem;
    margin: 0;
}

.service-orange {
    background-color: #fff;
    color: #ff6600;
    padding: 30px;
    width: 50%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    left: 45%;
    z-index: 999;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.service-orange p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .service-box {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .service-black,
    .service-orange {
        width: 80%;
        text-align: center;
    }

    .service-orange {
        left: 10%;
        height: auto;
        padding: 10px;
    }
}


.btn-orange {
    background: #ff6600;
    border: none;
    font-size: 1rem;
    padding: 15px 30px;
    transition: 0.3s;
    color: white;
}

.btn-orange:hover {
    background: #cc5500;
    color: #fff;
}

footer {
    padding: 20px;
    background: #ff6600;
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler-icon {
        background-color: #fff;
    }
}

#portfolio {
    background-color: #f4f4f4;
    padding: 100px 20px;
    text-align: center;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff6600;
    margin-bottom: 20px;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}

.portfolio-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.portfolio-details {
    padding: 20px;
    text-align: left;
}

.portfolio-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.portfolio-details p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.portfolio-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.portfolio-btn:hover {
    background: #cc5500;
}

@media (max-width: 768px) {
    .portfolio-container {
        grid-template-columns: 1fr;
    }
}


#testimonials {
    background-color: #222;
}

.testimonial-box {
    background: #333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #ddd;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    color: #ff6600;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}



#contact {
    background: linear-gradient(135deg, #ff6600, #cc5500);
    padding: 100px 20px;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.contact-box p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}


.contact-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    outline: none;
}


.contact-btn {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6600;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #ffe0cc;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-box {
        padding: 30px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-input {
        font-size: 0.9rem;
    }

    .contact-btn {
        font-size: 1rem;
        padding: 12px;
    }
}
