
/*drone Page Styles */

html, body { overflow-x: hidden; }

.wdrone {
    font-family: 'Outfit', sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}
.wdrone *, .wdrone *::before, .wdrone *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── HERO ── */
.wdrone .wd-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}
.wdrone .wd-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(25%);
}
.wdrone .wd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.30) 55%,
        rgba(0,0,0,0.10) 100%
    );
    z-index: 1;
}
.wdrone .wd-hero-label {
    position: absolute;
    top: 40px;
    left: 8%;
    z-index: 2;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.wdrone .wd-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 0 8% 64px;
}
.wdrone .wd-hero-content h1 {
    font-size: clamp(40px, 8vw, 96px);
    font-weight: 300;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -0.03em;
}
.wdrone .wd-hero-content h1 em {
    font-style: normal;
    color: #ff7a00;
}
.wdrone .wd-hero-sub {
    position: absolute;
    bottom: 64px;
    right: 8%;
    z-index: 2;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.60);
    max-width: 38ch;
    line-height: 1.7;
    text-align: right;
}
@media (max-width: 768px) {
    .wdrone .wd-hero { height: 65vh; }
    .wdrone .wd-hero-sub { display: none; }
    .wdrone .wd-hero-content { padding: 0 6% 44px; }
}

/* ── STAT BAR ── */
.wdrone .wd-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #0e0e0e;
}
.wdrone .wd-stat {
    padding: 40px 8%;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.wdrone .wd-stat:last-child { border-right: none; }
.wdrone .wd-stat-num {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}
.wdrone .wd-stat-num span { color: #ff7a00; }
.wdrone .wd-stat-label {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
}
@media (max-width: 768px) {
    .wdrone .wd-stats { grid-template-columns: 1fr; }
    .wdrone .wd-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 30px 6%;
    }
    .wdrone .wd-stat:last-child { border-bottom: none; }
}

/* ── SECCIONES BASE ── */
.wdrone .wd-section        { padding: 100px 8%; }
.wdrone .wd-section-dark   { background: #0e0e0e; }
.wdrone .wd-section-grey   { background: #f5f5f5; }
@media (max-width: 768px) {
    .wdrone .wd-section { padding: 72px 6%; }
}

/* ── EYEBROW ── */
.wdrone .wd-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ff7a00;
    margin-bottom: 18px;
}

/* ── HEADINGS ── */
.wdrone h2 {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #111;
}
.wdrone .wd-section-dark h2 { color: #fff; }
.wdrone h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: #111;
}
.wdrone p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    font-weight: 300;
}
.wdrone .wd-section-dark p { color: #888; }

/* ── INTRO SPLIT ── */
.wdrone .wd-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.wdrone .wd-intro-img {
    position: relative;
    overflow: hidden;
}
.wdrone .wd-intro-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: transform 0.6s ease;
}
.wdrone .wd-intro-img:hover img { transform: scale(1.03); }
.wdrone .wd-intro-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #ff7a00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.wdrone .wd-intro-img:hover::after { transform: scaleX(1); }
.wdrone .wd-intro-text p + p { margin-top: 16px; }
@media (max-width: 900px) {
    .wdrone .wd-intro { grid-template-columns: 1fr; gap: 40px; }
}

/* ── DIVIDER ── */
.wdrone .wd-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 8%;
}
.wdrone .wd-divider::before {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.12);
}
.wdrone .wd-divider span {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ff7a00;
    white-space: nowrap;
}

/* ── CAPABILITIES GRID ── */
.wdrone .wd-caps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.wdrone .wd-cap-item {
    padding: 44px 0;
    border-bottom: 1px solid rgba(0,0,0,0.09);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    align-items: start;
}
.wdrone .wd-cap-item:nth-child(odd)  { padding-right: 48px; border-right: 1px solid rgba(0,0,0,0.09); }
.wdrone .wd-cap-item:nth-child(even) { padding-left: 48px; }
.wdrone .wd-cap-item:nth-last-child(-n+2) { border-bottom: none; }
.wdrone .wd-cap-num {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #ff7a00;
    font-weight: 500;
    padding-top: 3px;
}
.wdrone .wd-cap-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .wdrone .wd-caps { grid-template-columns: 1fr; }
    .wdrone .wd-cap-item:nth-child(odd)  { padding-right: 0; border-right: none; }
    .wdrone .wd-cap-item:nth-child(even) { padding-left: 0; }
    .wdrone .wd-cap-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.09); }
    .wdrone .wd-cap-item:last-child { border-bottom: none; }
}

/* ── PROCESS (DARK) ── */
.wdrone .wd-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid rgba(255,255,255,0.07);
}
.wdrone .wd-process-card {
    padding: 44px 36px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
}
.wdrone .wd-process-card:last-child { border-right: none; }
.wdrone .wd-process-card:hover { background: rgba(255,255,255,0.03); }
.wdrone .wd-process-step {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ff7a00;
    margin-bottom: 20px;
}
.wdrone .wd-process-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
}
.wdrone .wd-process-card p { font-size: 14px; }
@media (max-width: 768px) {
    .wdrone .wd-process-grid { grid-template-columns: 1fr; }
    .wdrone .wd-process-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .wdrone .wd-process-card:last-child { border-bottom: none; }
}

/* ── WHY CHOOSE US ── */
.wdrone .wd-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}
.wdrone .wd-why-img {
    position: relative;
    overflow: hidden;
}
.wdrone .wd-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: transform 0.6s ease;
}
.wdrone .wd-why-img:hover img { transform: scale(1.03); }
.wdrone .wd-why-content {
    background: #0e0e0e;
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wdrone .wd-why-content h2 { color: #fff; margin-bottom: 32px; }
.wdrone .wd-why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.wdrone .wd-why-list li {
    font-size: 14px;
    color: #777;
    font-weight: 300;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}
.wdrone .wd-why-list li:last-child { border-bottom: none; }
.wdrone .wd-why-list li:hover { color: #fff; }
.wdrone .wd-why-list li::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #ff7a00;
    flex-shrink: 0;
    transition: width 0.3s;
}
.wdrone .wd-why-list li:hover::before { width: 32px; }
@media (max-width: 900px) {
    .wdrone .wd-why { grid-template-columns: 1fr; }
    .wdrone .wd-why-img { height: 320px; }
    .wdrone .wd-why-content { padding: 48px 6%; }
}

/* ── GALLERY SLIDER ── */
.wdrone .wd-gallery-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 36vw);
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-top: 48px;
}
.wdrone .wd-gallery-slider::-webkit-scrollbar { display: none; }
.wdrone .wd-gallery-item {
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}
.wdrone .wd-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    filter: grayscale(55%);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.wdrone .wd-gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}
.wdrone .wd-gallery-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.55);
    padding: 5px 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s, transform 0.35s;
}
.wdrone .wd-gallery-item:hover .wd-gallery-tag {
    opacity: 1;
    transform: translateY(0);
}
.wdrone .wd-slider-arrows {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.wdrone .wd-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.18);
    background: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.wdrone .wd-arrow:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
}
@media (max-width: 768px) {
    .wdrone .wd-gallery-slider {
        grid-auto-columns: minmax(260px, 80vw);
    }
}

/* ── SCROLL REVEAL ── */
.wdrone .wd-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
                transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.wdrone .wd-reveal.wd-visible {
    opacity: 1;
    transform: translateY(0);
}

