/* 
 * Info From The Sky - CSS Styles
 * Version: 1.0.0
 * Last Updated: 2025
 * Author: Info From The Sky Team
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #EEEEEE;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

a {
    text-decoration: none;
}

.bgDrone {
    display: flex;
    flex-direction: column;
    width: auto;
    height: 100vh;
    width: 100%;
    background-image: url("/src/assets/images/bgDrone.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 7%;
    width: 100%;
    z-index: 10000001;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(.4, 1.6, .6, 1);
    will-change: transform;
    box-shadow: none;
}

.header-hide {
    transform: translateY(-250%);
    transition: transform 0.4s cubic-bezier(.4, 1.6, .6, 1);
}

.header-scrolled {
    background-color: white;
    color: 1e3a5f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 10px 7%;
    z-index: 10000002;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 9vh;
}

.header-scrolled .menu ul li a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

.header-scrolled .menu ul li a:hover {
    color: #3e7bcb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.logo img {
    display: flex;
    align-items: center;
    height: 100px;
}

.hero-logo img {
    height: 150px;
}

.logo span {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-left: 10px;
    text-transform: uppercase;
}

.menu {
    display: flex;
    position: fixed;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    right: 0;
    top: 4vh;
    background-color: white;
    padding: 10px 10px 10px 50px;
    z-index: 10000002;
    transition: all 1s cubic-bezier(.4, 1.6, .6, 1);
    will-change: transform;
}

.header-scrolled .menu {
    background-color: transparent;
    padding: 5px 30px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 9vh;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.header-scrolled .icon-hidden {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8vh;
    height: 8vh;
    position: absolute;
    left: 1vh;
    top: 0.5vh;
}

.header-scrolled .icon-hidden img {
    width: 100%;
    height: 100%;
}

.icon-hidden {
    display: none;
}

.menu ul {
    display: flex;
    list-style: none;
}

.menu ul li {
    margin: 0 10px;
}

.menu ul li a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

.menu ul li a:hover {
    color: #3e7bcb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.hero {
    display: flex;
    justify-content: start;
    width: 50%;
}

.hero-content {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5vh;
    margin: 7% 0 0 7%;
}

.hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    padding: 5px 10px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-buttons {
        max-width: 100%;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

@media (min-width: 900px) {
    .menu-button {
        display: none;
    }
}

@media (max-width: 900px) {
    .menu {
        display: none !important;
    }

    .header {
        background-color: transparent;
        box-shadow: none !important;
    }

    .header-scrolled {
        background-color: transparent;
        box-shadow: none !important;
    }

    .menu-button {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        position: absolute;
        right: 1vh;
        top: 3vh;
        height: 100%;
        background: transparent;
        z-index: 10;
    }

    .menu-icon {
        display: flex !important;
        margin-right: 20px;
    }
    
    /* Prevenção de sombras laterais */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    * {
        box-shadow: none !important;
    }
    
    .sidebar {
        box-shadow: none !important;
    }
    
    .sidebar.active {
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Corrige o container principal para evitar overflow */
    .bgDrone, section, .portfolio-container, .services-section-wrapper, 
    .about, .why-us-section, .form, .footer {
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

.drone-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: 500px;
}

.about {
    background-color: #203246;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 50px 20px;
    cursor: default;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80%;
    width: 100%;
}

.about-text {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.about-text h2 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}

.about-text h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 8px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.about-text ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0.5vh;
}

.about-text li {
    padding-left: 1rem;
    position: relative;
    font-size: 1rem;
    margin-bottom: 10px;
}

