/* ============================================
   DRONE FLORIANÓPOLIS - LANDING PAGE STYLES
   ============================================ */

/* ============================================
   VARIABLES & COLORS
   ============================================ */
:root {
    --drone-blue: #0099FF;
    --drone-green: #00D9A3;
    --drone-dark: #1a1a2e;
    --drone-gray: #16213e;
    --w2-red: #FF1744;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.drone-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.drone-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="%23203a43" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.drone-hero .container {
    position: relative;
    z-index: 1;
}

.drone-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.drone-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 48px;
    font-weight: 300;
}

.drone-hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--drone-green);
}

.trust-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.drone-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    margin-top: 32px;
}

.drone-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ============================================
   EQUIPAMENTOS E PREÇOS
   ============================================ */
.equipamentos-drone {
    padding: 100px 20px;
    background: #0a0a0a;
}

.section-title-drone {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-subtitle-drone {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 64px;
    font-weight: 500;
}

.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.equipamento-card {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(0, 153, 255, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.equipamento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.equipamento-card:hover::before {
    opacity: 0.1;
}

.equipamento-card:hover {
    border-color: var(--drone-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.3);
}

.equipamento-card > * {
    position: relative;
    z-index: 1;
}

.equipamento-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--w2-red) 0%, #c51162 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipamento-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.equipamento-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

.equipamento-subtitle {
    font-size: 1.1rem;
    color: var(--drone-blue);
    margin-bottom: 32px;
    font-weight: 600;
}

.equipamento-price {
    margin-bottom: 32px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-gray);
    vertical-align: top;
    font-weight: 600;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--drone-green);
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
}

.equipamento-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    text-align: left;
}

.equipamento-features li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.equipamento-features i {
    color: var(--drone-green);
    font-size: 1.1rem;
}

.equipamento-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 16px;
}

.equipamento-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.equipamento-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 217, 163, 0.2) 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--drone-blue);
    border: 2px solid var(--drone-blue);
}

.equipamento-icon i {
    display: inline-block !important;
    visibility: visible !important;
}

.equipamento-ideal {
    margin: 24px 0;
    padding: 16px;
    background: rgba(0, 153, 255, 0.05);
    border-radius: 8px;
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.equipamento-ideal strong {
    color: var(--drone-blue);
    display: block;
    margin-bottom: 8px;
}

.equipamentos-info {
    max-width: 900px;
    margin: 64px auto 0;
    padding: 40px;
    background: #1a1a2e;
    border-radius: 16px;
    border: 2px solid rgba(0, 153, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.equipamentos-info h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.equipamentos-info h4:first-child {
    margin-top: 0;
}

.equipamentos-info h4 i {
    color: var(--drone-blue);
    font-size: 1.3rem;
}

.equipamentos-info p {
    color: #d0d0d0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.equipamentos-info .info-note {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 24px;
}

.equipamentos-info .info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.equipamentos-info .info-list li {
    padding: 12px 0;
    color: #ffffff;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.equipamentos-info .info-list li:last-child {
    border-bottom: none;
}

.equipamentos-info .info-list li i {
    color: var(--drone-green);
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-white {
    background: linear-gradient(135deg, #0099FF 0%, #00D9A3 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.4);
}

.btn-outline-white:hover {
    background: linear-gradient(135deg, #0077CC 0%, #00B88C 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.6);
}

.equipamento-note {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-style: italic;
    margin: 12px 0 20px;
    text-align: center;
}

/* ============================================
   PARA QUEM É
   ============================================ */
.casos-uso {
    padding: 100px 20px;
    background: #0f0f0f;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.caso-card {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.caso-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--drone-blue);
    transform: translateY(-8px);
}

.caso-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.caso-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.caso-card p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-drone {
    padding: 100px 20px;
    background: #0a0a0a;
}

.portfolio-categoria {
    margin-bottom: 64px;
}

.portfolio-categoria h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .portfolio-videos {
        grid-template-columns: 1fr;
    }
}

.portfolio-video-placeholder {
    position: relative;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 153, 255, 0.5);
    transition: all 0.3s ease;
}

.portfolio-video-placeholder:hover {
    border-color: var(--drone-blue);
    background: rgba(0, 153, 255, 0.05);
}

.portfolio-video-placeholder i {
    font-size: 3rem;
    color: var(--drone-blue);
    opacity: 0.5;
}

.portfolio-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-foto-placeholder {
    position: relative;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 217, 163, 0.5);
    transition: all 0.3s ease;
}

.portfolio-foto-placeholder:hover {
    border-color: var(--drone-green);
    background: rgba(0, 217, 163, 0.05);
}

.portfolio-foto-placeholder i {
    font-size: 2.5rem;
    color: var(--drone-green);
    opacity: 0.5;
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

.portfolio-cta p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-thumbnail img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.portfolio-play:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(0, 153, 255, 0.6);
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.video-modal-close:hover {
    background: white;
    color: #000;
    transform: rotate(90deg);
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais-drone,
.diferenciais {
    padding: 100px 20px;
    background: #0f0f0f;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-item,
.diferencial-card {
    text-align: center;
    padding: 32px;
}

.diferencial-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 217, 163, 0.2) 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--drone-blue);
    border: 2px solid var(--drone-blue);
    transition: all 0.3s ease;
}

.diferencial-item:hover .diferencial-icon,
.diferencial-card:hover .diferencial-icon {
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.diferencial-item h3,
.diferencial-card h3,
.diferencial-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.diferencial-item p,
.diferencial-card p,
.diferencial-description {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   PROCESSO / TIMELINE
   ============================================ */
.processo-drone,
.processo {
    padding: 100px 20px;
    background: #0a0a0a;
}

.processo-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.processo.section .processo-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--drone-blue) 0%, var(--drone-green) 100%) !important;
    transform: translateX(-50%);
    z-index: 0;
}

/* Override any red line from main site */
.processo-drone .processo-timeline::before,
.section.section-dark .processo-timeline::before {
    background: linear-gradient(180deg, var(--drone-blue) 0%, var(--drone-green) 100%) !important;
}

.processo-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.processo-step:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-start;
}

.processo-step:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.processo-step:last-child {
    margin-bottom: 0;
}

.processo-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 4px solid var(--drone-dark);
    box-shadow: 0 8px 24px rgba(0, 153, 255, 0.4);
}

