/* ============================================
   STATHOS V2 - Mobile-first, expanded for desktop
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-dark: #0a1929;
    --bg-darker: #061220;
    --bg-card: #0f2236;
    --bg-card-hover: #142a44;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    --green-wpp: #25D366;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ============================================ HEADER */
.v2-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(6, 18, 32, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.v2-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; max-width: 1280px; margin: 0 auto;
}
.v2-logo img { height: 85px; width: auto; margin: -21px 0; }
.v2-desktop-nav { display: none; }
.v2-header-cta { display: none; }

.v2-menu-toggle {
    width: 44px; height: 44px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 5px;
    border-radius: 8px; transition: background 0.2s;
}
.v2-menu-toggle:hover { background: rgba(255,255,255,0.05); }
.v2-menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); border-radius: 2px;
    transition: all 0.3s;
}
.v2-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-menu-toggle.active span:nth-child(2) { opacity: 0; }
.v2-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v2-mobile-nav { max-height: 0; overflow: hidden; background: var(--bg-darker); transition: max-height 0.3s ease; }
.v2-mobile-nav.open { max-height: 400px; }
.v2-mobile-nav ul { padding: 8px 0; }
.v2-mobile-nav li a {
    display: block; padding: 14px 22px;
    font-size: 15px; font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, background 0.2s;
}
.v2-mobile-nav li:last-child a { border-bottom: none; }
.v2-mobile-nav li a:hover { background: rgba(59,130,246,0.08); color: var(--accent-light); }

/* ============================================ HERO */
.v2-hero {
    position: relative;
    padding: 90px 22px 32px;
    min-height: 720px;
    overflow: hidden;
}
.v2-hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,25,41,0.7) 0%, rgba(10,25,41,0.95) 100%),
        url('../img/Banner-bg.jpg') center/cover no-repeat;
    z-index: 0;
}
.v2-hero-grid { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.v2-hero-left { max-width: 600px; }

.v2-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.35);
    color: var(--accent-light);
    font-size: 12px; font-weight: 600;
    border-radius: 999px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.v2-hero-badge i { font-size: 12px; }

.v2-hero h1 {
    font-size: 44px; font-weight: 800;
    line-height: 1.05; letter-spacing: -1px;
    margin-bottom: 18px;
}
.v2-hero h1 span { color: var(--accent-light); font-weight: 700; }
.v2-hero p {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.55; margin-bottom: 28px; max-width: 520px;
}

.v2-feature-row { display: flex; gap: 14px; margin-bottom: 28px; }
.v2-feature { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.v2-feature i { font-size: 28px; color: var(--accent-light); margin-bottom: 6px; }
.v2-feature strong { font-size: 14px; font-weight: 700; }
.v2-feature span { font-size: 12px; color: var(--text-secondary); }

.v2-hero-actions { display: flex; flex-direction: column; gap: 12px; }
.v2-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px 28px;
    background: var(--accent); color: #fff;
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    border-radius: 999px;
    box-shadow: 0 8px 24px var(--accent-glow);
    transition: all 0.25s;
    width: 100%; max-width: 360px;
}
.v2-cta:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.v2-cta-arrow { margin-left: auto; }
.v2-cta-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 24px;
    color: var(--text-primary);
    font-size: 14px; font-weight: 500;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    transition: all 0.25s;
    width: 100%; max-width: 360px;
}
.v2-cta-ghost:hover { border-color: var(--accent); color: var(--accent-light); }

.v2-hero-right { margin-top: 36px; }

/* ============================================ SLIDER */
.v2-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
}
.v2-slides { position: relative; height: 200px; overflow: hidden; }
.v2-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.5s ease;
    display: flex; align-items: center;
}
.v2-slide.active { opacity: 1; }
.v2-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,18,32,0.85) 0%, rgba(6,18,32,0.4) 100%);
}
.v2-slide-content { position: relative; padding: 0 70px 0 24px; z-index: 1; }
.v2-slide-content h3 {
    font-size: 18px; font-weight: 700; line-height: 1.15;
    margin-bottom: 8px; letter-spacing: -0.3px;
}
.v2-slide-content h3 span { color: var(--accent-light); }
.v2-slide-content p {
    font-size: 12px; color: var(--text-secondary);
    line-height: 1.4; max-width: 240px;
}
.v2-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.5); border-radius: 50%;
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 14px; z-index: 5; transition: background 0.2s;
}
.v2-slider-arrow:hover { background: var(--accent); }
.v2-slider-prev { left: 12px; }
.v2-slider-next { right: 12px; }