.about-text li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.about-images {
    width: 65%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.text-poppins {
    font-family: 'Poppins', sans-serif;
}

.about-image {
    height: 100%;
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 5px;
}

.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .about {
        height: auto;
        padding: 40px 20px;
    }

    .about-container {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }

    .about-text {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .about-text h2 {
        font-size: 1.2rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin: 15px 0;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .about-text li {
        font-size: 0.9rem;
        margin-bottom: 12px;
        text-align: left;
        padding-left: 1.5rem;
    }

    .about-images {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 15px;
    }

    .about-image {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .about-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
}

@media (min-width: 1001px) and (max-width: 1200px) {
    .about {
        height: auto;
        padding: 40px 20px;
    }

    .about-container {
        gap: 20px;
    }

    .about-text {
        width: 40%;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-images {
        width: 55%;
    }
}

.know-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 45vh;
    padding: 50px 0;
    background-color: #FFFFFF;
}

.know-container .swiper {
    width: 65%;
    height: 100%;
    overflow: hidden;
}

.know-container .swiper-slide {
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    align-items: center !important;
    text-align: center;
    background: white;
    width: 25%;
    border-right: 1px solid silver;
}

.know-container .swiper-tittle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.know-container .swiper-tittle h2 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin: 0 30%;
}

.know-container .swiper-tittle h3 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    margin: 0 5%;
}

.know-container .fixed-section {
    width: 35%;
    height: 100%;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.know-container .fixed-section h2 {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    margin: auto 10px;
    color: #203246;
}

@media (max-width: 1050px) {
    .know-container .fixed-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .know-container .fixed-section h2 {
        font-size: 22px;
    }
}

.know-container .swiper-pagination {
    margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333333 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.know-container .swiper:hover .swiper-button-next,
.know-container .swiper:hover .swiper-button-prev {
    opacity: 1;
}

.services-section-wrapper {
    width: 100%;
    margin: 0 0 60px 0;
    padding-top: 40px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #203246;
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
    margin-left: 2.4vw;
}

.services-cards-grid {
    display: flex;
    flex-direction: row;
    gap: 2.4vw;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 40px;
}

.service-card {
    border-radius: 16px;
    box-shadow: 0 4px 18px 0 rgba(32, 50, 70, 0.10), 2px 4px 0 0 #203246;
    width: 22vw;
    height: 22vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.22s cubic-bezier(.4, 1.6, .6, 1), box-shadow 0.22s, filter 0.18s;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card-image-top {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: block;
    width: 100%;
    z-index: 3;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.service-card:hover {
    transform: translateY(-14px) scale(1.045);
    box-shadow: 0 16px 32px 0 rgba(32, 50, 70, 0.18), 2px 8px 0 0 #203246;
    filter: brightness(1.07) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.13));
}

@media (max-width: 1000px) {
    .services-cards-grid {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .service-card {
        width: 48vw;
        height: 48vw;
    }

    .services-title {
        text-align: center;
        margin-left: 0;
        padding-left: 0;
    }
}

@media only screen and (max-width: 450px) {
    .service-card {
        width: 90%;
        height: 48vw;
    }
}

.products-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

.services-list h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.services-list p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 400px;
}

.services-list div {
    padding-left: 20px;
}

.services-list ul {
    max-width: 400px;
}

.drone-image {
    position: absolute;
    width: 300px;
    right: 20px;
    top: 50px;
    opacity: 0.9;
}

.drone-image-bottom {
    position: absolute;
    width: 300px;
    right: 40px;
    bottom: 40px;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
        margin-bottom: 3vh;
    }

    .drone-image {
        width: 150px;
        top: 20px;
    }
}

@media (max-width: 1050px) {
    .services-container {
        margin-bottom: 3vh;
    }
}

.why-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5vh 0;
    width: 100%;
}

.why-us-image-container {
    width: 50%;
    height: auto;
    position: relative;
    left: 0;
}

.why-us-image-container img {
    border-radius: 25px 0 0 25px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-us-content-container {
    width: 50%;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 0 25px 25px 0;
    overflow-y: auto;
}

.why-us-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.why-us-features-list {
    list-style-type: none;
    margin-bottom: 20px;
}

.why-us-features-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: bold;
}

.why-us-features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.why-us-cta-button {
    display: inline-block;
    background-color: #006B4F;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    width: 40%;
}

.why-us-cta-button:hover {
    background-color: #005540;
}

.why-us-content-container {
    scrollbar-color: transparent transparent;
}

@media (min-width: 600px) and (max-width: 1024px) {
    .why-us-section {
        flex-direction: row;
        padding: 3vh 1vw;
        margin: 0;
        align-items: stretch;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .why-us-image-container,
    .why-us-content-container {
        box-sizing: border-box;
    }

    .why-us-image-container {
        width: 30%;
        min-width: 140px;
        max-width: 300px;
        padding-right: 1vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-us-image-container img {
        border-radius: 20px 0 0 20px;
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .why-us-content-container {
        width: 70%;
        min-width: 0;
        background-color: #fff;
        padding: 20px 12px;
        border-radius: 0 20px 20px 0;
        text-align: left;
        box-sizing: border-box;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        flex-shrink: 1;
    }

    .why-us-section-title {
        font-size: 22px;
    }
}

.why-us-section,
.why-us-image-container,
.why-us-content-container {
    box-sizing: border-box;
    max-width: 100%;
}

@media (max-width: 1050px) {
    .why-us-section {
        flex-direction: column;
        min-height: auto;
        margin: 0;
        padding: 3vh 1vw;
    }

    .why-us-image-container,
    .why-us-content-container {
        width: 100%;
        height: auto;
    }

    .why-us-content-container {
        min-height: 30vh;
        padding: 20px;
        text-align: center;
    }

    .why-us-image-container img {
        width: 100%;
        height: auto;
        margin: 0 auto;
        border-radius: 15px 15px 0 0;
    }

    .why-us-cta-button {
        width: 80%;
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .portfolio-swiper .swiper-slide img {
        width: 100% !important;
        height: 400px !important;
        object-fit: cover;
    }

    .form {
        margin-top: 0 !important;
    }
}

@media (max-width: 450px) {
    .why-us-cta-button {
        width: 90%;
    }
}

.portfolio-container {
    background-color: #eeeeee;
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    margin-bottom: 2vh;
}

.portfolio-tittle {
    font-family: Arial;
    margin-top: 2vh;
    margin-bottom: 2vh;
    margin-left: 5vw;
    font-size: 18px;
}

.portfolio-swiper {
    width: 100%;
    margin: 18px auto;
    box-shadow: none;
}

.portfolio-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px;
}

@media only screen and (max-width: 600px) {
    .portfolio-swiper .swiper-wrapper {
        gap: 0px;
    }
}

.portfolio-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19vh;
    border-radius: 16px;
    transition: box-shadow 0.22s, transform 0.22s;
}

.portfolio-swiper .swiper-slide:hover {
    transform: translateY(-8px) scale(1.035);
    z-index: 2;
}

.portfolio-swiper .swiper-slide blockquote.instagram-media {
    width: 100%;
    border-radius: 12px;
    background: #fff;
}

.portfolio-swiper .portfolio-button-next,
.portfolio-swiper .portfolio-swiper .portfolio-button-prev {
    background: #203246;
    color: #fff !important;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
    transition: background 0.18s, opacity 0.18s;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    border: 2px solid #fff;
}

.portfolio-swiper .portfolio-button-next:hover,
.portfolio-swiper .portfolio-button-prev:hover {
    background: #3897f0;
    opacity: 1;
}

.portfolio-swiper .portfolio-button-next:after,
.portfolio-swiper .portfolio-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.portfolio-swiper .portfolio-button-next {
    right: -18px;
}

.portfolio-swiper .portfolio-button-prev {
    left: -18px;
}

.portfolio-swiper .swiper-pagination-bullet {
    background: #203246;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 4px !important;
    transition: background 0.18s, transform 0.18s;
}

.portfolio-swiper .swiper-pagination-bullet-active {
    background: #3897f0;
    opacity: 1;
    transform: scale(1.18);
}

@media (max-width: 600px) {
    .portfolio-swiper {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background: none;
    }

    .portfolio-swiper .swiper-slide {
        width: 100%;
        margin: 0;
        border-radius: 8px;
    }

    .portfolio-swiper .swiper-slide blockquote.instagram-media {
        max-width: 98vw;
        min-width: 160px;
        border-radius: 8px;
    }

    .portfolio-swiper .portfolio-button-next,
    .portfolio-swiper .portfolio-swiper .portfolio-button-prev {
        width: 34px;
        height: 34px;
        font-size: 16px;
        top: 92%;
        right: 18%;
        left: 18%;
    }
}

.portfolio-swiper .swiper-slide img {
    display: none;
}

.form {
    width: 100%;
    font-family: 'arial';
    margin-top: 100px;
    margin-bottom: 100px;
}

.contact-info p {
    color: #203246;
}

.contact-info a {
    text-decoration: none;
    color: #203246;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.form-left-column {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 20px;
}

.form-right-column {
    display: flex;
    justify-content: center;
    width: 50%;
    padding: 20px;
    margin-bottom: 3vh;
}

.form-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #203246;
    text-transform: uppercase;
}

.form-intern-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
}

.form-subtitle,
.form-info {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.subColorForm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    width: 100%;
    max-width: 600px;
    padding-bottom: 20px;
}

.form-card {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-subcontainer {
    width: 95%;
    height: 95%;
}

.form-header {
    font-size: 14px;
    margin-bottom: 10px;
    color: #969696;
}

.form-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5px;
}

.form-col {
    width: 49.5%;
    gap: 3px;
}

@media only screen and (max-width: 450px) {
    .form-col {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }
}

.form-col-one {
    width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    color: #777;
}

.form-input {
    width: 100%;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
}

.form-big-input {
    width: 100%;
    height: 60px;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
}

.form-input::placeholder,
.form-big-input::placeholder {
    font-size: 14px;
    color: #c1c1c1;
}

.form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    color: #c1c1c1;
}