.processo-content {
    flex: 1;
    padding: 0 40px;
    background: #1a1a2e;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.processo-content:hover {
    border-color: var(--drone-blue);
    transform: scale(1.02);
}

.processo-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.processo-content p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.6;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--drone-blue) 0%, var(--drone-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    border: 4px solid #0a0a0a;
    box-shadow: 0 8px 24px rgba(0, 153, 255, 0.4);
}

.step-content {
    flex: 1;
    padding: 32px;
    background: #1a1a2e;
    border-radius: 16px;
    border: 2px solid rgba(0, 153, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-left: 24px;
}

.step-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-description {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 20px;
    color: var(--drone-blue);
    font-size: 0.95rem;
    font-weight: 600;
}

.step-time i {
    font-size: 0.9rem;
}

.processo-total {
    text-align: center;
    margin-top: 64px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 217, 163, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(0, 153, 255, 0.3);
}

.processo-total p {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.processo-total i {
    color: var(--drone-green);
    font-size: 1.5rem;
}

/* ============================================
   ÁREAS ATENDIDAS
   ============================================ */
.areas-atendidas,
.areas {
    padding: 100px 20px;
    background: #0f0f0f;
}

.areas-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.areas-map {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid rgba(0, 153, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.areas-map h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.areas-map p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.areas-map i {
    color: var(--drone-green);
    margin-right: 8px;
}

.areas-lista h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.areas-lista ul {
    list-style: none;
    padding: 0;
}

.areas-lista li {
    padding: 12px 0;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.areas-lista li i {
    color: var(--drone-blue);
    font-size: 1rem;
}

.map-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: rgba(0, 153, 255, 0.05);
    border-radius: 12px;
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--drone-blue);
    margin-bottom: 24px;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.area-group {
    margin-bottom: 32px;
}

.area-group h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-group h3 i {
    color: var(--drone-blue);
}

.area-group ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.area-group li {
    padding: 12px 16px;
    background: rgba(0, 153, 255, 0.05);
    border-radius: 8px;
    color: #d0d0d0;
    font-size: 1rem;
    border: 1px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.area-group li:hover {
    background: rgba(0, 153, 255, 0.1);
    border-color: var(--drone-blue);
    color: #ffffff;
    transform: translateX(5px);
}

.areas-cta {
    text-align: center;
    margin-top: 64px;
    padding: 32px;
    background: rgba(0, 153, 255, 0.05);
    border-radius: 16px;
    border: 2px dashed rgba(0, 153, 255, 0.3);
}

.areas-cta p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.areas-cta p i {
    color: var(--drone-blue);
    font-size: 1.3rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-drone {
    padding: 100px 20px;
    background: #0a0a0a;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a2e;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: var(--drone-blue);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--drone-blue);
}

.faq-question i {
    font-size: 1rem;
    color: var(--drone-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    margin-top: 48px;
    text-align: center;
    padding: 32px;
    background: rgba(0, 153, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(0, 153, 255, 0.2);
}

.faq-cta p {
    font-size: 1.3rem;
    color: var(--drone-blue);
    font-weight: 600;
    margin-bottom: 24px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 120px 20px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 217, 163, 0.1) 100%),
                var(--drone-gray);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 900;
}

.cta-final p {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgencia {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 23, 68, 0.2);
    border: 2px solid var(--w2-red);
    border-radius: 50px;
    color: var(--w2-red);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.cta-final-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.7);
}

.cta-final-btn i {
    font-size: 1.8rem;
}

/* ============================================
   BUTTONS & GENERAL
   ============================================ */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--drone-blue);
    color: var(--drone-blue);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--drone-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.4);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6b58 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.btn-nav {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-nav:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6b58 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.equipamentos-destaque {
    font-size: 1.4rem !important;
    color: #2a2a2a !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.3) 0%, rgba(0, 217, 163, 0.3) 100%);
    padding: 20px 32px;
    border-radius: 12px;
    border: 2px solid var(--drone-blue);
    max-width: 800px;
    margin: 0 auto 64px;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.3);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.section-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--drone-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 64px;
    text-align: center;
    font-weight: 400;
}

.section-dark {
    background: #0a0a0a;
}

.section {
    padding: 100px 20px;
}

/* ============================================
   DRONE PROCESSO - NEW CLEAN VERSION
   ============================================ */
.drone-processo {
    padding: 100px 20px;
    background: #0a0a0a;
    position: relative;
}

.drone-steps-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Blue-to-green gradient line */
.drone-steps-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0099FF 0%, #00D9A3 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.drone-step-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.drone-step-item:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-start;
}

.drone-step-item:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.drone-step-item:last-child {
    margin-bottom: 0;
}

.drone-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0099FF 0%, #00D9A3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.5);
    border: 4px solid #0a0a0a;
    z-index: 2;
    position: relative;
}

.drone-step-content {
    background: #1a1a2e;
    padding: 32px;
    border-radius: 12px;
    margin: 0 40px;
    border: 2px solid rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.drone-step-content:hover {
    border-color: #0099FF;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.4);
}

.drone-step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0099FF;
    margin-bottom: 16px;
}

.drone-step-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 16px;
}

