:root {
    /* Cores */
    --primary-color: #ff6600;
    --primary-dark: #e65c00;
    --secondary-color: #2c3e50;
    --dark-color: #121212;
    --darker-color: #0d0d0d;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #ffffff;
    --text-gray: #777777;
    
    /* Espaçamentos */
    --section-padding: 4rem 0;
    --container-width: 1200px;
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}

body {
    padding-bottom: 7rem; /* Espaço para os botões flutuantes no mobile e desktop */
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    -webkit-user-select: auto;
    user-select: auto;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    min-height: 44px;
    -webkit-user-select: auto;
    user-select: auto;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.primary-btn:hover, .primary-btn:active {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.secondary-btn:hover, .secondary-btn:active {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--text-light);
}

.whatsapp-btn:hover, .whatsapp-btn:active {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--text-light);
    width: 100%;
}

.submit-btn:hover, .submit-btn:active {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header Redesign */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to right, var(--secondary-color) 0%, var(--dark-color) 100%);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.header-brand {
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 1;
}

.header-logo {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
    margin: 0 2rem;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    white-space: nowrap;
}

.header-cta:hover, .header-cta:active {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
}

/* Menu Mobile */
.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1100;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(to bottom, var(--secondary-color) 0%, var(--dark-color) 100%);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition-normal);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    z-index: 1200;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-cta {
    margin-top: 2rem;
    width: 100%;
}

/* BANNER PRINCIPAL CORRIGIDO - SEM CORTES */
.banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.banner-content-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.banner-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Media Queries para responsividade do banner */
@media (max-width: 1200px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .banner {
        min-height: 500px;
    }
    
    .banner-bg-img {
        object-position: 25% center;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 0 1.5rem;
    }
    
    .banner-content-inner {
        padding: 1.5rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-bg-img {
        object-position: 30% center;
    }
}

@media (max-width: 576px) {
    .banner {
        min-height: 450px;
    }
    
    .banner-content h1 {
        font-size: 1.75rem;
    }
    
    .banner-content p {
        font-size: 0.95rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Seção de Benefícios */
.benefits-section {
    background-color: var(--gray-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Seção de Conteúdo Programático */
.content-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.content-section .section-title {
    color: var(--text-light);
}

.content-section .section-title::after {
    background-color: var(--primary-color);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background-color: var(--dark-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    gap: 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.module-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.module-content ul {
    margin-top: 1rem;
}

.module-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.module-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Seção Sobre */
.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content .subtitle {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Seção de Contato */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 1;
    transform: translateY(0);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition-fast);
    font-size: 16px; /* Prevenir zoom no iOS */
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

/* Rodapé */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Botão Flutuante do WhatsApp - PRIORIDADE MÁXIMA */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;      /* Distância da borda direita */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1001; /* MAIOR PRIORIDADE */
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover, .floating-whatsapp:active {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #075E54;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    left: 75px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botão Flutuante para Topo - POSIÇÃO CORRIGIDA */
.floating-top {
    position: fixed;
    bottom: 14rem; /* POSIÇÃO CORRIGIDA - Abaixo do WhatsApp, acima de tudo */
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 1003; /* Abaixo do WhatsApp, acima de tudo */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.floating-top.visible {
    opacity: 1;
    visibility: visible;
}

.floating-top:hover, .floating-top:active {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Menu Flutuante de Navegação - PRIORIDADE MAIS BAIXA */
.floating-nav {
    position: fixed;
    right: 2rem;
    bottom: 8rem;
    z-index: 1002; /* ABAIXO dos outros botões */
}

.floating-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-nav-item {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
}

.floating-nav-item:hover, .floating-nav-item:active {
    background-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.1);
}

.floating-nav-item.cta {
    background-color: var(--secondary-color);
}

.floating-nav-item.cta:hover, .floating-nav-item.cta:active {
    background-color: var(--dark-color);
}

.floating-nav-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.floating-nav-item:hover::after {
    opacity: 1;
    right: 65px;
}

/* Ajustes responsivos para o botão do WhatsApp */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 55px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 1.2rem;
        right: 1rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .floating-whatsapp:hover, .floating-whatsapp:active {
        transform: scale(1.05);
    }
}

@media (max-width: 576px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.2rem;
        right: 0.8rem;
    }
}

@media (max-width: 400px) {
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 1rem;
        right: 0.7rem;
    }
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-logo {
        height: 50px;
    }
    
    /*.mobile-menu-container {
        display: block;
    }*/
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .floating-nav {
        right: 1rem;
        bottom: 5.5rem;
    }
    
    .floating-nav-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-top {
        bottom: 10rem !important; /* POSIÇÃO CORRIGIDA */
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .floating-nav-item::after {
        display: none;
    }
}

@media (max-width: 576px) {
    body {
        padding-bottom: 12rem;
    }
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 1rem;
        right: 0.7rem;
    }
    .floating-top {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        bottom: 5.5rem;
        right: 0.7rem;
    }
    .floating-nav {
        right: 0.7rem;
        bottom: 1rem;
    }
    .floating-nav-item {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 1rem;
    }
    
    .floating-nav {
        bottom: 6rem !important;
        right: 0.5rem;
        z-index: 998;
    }
    
    .floating-nav-item {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .floating-top {
        bottom: 8rem !important; /* POSIÇÃO CORRIGIDA */
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        z-index: 999;
    }
}

/* Prevenção de problemas de zoom */
@media (max-width: 768px) {
    body {
        padding-bottom: 10rem; /* Mais espaço para os flutuantes no mobile */
    }
    
    input, select, textarea, button {
        font-size: 16px !important;
    }
}

/* Melhorias de acessibilidade para zoom */
.container, .banner-content, .section {
    transform: translateZ(0);
}

img, .btn, .floating-nav-item, .floating-top {
    transform: translateZ(0);
    backface-visibility: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

@media screen and (min-width: 769px) {
    .floating-nav {
        right: 2rem;
        bottom: 8rem; /* Menu flutuante acima do WhatsApp */
        z-index: 1002;
    }
    .floating-whatsapp {
        right: 2rem;
        bottom: 2rem; /* WhatsApp logo abaixo do menu flutuante */
        z-index: 1001;
        margin-top: 0; /* Remova o margin-top */
    }
    .floating-top {
        right: 2rem;
        bottom: 14rem; /* Seta de topo acima do menu flutuante */
        z-index: 1003;
    }
}

/* Melhorias para dispositivos touch */
.touch-device .btn,
.touch-device .floating-nav-item,
.touch-device .floating-whatsapp,
.touch-device .floating-top {
    transition: all 0.15s ease;
}

.touch-device .btn:active,
.touch-device .floating-nav-item:active,
.touch-device .floating-whatsapp:active,
.touch-device .floating-top:active {
    transform: scale(0.95);
}

/* Garantir que todos os elementos interativos sejam clicáveis imediatamente */
a, button, .btn, input[type="submit"], input[type="button"] {
    cursor: pointer;
    -webkit-user-select: auto;
    user-select: auto;
}

/* Remover estilos de foco padrão e adicionar estilos personalizados */
*:focus {
    outline: none;
}

.btn:focus-visible,
.floating-nav-item:focus-visible,
.floating-whatsapp:focus-visible,
.floating-top:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}