.v2-slider-dots {
    display: flex; justify-content: center; gap: 8px;
    padding: 12px 0;
    background: rgba(0,0,0,0.3);
}
.v2-slider-dots span {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--text-muted); transition: all 0.2s; cursor: pointer;
}
.v2-slider-dots span.active { background: var(--accent-light); width: 22px; border-radius: 4px; }

/* ============================================ TRUST BAR */
.v2-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 22px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.v2-trust-item { text-align: center; }
.v2-trust-item strong {
    display: block;
    font-size: 28px; font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 4px;
}
.v2-trust-item span { font-size: 12px; color: var(--text-secondary); }

/* ============================================ SECTIONS COMMON */
.v2-section-header { text-align: center; margin-bottom: 36px; }
.v2-section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59,130,246,0.12);
    color: var(--accent-light);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.v2-services h2, .v2-contracts h2, .v2-contact h2 {
    font-size: 26px; font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.15;
}
.v2-section-desc {
    font-size: 14px; color: var(--text-secondary);
    line-height: 1.55;
    max-width: 600px; margin: 0 auto;
}

/* ============================================ SERVICES */
.v2-services { padding: 60px 22px 40px; background: var(--bg-darker); }
.v2-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}
.v2-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 16px;
    transition: all 0.25s;
}
.v2-service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.v2-service-highlight {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-glow);
}
.v2-service-highlight i,
.v2-service-highlight h4,
.v2-service-highlight p { color: #fff !important; }
.v2-service-highlight:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-color: var(--accent-light);
}
.v2-service-card i {
    font-size: 26px; color: var(--accent-light);
    margin-bottom: 14px; display: block;
}
.v2-service-card h4 {
    font-size: 14px; font-weight: 700;
    margin-bottom: 6px; letter-spacing: -0.2px;
}
.v2-service-card p {
    font-size: 12px; color: var(--text-secondary); line-height: 1.45;
}

.v2-trust-badge {
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, var(--bg-card), rgba(59,130,246,0.1));
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: 24px;
}
.v2-trust-badge i { font-size: 28px; color: var(--accent-light); }
.v2-trust-badge div { display: flex; flex-direction: column; }
.v2-trust-badge strong { font-size: 14px; font-weight: 700; }
.v2-trust-badge span { font-size: 13px; color: var(--accent-light); }

/* ============================================ CONTRACTS */
.v2-contracts { padding: 60px 22px 50px; background: var(--bg-dark); }
.v2-contract-grid { display: flex; flex-direction: column; gap: 16px; }
.v2-contract-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.25s;
}
.v2-contract-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.v2-contract-featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59,130,246,0.15) 100%);
    border-color: var(--accent);
    box-shadow: 0 12px 36px rgba(59,130,246,0.18);
}
.v2-contract-popular {
    position: absolute; top: -12px; right: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px var(--accent-glow);
}
.v2-contract-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.v2-contract-header i { font-size: 22px; color: var(--accent-light); }
.v2-contract-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    color: var(--accent-light);
    padding: 4px 10px;
    background: rgba(59,130,246,0.12);
    border-radius: 4px;
}
.v2-contract-card h3 {
    font-size: 22px; font-weight: 800;
    letter-spacing: -0.3px; margin-bottom: 18px;
}
.v2-contract-card ul { margin-bottom: 22px; }
.v2-contract-card li {
    position: relative; padding: 9px 0 9px 28px;
    font-size: 13px; color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.v2-contract-card li:last-child { border-bottom: none; }
.v2-contract-card li::before {
    content: "\f00c"; font-family: 'FontAwesome';
    position: absolute; left: 0; top: 9px;
    color: var(--accent-light); font-size: 12px;
}
.v2-contract-btn {
    display: block; text-align: center;
    padding: 14px 22px;
    background: var(--accent); color: #fff;
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    border-radius: 999px;
    transition: all 0.25s;
}
.v2-contract-btn:hover { background: var(--accent-light); box-shadow: 0 6px 20px var(--accent-glow); }

/* ============================================ CONTACT */
.v2-contact { padding: 60px 22px 50px; background: var(--bg-darker); scroll-margin-top: 80px; }
.v2-contact-grid { display: flex; flex-direction: column; gap: 32px; }
@media (max-width: 767px) {
    .v2-contact-grid { gap: 4px; }
    .v2-contact { scroll-margin-top: 80px; }
}
.v2-contact-left .v2-section-tag,
.v2-contact-left h2,
.v2-contact-left .v2-section-desc { text-align: left; margin-left: 0; }
.v2-contact-left h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.v2-contact-left .v2-section-desc { margin-bottom: 28px; }
.v2-section-desc-desktop { display: none; }
.v2-section-desc-mobile { display: block; text-align: left; margin: 28px 0; }
.v2-contact-info { display: none; }
.v2-contact-info-mobile { display: flex; flex-direction: column; gap: 18px; }
.v2-info-item { display: flex; align-items: center; gap: 16px; }
.v2-info-item i {
    font-size: 18px; color: var(--accent-light);
    width: 44px; height: 44px;
    background: rgba(59,130,246,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.v2-info-item div { display: flex; flex-direction: column; }
.v2-info-item strong { font-size: 13px; color: var(--text-primary); margin-bottom: 2px; }
.v2-info-item span,
.v2-info-item a { font-size: 13px; color: var(--text-secondary); }
.v2-info-item a { color: var(--accent-light); }
.v2-info-item a:hover { text-decoration: underline; }

.v2-contact-form { display: flex; flex-direction: column; gap: 14px; }
.v2-input-group { position: relative; }
.v2-input-group i {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 14px;
}
.v2-input-group textarea ~ i,
.v2-input-group:has(textarea) i {
    top: 14px; transform: none;
}
.v2-input-group input,
.v2-input-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 10px 18px 10px 46px;
    color: var(--text-primary);
    font-size: 14px; font-family: inherit;
    transition: all 0.2s;
    resize: vertical;
}
.v2-input-group input::placeholder,
.v2-input-group textarea::placeholder { color: var(--text-muted); letter-spacing: 0.5px; }
.v2-input-group input:focus,
.v2-input-group textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.v2-cta-full { width: 100%; max-width: 100%; }

/* ============================================ FOOTER */
.v2-footer {
    background: #04101c;
    padding: 40px 22px 0;
    border-top: 1px solid var(--border);
}
.v2-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto 30px;
}
.v2-footer-col h5 {
    font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.v2-footer-col p {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.55;
}
.v2-footer-logo { height: 40px; margin-bottom: 14px; }
.v2-footer-col ul li {
    font-size: 13px; color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 10px;
}
.v2-footer-col ul li i { color: var(--accent-light); width: 14px; }
.v2-footer-col ul li a { color: var(--text-secondary); transition: color 0.2s; }
.v2-footer-col ul li a:hover { color: var(--accent-light); }

.v2-social { display: flex; gap: 10px; }
.v2-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border-radius: 50%;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.v2-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }

.v2-footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}
.v2-footer-bottom p { font-size: 11px; color: var(--text-muted); }