.drone-step-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00D9A3;
    font-weight: 600;
    font-size: 1rem;
}

.drone-step-time i {
    font-size: 1rem;
}

.drone-processo-total {
    text-align: center;
    margin-top: 64px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 217, 163, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 153, 255, 0.3);
}

.drone-processo-total p {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.drone-processo-total i {
    color: #00D9A3;
    font-size: 1.6rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 992px) {
    .drone-hero-title {
        font-size: 2.8rem;
    }
    
    .drone-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title-drone {
        font-size: 2.3rem;
    }
    
    .equipamentos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .casos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .processo-timeline::before {
        left: 40px;
    }
    
    .processo-step {
        flex-direction: row !important;
    }
    
    .processo-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .processo-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* New drone-processo responsive */
    .drone-steps-wrapper::before {
        left: 40px;
    }
    
    .drone-step-item {
        flex-direction: row !important;
    }
    
    .drone-step-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .drone-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .drone-step-content {
        margin: 0 0 0 20px;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-final h2 {
        font-size: 2.3rem;
    }
    
    .cta-final p {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .drone-hero {
        min-height: 80vh;
        padding: 100px 15px 60px;
    }
    
    .drone-hero-title {
        font-size: 2.2rem;
    }
    
    .drone-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .drone-hero-trust {
        gap: 16px;
    }
    
    .trust-badge {
        padding: 16px;
        font-size: 0.85rem;
    }
    
    .trust-badge i {
        font-size: 1.5rem;
    }
    
    .section-title-drone,
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle-drone,
    .section-description {
        font-size: 1rem;
    }
    
    .equipamentos-grid {
        gap: 24px;
    }
    
    .equipamento-card {
        padding: 32px 24px;
    }
    
    .equipamentos-info {
        padding: 24px 20px;
    }
    
    .equipamentos-info h4 {
        font-size: 1.2rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .casos-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-videos {
        grid-template-columns: 1fr;
    }
    
    .portfolio-fotos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .processo-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content {
        padding: 20px;
        margin-left: 16px;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .processo-content {
        padding: 20px;
    }
    
    .processo-content h3 {
        font-size: 1.4rem;
    }
    
    /* New drone-processo mobile responsive */
    .drone-steps-wrapper::before {
        left: 25px;
    }
    
    .drone-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .drone-step-content {
        padding: 20px;
        margin: 0 0 0 12px;
    }
    
    .drone-step-title {
        font-size: 1.4rem;
    }
    
    .drone-step-description {
        font-size: 1rem;
    }
    
    .drone-processo-total p {
        font-size: 1.1rem;
        flex-direction: column;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
    }
    
    .area-group ul {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .cta-final {
        padding: 80px 15px;
    }
    
    .cta-final h2 {
        font-size: 1.9rem;
    }
    
    .cta-final p {
        font-size: 1.1rem;
    }
    
    .cta-final-btn {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .areas-cta p {
        flex-direction: column;
        gap: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .drone-hero-title {
        font-size: 1.8rem;
    }
    
    .drone-hero-subtitle {
        font-size: 1rem;
    }
    
    .drone-hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title-drone {
        font-size: 1.7rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .equipamento-title {
        font-size: 1.5rem;
    }
    
    .cta-final h2 {
        font-size: 1.6rem;
    }
    
    .cta-final-btn {
        padding: 18px 32px;
        font-size: 1.1rem;
    }
}
