/* Contact Section Styles */
/* 
#contact{
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
}  */

section.contact {
    padding: 60px 0;
    background-color: #fff;
}

section.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section.contact .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #666;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
    font-size: 1em;
    display: flex;
    align-items: center;
    color: #555;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #ff6b35;
}

.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;

}

textarea::placeholder {
    color: #999;
    font-size: 18px;
    font-family: sans-serif;
    opacity: 1;
    /* opcional: 1 = 100% visível */
}

/* .btn-primary {
    background-color: #ff6b35;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
} */

/* .btn-primary:hover {
    background-color: #ff6b35;
} */

/* sessao sobre */

/* Estilos para a sessão "Sobre" */
.about {
    padding: 80px 0;
    background-color: #f9cb879c;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about .section-title {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #333;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1 1 500px;
    margin-right: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    border: 5px solid #ff6b35;
    /* moldura laranja */
    padding: 5px;
    box-shadow: rgba(255, 107, 53, 0.4) -5px 5px, rgba(255, 107, 53, 0.3) -10px 10px, rgba(255, 107, 53, 0.2) -15px 15px, rgba(255, 107, 53, 0.1) -20px 20px, rgba(255, 107, 53, 0.05) -25px 25px;
}

/* Drone-themed image hover animation */
.about-image img {
    animation: droneHover 3s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}


/* botao voltar ao top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 5%;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s;
}

.back-to-top:hover {
    opacity: 0.8;
    background-color: #f9f9f9;
    color: #090909;
    border: 1px solid #000000;
}

/* sesao portifolio */
/* Portfolio Section */
.portfolio {
    background: #181818;
    color: #fff;
    padding: 80px 30px 60px 30px;
    text-align: center;
    padding-bottom: 150px;
}

.portfolio .section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #f4f1f1;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;

}

.portfolio-item {
    background: #222;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    width: 370px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0px 10px;
}

.portfolio-item:hover {
    /* transform: translateY(-10px) scale(1.03); */
    /* box-shadow: 0 8px 32px rgba(255,107,53,0.2); */
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.portfolio-info {
    padding: 24px 18px 18px 18px;
    text-align: left;
}

.portfolio-info h3 {
    font-size: 1.0rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;

    white-space: nowrap;
    /* Impede que o texto quebre linha */
    overflow: hidden;
    /* Esconde o que passa do limite */
    text-overflow: ellipsis;
    /* Adiciona os "..." */
}

.portfolio-info p {
    color: #ff6b35;
    font-size: .9rem;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.portfolio-item img {
    transition: transform 0.4s ease-in-out;
}

.portfolio-item:hover img {
    filter: brightness(0.8);
    transform: translateY(-10px) scale(1.05);
}


/* Swiper navigation buttons laranja */
.swiper-button-next,
.swiper-button-prev {
    color: #ff6b35 !important;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, color 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}

.swiper-slide {
    flex-shrink: 1 !important;
    width: 100% !important;
}

/* Swiper pagination bullets brancas */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7;
    border: 1px solid #ff6b35;
    width: 12px;
    height: 12px;
    margin: 0 4px !important;
    transition: background 0.2s, opacity 0.2s;
}

.swiper-pagination-bullet-active {
    background: #ff6b35 !important;
    opacity: 1;
    border: 1px solid #fff;
}

.swiper-wrapper {
    padding: 40px !important;
}

.portfolio-swiper,
.swiper {
    width: 100%;
    overflow: hidden;
}