/* Reset Básico e Fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Source+Sans+3:wght@400;600&display=swap');

:root {
    --blue-deep: #003366;
    --blue-dark: #004a8f;
    --blue-mid: #0066b8;
    --blue-primary: #0078d4;
    --blue-bright: #1a8cff;
    --blue-light: #4da6ff;
    --blue-pale: #e8f4fc;
    --accent-gold: #ffe566;
    --text-on-blue: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.88);
    --text-soft: rgba(255, 255, 255, 0.72);
    --border-blue: rgba(255, 255, 255, 0.22);
    --gradient-body: linear-gradient(155deg, #003366 0%, #004a8f 28%, #0078d4 62%, #1a8cff 100%);
    --gradient-panel: linear-gradient(145deg, #004a8f 0%, #0078d4 55%, #2b9bff 100%);
    --gradient-header: linear-gradient(90deg, rgba(0, 51, 102, 0.94) 0%, rgba(0, 120, 212, 0.9) 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    margin: 0;
    color: var(--text-on-blue);
    background-color: var(--blue-deep);
    background-image: var(--gradient-body);
    background-attachment: fixed;
    min-height: 100vh;
}

h1, h2, h3, .logo, .hero-brand {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.main-header {
    background: var(--gradient-header);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-blue);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.35);
}
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.logo-img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}
.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a8cff, #004a8f);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 12px;
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
}
.main-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.main-nav a.nav-cta {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.main-nav a.nav-cta:hover {
    background: #fff;
    color: #004a8f;
}

/* HERO HUB */
.hero-hub {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    padding: 110px 20px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-hub-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(26, 140, 255, 0.45), transparent 55%),
        linear-gradient(160deg, rgba(0, 40, 90, 0.82) 0%, rgba(0, 90, 170, 0.68) 55%, rgba(0, 120, 212, 0.55) 100%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    from { opacity: 0.92; }
    to { opacity: 1; }
}
.hero-hub-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.hero-brand {
    margin: 0 0 14px;
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 30, 70, 0.45);
    animation: fadeUp 0.7s ease both;
}
.hero-hub h1 {
    margin: 0 0 16px;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    animation: fadeUp 0.7s ease 0.1s both;
}
.hero-lead {
    margin: 0 auto 28px;
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--text-muted);
    animation: fadeUp 0.7s ease 0.2s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 0 28px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.3s both;
}
.btn {
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
    min-width: 200px;
    line-height: 1.2;
    cursor: pointer;
}
.btn i { font-size: 18px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 40, 90, 0.35); }
.btn-green {
    background: linear-gradient(135deg, #00a86b 0%, #1ed760 100%);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #004a8f;
}
.btn-lg { min-width: 260px; padding: 16px 32px; font-size: 16px; }
.features-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}
.dot-separator { color: var(--accent-gold); margin: 0 8px; }

/* SEÇÕES DO HUB */
.hub-section {
    padding: 72px 0;
    position: relative;
}
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #fff;
}
.section-head p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.section-head-light { margin-bottom: 36px; }

.hub-benefits {
    background: linear-gradient(180deg, rgba(0, 41, 82, 0.55), rgba(0, 100, 180, 0.25));
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.benefit-item {
    text-align: center;
    padding: 28px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 40, 90, 0.28);
    transition: transform 0.25s ease, background 0.25s ease;
}
.benefit-item:hover {
    transform: translateY(-4px);
    background: rgba(0, 80, 160, 0.4);
}
.benefit-item i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 14px;
}
.benefit-item h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: #fff;
}
.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.45;
}

.hub-promo,
.hub-compare {
    background: transparent;
}
.promo-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 50px rgba(0, 30, 70, 0.4);
    max-width: 920px;
    margin: 0 auto;
}
.promo-frame img {
    display: block;
    width: 100%;
    height: auto;
}
.promo-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.compare-points {
    list-style: none;
    margin: 28px auto 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 18px 28px;
    flex-wrap: wrap;
    max-width: 800px;
}
.compare-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
}
.compare-points i { color: #7dffb3; }

.hub-devices {
    background: linear-gradient(180deg, rgba(0, 100, 180, 0.2), rgba(0, 41, 82, 0.5));
}
.devices-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.device-item {
    min-width: 120px;
    padding: 22px 16px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease;
}
.device-item:hover { transform: translateY(-3px); }
.device-item i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}
.device-item span {
    font-weight: 700;
    font-size: 0.92rem;
}

