:root {
    --primary-color: #2d7a3e;
    --secondary-color: #409F2D;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --accent-green: #409F2D;
    --dark-green: #1e5a2e;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

b {
    font-weight: 900;
    color: var(--secondary-color);
}

.container {
    width: 1200px !important;
}

/* Navigation */
.navbar {
    padding: 1rem 2rem;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 1200px;
    width: 90%;
}

.navbar .container {
    max-width: 100%;
    padding: 0;
    position: relative;
}

.navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    background-color: white;
    width: 270px;
    height: calc(100% + 50px + 1rem);
    top: calc(-20px - 1rem);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 23px 23px;
    z-index: -1;
    box-shadow: 0 54px 90px rgba(0,0,0,0.35);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    max-height: 60px;
    position: relative;
    z-index: 1;
}

.navbar-nav {
    gap: 2rem;
    font-size: 18px !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    min-height: 737px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.2;
}

.btn-hero {
    background-color: var(--text-light);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 900;
}

.btn-hero:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
}

/* Sobre Nós Section */
.sobre-nos-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 100px;
    background-color: var(--bg-light);
    align-items: center;
    border-bottom-right-radius: 33px;
    border-bottom-left-radius: 120px;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}

.description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: var(--text-dark);
}

.content-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.image-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 10px 33px rgba(0, 0, 0, 0.03);
}

.image-container img {
    width: 100%;
}

/* Pelican Section */
.pelican-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 100px;
    background-color: transparent;
    align-items: center;
}

.image-containers {
    width: 100%;
    border-radius: 24px;
    border-bottom-right-radius: 94px;
    border-top-left-radius: 94px;
    overflow: hidden;
    box-shadow: 0px 10px 33px rgba(0, 0, 0, 0.03);
}

.image-containers img {
    width: 100%;
}

/* Benefits Section */
.benefits-section {
    padding: 50px 20px;
    padding-bottom: 90px;
    background-color: #ffffff;
    user-select: none !important;
}

.section-title {
    padding-top: 40px;
    padding-bottom: 53px;
    font-size: 2.7rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 900;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #eef0f2;
    padding: 50px 30px;
    border-radius: 12px;
    border-bottom-right-radius: 63px;
    border: 1px solid #b3b3b3;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 133px;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    margin-bottom: 25px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    color: var(--secondary-color);
}

.benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    position: relative;
    overflow: visible;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    user-select: none;
}

.services-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(64, 159, 45, 0.7);
    z-index: 1;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}

.services-section-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    transform: rotate(180deg);
    z-index: 2;
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.center-logo {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.service-card {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 23px;
    border-top-right-radius: 63px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--secondary-color);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--text-dark);
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    opacity: 0.3;
}

.service-icon::after {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.service-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.service-content p {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.service-content ul li {
    font-size: 13px;
    color: var(--text-dark);
    margin: 2px 0;
}

.service-content ul li::before {
    content: '• ';
    font-weight: bold;
}

.card-1 { grid-column: 1; grid-row: 1; }
.card-2 { grid-column: 1; grid-row: 2; }
.card-3 { grid-column: 1; grid-row: 3; }
.card-4 { grid-column: 1; grid-row: 4; }
.card-5 { grid-column: 3; grid-row: 1; }
.card-6 { grid-column: 3; grid-row: 2; justify-self: start; }
.card-7 { grid-column: 3; grid-row: 3; }
.card-8 { grid-column: 3; grid-row: 4; }

/* Drone Contact Section */
.drone-contact-section {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 200px;
}

.drone-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    overflow: hidden;
}

.drone-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.drone-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.drone-content-left {
    color: var(--text-light);
}

.drone-title-block {
    background: #409F2D;
    padding: 60px 0;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #409F2D;
    backdrop-filter: blur(3px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    margin-top: -233px;
}

.drone-title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 10px;
}

.drone-contact-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
}

.drone-card-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.drone-form-group {
    margin-bottom: 25px;
}

.drone-form-label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

.drone-form-input,
.drone-form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.drone-form-input:focus,
.drone-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.drone-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.drone-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.drone-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drone-submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 122, 62, 0.3);
}

.drone-submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #409F2D 0%, #409F2D 100%);
    color: white;
    padding: 4rem 0 0;
    margin-top: 0rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-green), var(--secondary-color));
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
}

.cta-contact {
    margin-top: 1rem;
    color: var(--accent-green);
    font-size: 1.05rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1rem;
    cursor: default;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 1.25rem;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.contact-value a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--accent-green);
}

.footer-contact address {
    font-style: normal;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.stagee-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.stagee-credit a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.stagee-credit a:hover {
    opacity: 0.8;
}

.stagee-logo {
    max-height: 40px;
    width: auto;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .sobre-nos-section,
    .pelican-section {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 50px;
    }
    
    .content-left h2 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .center-logo {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 30px;
    }

    .card-1, .card-2, .card-3, .card-4,
    .card-5, .card-6, .card-7, .card-8 {
        grid-column: 1;
        grid-row: auto;
    }

    .service-card {
        justify-content: flex-start;
    }

    .drone-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .drone-title {
        font-size: 2.2rem;
    }

    .drone-title-block {
        padding: 40px 30px;
    }

    .drone-contact-card {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .navbar {
        border-radius: 25px;
        width: 95%;
        padding: 1rem;
    }
    
    .navbar-brand::before {
        width: 160px;
        height: calc(100% + 10px + 1rem);
        top: calc(-10px - 1rem);
    }
    
    .navbar-nav {
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-brand {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .btn-hero {
        display: block;
        text-align: center;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
    }
    
    .navbar-brand img {
        max-height: 50px;
    }
    
    .navbar-brand::before {
        width: 140px;
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: 400px;
    }

    .sobre-nos-section,
    .pelican-section {
        padding: 40px 20px;
    }
    
    .content-left h2 {
        font-size: 2.2rem;
    }
    
    .description p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 40px 20px;
        min-height: 240px;
    }

    .service-card {
        padding: 15px 20px;
        border-radius: 40px;
    }

    .drone-title {
        font-size: 1.8rem;
    }

    .drone-title-block {
        padding: 30px 20px;
    }

    .drone-form-row {
        grid-template-columns: 1fr;
    }

    .drone-contact-card {
        padding: 25px;
    }

    .drone-card-title {
        font-size: 1.5rem;
    }

    .footer {
        padding: 3rem 0 0;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-title {
        margin-top: 2rem;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}