.form-select option {
    font-size: 14px;
    color: #c1c1c1;
}

.form-checkbox-container {
    margin-top: 15px;
    margin-bottom: 5px;
}

.form-checkbox {
    margin-left: 10px;
    background-color: red;
}

.form-checkbox-label {
    font-size: 14px;
    color: #777;
}

.form-button {
    padding: 10px 10px;
    background-color: #888;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-button:hover {
    background-color: #666;
}

.form-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5px;
    margin-bottom: 10px;
}

#drone-numbers {
    height: 100px;
    object-fit: contain;
}

.form-stat {
    min-width: 100px;
    padding: 20px;
    border-right: 1px solid #212529;
}

.form-stat:last-child {
    border-right: none;
}

.form-stat-number {
    font-size: 38px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.form-stat-label {
    font-size: 24px;
    color: #999;
}

@media (max-width: 1050px) {
    .form {
        height: auto;
    }

    .form-container {
        flex-direction: column;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .form-left-column {
        width: 100%;
    }

    .form-right-column {
        width: 100%;
    }

    .subColorForm {
        height: min-content;
        padding: 5px 0;
        width: 100%;
        max-width: 500px;
    }

    .form-card {
        margin: 5px;
    }
}

@media only screen and (max-width: 500px) {
    .form-container {
        padding: 10px 10px 0 10px;
    }

    .form-right-column {
        padding: 20px 0;
    }
}

.footer {
    background-color: #203246;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 3rem 2rem 1rem;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    flex: 1;
    min-width: 250px;
    margin-right: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
}

.footer-menu ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-menu ul li a:hover {
    color: #ffffff;
}

.footer-contact {
    margin-top: 20px;
    font-size: 14px;
}

.footer-contact p {
    color: #ffffff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #ffffff;
}

.footer-contact .phone-wrapper {
    color: inherit;
    text-decoration: none !important;
    display: inline-block;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.fa-brands {
    color: #FFFFFF;
    font-size: 1.2rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
}

.footer-social-link:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    padding-top: 1.5rem;
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        margin-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-menu {
        margin: 1.5rem 0;
    }

    .footer-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: white;
    box-shadow: none;
    transition: left 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar.active {
    left: 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.sidebar ul {
    list-style: none;
    padding: 20px;
    width: 100%;
    text-align: center;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.menu-icon {
    background-color: rgba(128, 128, 128, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-icon:hover {
    background-color: rgba(128, 128, 128, 0.7);
}

.menu-icon i {
    color: white;
    font-size: 20px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
    }

    .menu {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px;
    }

    .hero-content {
        margin: 20px 0;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        max-width: 100%;
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
        margin: 10px 0;
    }
}

.close-button {
    background: none;
    border: none;
    font-size: 30px;
    color: #1e3a5f;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

@media (min-width: 900px) {
    .sidebar {
        display: none;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.section-animate {
    opacity: 0;
    animation: slideIn 1.5s forwards;
}

.swiper-text {
    -webkit-text-stroke: 1px gray;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-family: Arial;
    color: #FFFFFF;
}

.know-container .swiper-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.know-container .swiper-image img {
    width: 50%;
}

.custom-shape-divider-bottom-1744397761 {
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

@media only screen and (max-width: 500px) {
    .custom-shape-divider-bottom-1744397761 {
        bottom: -1px;
    }
}

.custom-shape-divider-bottom-1744397761 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 51px;
}

.custom-shape-divider-bottom-1744397761 .shape-fill {
    fill: #203246;
}

@media (max-width: 710px) {
    .form-stat {
        border-right: none;
    }
}