/* ============================================ WHATSAPP FLOAT */
.v2-whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--green-wpp);
    color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    animation: v2-wpp-pulse 2.2s infinite;
}
.v2-whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37,211,102,0.55);
    animation: none;
}
@keyframes v2-wpp-pulse {
    0%   { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================ TABLET (≥ 768px) */
@media (min-width: 768px) {
    .v2-header-inner { padding: 14px 32px; }
    .v2-menu-toggle { display: none; }
    .v2-mobile-nav { display: none; }
    .v2-desktop-nav { display: block; flex: 1; margin: 0 32px; }
    .v2-desktop-nav ul { display: flex; gap: 4px; justify-content: center; }
    .v2-desktop-nav li a {
        display: block; padding: 10px 18px;
        font-size: 14px; font-weight: 500;
        border-radius: 8px;
        color: var(--text-secondary);
        transition: all 0.2s;
    }
    .v2-desktop-nav li a:hover { background: rgba(59,130,246,0.1); color: var(--accent-light); }
    .v2-header-cta {
        display: inline-flex; align-items: center; justify-content: center;
        padding: 10px 22px;
        background: var(--accent); color: #fff;
        font-size: 13px; font-weight: 600;
        border-radius: 999px;
        transition: all 0.25s;
        box-shadow: 0 4px 14px var(--accent-glow);
    }
    .v2-header-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

    .v2-trust-bar { grid-template-columns: repeat(4, 1fr); padding: 36px 32px; gap: 30px; }
    .v2-trust-item strong { font-size: 36px; }

    .v2-services, .v2-contracts, .v2-contact { padding: 80px 32px; max-width: 1280px; margin: 0 auto; }
    .v2-services h2, .v2-contracts h2 { font-size: 36px; }
    .v2-section-desc { font-size: 16px; }

    .v2-service-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .v2-service-card { padding: 26px 22px; }
    .v2-service-card i { font-size: 30px; }
    .v2-service-card h4 { font-size: 16px; }
    .v2-service-card p { font-size: 13px; }

    .v2-contract-grid { flex-direction: row; gap: 20px; }
    .v2-contract-card { flex: 1; padding: 32px 28px; }

    .v2-contact-grid { flex-direction: row; gap: 60px; align-items: start; }
    .v2-contact-left, .v2-contact-form { flex: 1; }
    .v2-contact-info { display: flex; flex-direction: column; gap: 18px; }
    .v2-contact-info-mobile { display: none; }
    .v2-section-desc-desktop { display: block; }
    .v2-section-desc-mobile { display: none; }

    .v2-footer-grid { grid-template-columns: 2fr 1fr 1.4fr 1fr; gap: 40px; }
    .v2-footer { padding: 60px 32px 0; }
}

/* ============================================ DESKTOP (≥ 1024px) */
@media (min-width: 1024px) {
    .v2-hero { padding: 120px 60px 80px; min-height: 760px; }
    .v2-hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .v2-hero-left { max-width: 100%; }
    .v2-hero h1 { font-size: 64px; }
    .v2-hero p { font-size: 17px; }
    .v2-hero-actions { flex-direction: row; }
    .v2-cta { width: auto; max-width: none; }
    .v2-cta-ghost { width: auto; max-width: none; }

    .v2-hero-right { margin-top: 0; }
    .v2-slides { height: 360px; }
    .v2-slide-content { padding: 0 90px 0 36px; }
    .v2-slide-content h3 { font-size: 26px; }
    .v2-slide-content p { font-size: 14px; max-width: 320px; }

    .v2-services h2, .v2-contracts h2 { font-size: 42px; }
    .v2-service-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* ============================================ LARGE DESKTOP (≥ 1280px) */
@media (min-width: 1280px) {
    .v2-hero h1 { font-size: 76px; }
    .v2-slides { height: 420px; }
}

/* ============================================ POPUPS */
.v2-aviso-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 9999;
    max-width: 380px;
    transform: translateY(400px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.v2-aviso-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5, #00d2ff);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.v2-aviso-popup.mostrar {
    transform: translateY(0) scale(1);
}

.v2-aviso-popup .v2-aviso-conteudo {
    display: flex;
    flex-direction: column;
    padding: 12px 20px 16px 20px;
    gap: 10px;
    position: relative;
}

.v2-aviso-titulo {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.v2-aviso-corpo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.v2-aviso-esquerda {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.v2-aviso-popup .v2-aviso-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 210, 255, 0.3);
}

.v2-aviso-popup .v2-aviso-texto {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    min-width: 0;
}

.v2-aviso-botao {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    align-self: flex-end;
}

.v2-aviso-botao:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.v2-aviso-popup .v2-aviso-fechar {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.v2-aviso-popup .v2-aviso-fechar:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.v2-sucesso-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.v2-sucesso-popup.mostrar {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.v2-sucesso-conteudo {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.8);
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.v2-sucesso-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.v2-sucesso-titulo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.v2-sucesso-texto {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

.v2-sucesso-fechar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.v2-sucesso-fechar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    to { transform: scale(1); }
}

@media (max-width: 768px) {
    .v2-aviso-popup {
        left: 10px;
        right: auto;
        bottom: 10px;
        max-width: 70%;
    }
    
    .v2-aviso-corpo {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .v2-aviso-esquerda {
        flex: 1;
        min-width: 0;
        gap: 10px;
        width: 100%;
    }
    
    .v2-aviso-popup .v2-aviso-texto {
        font-size: 13px;
        line-height: 1.3;
        flex: 1;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .v2-aviso-popup .v2-aviso-icon {
        flex-shrink: 0;
    }
    
    .v2-aviso-botao {
        flex-shrink: 0;
        width: 100%;
        text-align: center;
        padding: 5px 8px;
    }
}

@media (max-width: 480px) {
    .v2-aviso-popup {
        left: 10px;
        right: auto;
        bottom: 10px;
        max-width: 70%;
    }
    
    .v2-aviso-popup .v2-aviso-conteudo {
        padding: 12px 14px;
        gap: 8px;
    }
    
    .v2-aviso-corpo {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .v2-aviso-esquerda {
        gap: 8px;
        flex: 1;
        min-width: 0;
        width: 100%;
    }
    
    .v2-aviso-popup .v2-aviso-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .v2-aviso-popup .v2-aviso-texto {
        font-size: 12px;
        line-height: 1.3;
        flex: 1;
    }
    
    .v2-aviso-botao {
        padding: 5px 8px;
        font-size: 10px;
        flex-shrink: 0;
        width: 100%;
        text-align: center;
    }
    
    .v2-sucesso-conteudo {
        padding: 32px 24px;
    }
    
    .v2-sucesso-titulo {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .v2-aviso-titulo {
        font-size: 13px;
    }
    
    .v2-aviso-botao {
        padding: 5px 10px;
        font-size: 9px;
        letter-spacing: 0.2px;
    }
}
