/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo img {
    width: 190px;
    height: auto;
    filter: brightness(0) invert(1);
    /* filter: brightness(0) invert(1) drop-shadow(0 0 10px #fa6630);  */
    margin-left: -10px;
}

.header-content .logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px #ff6b35);
}

.logo .fa-circle-notch {
    color: #ff6b35;
    font-size: 28px;
    vertical-align: middle;
    margin: 2px 2px 5px 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.search-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #ff6b35;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('./../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drone-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.drone-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.quality-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.quality-icon {
    width: 32px;
    height: 32px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.quality-badge span {
    font-weight: 600;
    font-size: 12px;
    color: #333;
    letter-spacing: 1px;
}

/* Partners Section */
/* .partners {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 0;
} */

/* .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    align-items: center;
} */

/* .partner-logo {
    color: #fff;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    letter-spacing: 1px;
} */

.partner-logo:hover {
    opacity: 1;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: #fff;
    padding: 40px 24px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 32px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.footer-section h4 {
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-section ul li i {
    margin-right: 8px;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333;
    color: #666;
}

/* animação de publicididade */
.partners {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 20px 0;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partner-logo {
    flex: 0 0 auto;
    margin-right: 50px;
    font-size: 1.0em;
    font-weight: bold;
    white-space: nowrap;
}

/* Animação de rolagem */
@keyframes scroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

/* fim animação de publicididade */

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

[data-aos="fade-up"] {
    /* opacity: 0; */
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .drone-image {
        max-width: 400px;
    }


}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #1a1a1a;
        transition: left 0.3s ease;
        padding: 40px 20px;
    }

    .nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 24px;
    }

    .nav-menu a {
        font-size: 18px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .header-actions .btn-primary {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
    }

    .drone-image {
        max-width: 350px;
    }

    /*  .drone-container{
          border: solid 1px red;
          display: flex;
          flex-direction:column;
          align-content:center;
          justify-content: center; 
    }  */

    .quality-badge {
        bottom: -90px;
        right: 90px;
        padding: 8px 16px;
    }


    .quality-badge span {
        font-size: 12px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
    }

    .partner-logo {
        font-size: 10px;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px 20px;
    }

    .footer {
        padding: 60px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    /* .quality-badge{
        display: none;
    } */
    
    .back-to-top {
        display: none;
    }
    .swiper-slide {
        flex-shrink: 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    /* .drone-container{
      display: flex;
      flex-direction:column;
      align-content:center;
      justify-content: center; 
    }
   */

    .drone-image {
        max-width: 450px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 48px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .service-title {
        font-size: 14px;
    }

    .service-description {
        font-size: 13px;
    }


}