.hub-steps {
    background: linear-gradient(160deg, rgba(0, 51, 102, 0.65), rgba(0, 120, 212, 0.35));
}
.steps-list {
    list-style: none;
    margin: 0 auto 36px;
    padding: 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.steps-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 40, 90, 0.3);
}
.step-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #1a8cff, #004a8f);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.steps-list h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #fff;
}
.steps-list p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.45;
}

.hub-final-cta {
    padding: 80px 20px;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(26, 140, 255, 0.35), transparent 60%),
        linear-gradient(135deg, #002952 0%, #0078d4 100%);
}
.hub-final-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
}
.hub-final-cta p {
    margin: 0 auto 28px;
    max-width: 520px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* --- CATÁLOGO DE MÍDIA COM CARROSSEL --- */

.media-catalog-background {
    position: relative;
    padding: 50px 0;
    background-image: url('../img/bg-azul.png'), var(--gradient-panel);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.media-catalog-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(0, 51, 102, 0.78) 0%, rgba(0, 100, 180, 0.7) 50%, rgba(0, 120, 212, 0.65) 100%);
    z-index: 1;
}

.media-catalog-background .container {
    position: relative;
    z-index: 2;
}

.media-row {
    margin-bottom: 50px;
}

.media-row h2 {
    font-size: 24px;
    margin-bottom: 20px;
    border-left: 4px solid #ffffff;
    padding-left: 15px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 30, 70, 0.4);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.auto-carousel {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track-auto {
    display: flex;
    width: fit-content;
    animation: scroll 80s linear infinite;
}

.auto-carousel:hover .carousel-track-auto {
    animation-play-state: paused;
}

.media-poster {
    width: 200px;
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 40, 90, 0.35);
}

.media-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-poster:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Rodapé */
.main-footer {
    padding: 40px 0 28px;
    background: linear-gradient(90deg, #002952 0%, #004a8f 100%);
    border-top: 1px solid var(--border-blue);
    color: var(--text-muted);
}
.footer-grid {
    display: grid;
    gap: 24px;
    text-align: center;
}
.footer-brand strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 8px;
}
.footer-brand p {
    margin: 0 auto;
    max-width: 420px;
    line-height: 1.45;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.footer-links a:hover { text-decoration: underline; }
.footer-copy p { margin: 0; font-size: 0.9rem; color: var(--text-soft); }

@media (max-width: 900px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #003366, #004a8f);
        border-bottom: 1px solid var(--border-blue);
        padding: 12px 16px 18px;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; align-items: stretch; }
    .main-nav a { display: block; text-align: center; }
    .hero-hub { min-height: auto; padding: 100px 16px 56px; }
    .btn { min-width: 100%; }
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-list li { flex-direction: column; align-items: center; text-align: center; }
}

/* --- MODAL DE TESTE GRÁTIS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 40, 90, 0.72);
    backdrop-filter: blur(5px);
}
.modal-content {
    background: linear-gradient(160deg, #004a8f 0%, #0078d4 100%);
    margin: 15% auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 32px rgba(0, 30, 70, 0.45);
    color: #fff;
}
.close-button {
    color: rgba(255, 255, 255, 0.75);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-button:hover { color: #fff; }
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.35);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
#modalResult h2 { color: #7dffb3; }
.trial-details {
    background-color: rgba(0, 40, 90, 0.35);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.trial-details p { margin: 10px 0; font-size: 18px; color: #fff; }
.btn-copy {
    background: linear-gradient(135deg, #0055a5 0%, #1a8cff 100%);
    color: white;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}
.btn-copy:hover { background: linear-gradient(135deg, #004a8f 0%, #0078d4 100%); }
.small-text { font-size: 12px; color: var(--text-soft); margin-top: 20px; }

/* --- FORMULÁRIO NO MODAL --- */
#trial-form .form-group { margin-bottom: 15px; }
#trial-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #003366;
    box-sizing: border-box;
}
#trial-form input::placeholder { color: #5a7a9a; }
.btn-submit {
    background: linear-gradient(135deg, #00a86b 0%, #1ed760 100%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
}
.btn-submit:hover { background: linear-gradient(135deg, #00945e 0%, #1db954 100%); }
.error-message { color: #ffd0d0; margin-top: 10px; font-size: 14px; text-align: center; }

/* --- WIDGET DE CHAT --- */
.chat-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 40, 90, 0.35);
    z-index: 998;
    transition: transform 0.3s ease;
}
.chat-fab:hover { transform: scale(1.1); }

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    max-width: 90vw;
    height: 500px;
    background-color: #e8f4fc;
    border-radius: 15px;
    box-shadow: 0 8px 28px rgba(0, 40, 90, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}
.chat-window.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(90deg, #004a8f 0%, #0078d4 100%);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
}
.chat-close-btn {
    position: absolute;
    top: 5px;
    left: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
.chat-avatar { margin-left: 30px; }
.chat-avatar img { width: 40px; height: 40px; border-radius: 50%; }
.chat-agent-info { margin-left: 15px; }
.chat-agent-info h3 { margin: 0; font-size: 16px; color: #fff; }

.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.message-container { display: flex; margin-bottom: 15px; max-width: 85%; }
.chat-avatar-msg img { width: 30px; height: 30px; border-radius: 50%; margin-right: 10px; }

.message-bubble {
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}
.message-time { font-size: 11px; color: #5a7a9a; text-align: right; margin-top: 5px; }

.bot-message { align-self: flex-start; }
.bot-message .message-bubble { background-color: #fff; color: #003366; box-shadow: 0 1px 4px rgba(0, 60, 120, 0.12); }

.user-message { align-self: flex-end; }
.user-message .message-bubble { background: linear-gradient(135deg, #0066b8 0%, #1a8cff 100%); color: #fff; }

.quick-replies { padding: 10px 20px; text-align: right; }
.reply-option {
    background-color: #fff;
    border: 1px solid #0078d4;
    color: #004a8f;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 8px;
    font-size: 14px;
    transition: all 0.2s;
}
.reply-option:hover { background-color: #0078d4; color: #fff; }

.chat-footer {
    padding: 10px;
    background-color: #d6ebf8;
    display: flex;
    align-items: center;
}
.chat-footer input {
    flex-grow: 1;
    border: 1px solid rgba(0, 120, 212, 0.25);
    padding: 10px;
    border-radius: 20px;
    margin-right: 10px;
    color: #003366;
}
.chat-footer button {
    background: linear-gradient(135deg, #0055a5 0%, #0078d4 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}
.chat-footer input:disabled, .chat-footer button:disabled { opacity: 0.5; }
.chat-footer button:hover {
    background: linear-gradient(135deg, #004a8f 0%, #0066b8 100%);
}

/* Resultado do modal (área clara — texto escuro) */
#modalResult {
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #e8f4fc 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 40, 90, 0.2);
    max-width: 500px;
    margin: 40px auto;
    border: 1px solid rgba(0, 120, 212, 0.2);
    color: #003366;
}
#modalResult .trial-details {
    background-color: #f0f7fc;
    border: 1px solid #a8cce8;
    color: #003366;
}
#modalResult .trial-details p {
    color: #003366;
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header .fa-check-circle {
    font-size: 48px;
    color: #00a86b;
    margin-bottom: 15px;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #003366;
}

.modal-header p {
    margin: 5px 0 0;
    color: #4a6f8f;
    font-size: 16px;
}

.modal-body {
    width: 100%;
}

.trial-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item label {
    font-weight: 600;
    color: #004a8f;
    margin-bottom: 6px;
    font-size: 14px;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group input[type="text"] {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #a8cce8;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    background-color: #ffffff;
    color: #003366;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input[type="text"]:focus {
    border-color: #0078d4;
}

.input-group button {
    padding: 12px 15px;
    border: 1px solid #a8cce8;
    border-left: none;
    background-color: #e8f4fc;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: background-color 0.3s;
}

.input-group button:hover {
    background-color: #d0e9f8;
}

.input-group button i {
    color: #004a8f;
    font-size: 16px;
}

.btn-copy-all {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #0055a5 0%, #1a8cff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-copy-all:hover {
    background: linear-gradient(135deg, #004a8f 0%, #0078d4 100%);
}

.small-text {
    text-align: center;
    font-size: 12px;
    color: #5a7a9a;
    margin: 0;
}

.modal-footer {
    margin-top: 25px;
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1EBE57;
}

.btn-whatsapp i {
    font-size: 20px;
}
