/* Estilos Gerais */
.wa-dashboard {
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a) !important;
    min-height: 100vh !important;
    padding: 2rem 1rem !important;
    color: #ffffff !important;
}

/* Header */
.wa-header {
    margin-bottom: 2rem;
    padding: 1rem 0;
    text-align: center;
}

.wa-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.wa-subtitle {
    font-size: 1rem;
    color: #666;
    padding: 0 1rem;
}

/* Grid de Cards */
.wa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
    margin-bottom: 3rem;
}

/* Cards */
.wa-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.wa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.wa-card-icon {
    font-size: 2rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.wa-card h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.wa-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Botões */
.wa-btn {
    width: 100%;
    padding: 1rem;
    justify-content: center;
    font-size: 1rem;
    touch-action: manipulation;
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wa-btn i {
    margin-right: 0.5rem;
}

.wa-btn:hover {
    background: #128C7E;
    transform: translateX(5px);
}

/* Barra de Status */
.wa-status-bar {
    flex-direction: column;
    padding: 1rem;
    gap: 0.8rem;
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wa-status-item {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    color: #666;
}

.wa-status-item i {
    margin-right: 0.5rem;
    color: #25D366;
}

/* Media Queries para tablets e desktop */
@media (min-width: 768px) {
    .wa-dashboard {
        padding: 2rem;
    }

    .wa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .wa-status-bar {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .wa-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wa-card {
        padding: 2rem;
    }
}

/* Melhorias de Acessibilidade */
.wa-btn:focus {
    outline: 3px solid #25D366;
    outline-offset: 2px;
}

/* Feedback visual ao toque */
.wa-card:active {
    transform: scale(0.98);
}

/* Loading States */
.wa-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Skeleton Loading Animation */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.wa-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-card {
    animation: fadeIn 0.5s ease-out forwards;
}

.wa-card:nth-child(2) {
    animation-delay: 0.1s;
}

.wa-card:nth-child(3) {
    animation-delay: 0.2s;
}

.wa-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Estilos modernos para o dashboard */
.wa-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wa-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.wa-interactive-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wa-interactive-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards Interativos */
.wa-interactive-card {
    perspective: 1000px;
    height: 180px;
    max-width: 350px;
    margin: 0 auto;
}

.wa-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.wa-interactive-card:hover .wa-card-inner {
    transform: rotateY(180deg);
}

.wa-card-front, .wa-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
}

.wa-card-front {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-card-back {
    background: linear-gradient(45deg, #25D366, #128C7E);
    transform: rotateY(180deg);
}

.wa-card-front i {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: #25D366;
}

.wa-card-front h2 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.wa-card-back p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.wa-btn-modern {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.wa-btn-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Status Bar Moderna */
.wa-status-modern {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.wa-status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wa-status-item i {
    color: #25D366;
}

/* Responsividade */
@media (max-width: 768px) {
    .wa-interactive-row {
        grid-template-columns: 1fr;
    }

    .wa-header h1 {
        font-size: 2rem;
    }

    .wa-status-modern {
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5rem;
    }

    .wa-status-item {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .wa-interactive-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .wa-interactive-card {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .wa-interactive-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wa-dashboard {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .wa-interactive-grid {
        padding: 0;
    }
}

@media (max-width: 360px) {
    .wa-interactive-card {
        height: 160px;
    }
    
    .wa-card-front i {
        font-size: 2.5rem;
    }
    
    .wa-card-front h2 {
        font-size: 1.1rem;
    }
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.wa-interactive-card:hover {
    animation: pulse 1s infinite;
}

/* Efeitos de Glassmorphism */
.wa-card-front, .wa-status-modern {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    -webkit-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

body .wa-dashboard {
    /* seus estilos */
}

html body .wa-interactive-card {
    /* seus estilos */
}

/* Estilos para o formulário de login */
.wa-login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.wa-login-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #25D366;
    font-size: 1.8rem;
}

.wa-login-container p {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

#wa-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#wa-login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

#wa-login-form input[type="text"],
#wa-login-form input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

#wa-login-form input[type="text"]:focus,
#wa-login-form input[type="password"]:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

#wa-login-form .login-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

#wa-login-form .login-remember label {
    margin: 0;
}

#wa-login-form input[type="submit"] {
    background: #25D366;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#wa-login-form input[type="submit"]:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Responsividade do formulário */
@media (max-width: 480px) {
    .wa-login-container {
        margin: 20px;
        padding: 1.5rem;
    }

    .wa-login-container h2 {
        font-size: 1.5rem;
    }

    #wa-login-form input[type="submit"] {
        padding: 0.8rem;
    }
}

/* Mensagens de erro */
.login-error {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    border-radius: 4px;
}

/* Animação de entrada */
.wa-login-container {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para o container de autenticação */
.wa-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 20px;
}

.wa-auth-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.wa-auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wa-auth-header h2 {
    color: #25D366;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.wa-auth-header p {
    color: #ffffff;
    opacity: 0.8;
}

/* Formulário */
.wa-form-group {
    margin-bottom: 1.5rem;
}

.wa-form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.wa-form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wa-form-group input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

/* Opções do Formulário */
.wa-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.wa-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.wa-forgot-pass {
    color: #25D366;
    text-decoration: none;
    font-size: 0.9rem;
}

.wa-forgot-pass:hover {
    text-decoration: underline;
}

/* Botões */
.wa-btn-modern {
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wa-btn-modern:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.wa-btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wa-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Link de Registro */
.wa-register-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-register-link p {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Mensagens de Erro */
.wa-error-message {
    background: rgba(255, 59, 48, 0.1);
    border-left: 4px solid #ff3b30;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.wa-error-message p {
    color: #ffffff;
    margin: 0;
}

/* Animações */
.wa-auth-container {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .wa-auth-container {
        padding: 1.5rem;
    }

    .wa-auth-header h2 {
        font-size: 1.5rem;
    }
}

/* Mensagem de sucesso */
.wa-success-message {
    background: rgba(37, 211, 102, 0.1);
    border-left: 4px solid #25D366;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.wa-success-message h2 {
    color: #25D366;
    margin-bottom: 0.5rem;
}

/* Input de WhatsApp */
input[type="tel"] {
    font-family: monospace;
    letter-spacing: 1px;
}

/* Melhorias visuais nos formulários */
.wa-form-group input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.wa-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Reset e Base */
body.wp-core-ui .wa-dashboard {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a) !important;
    padding: 20px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}

body.wp-core-ui .wa-auth-container {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    padding: 2.5rem !important;
    width: 100% !important;
    max-width: 400px !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

body.wp-core-ui .wa-auth-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
}

body.wp-core-ui .wa-auth-header h2 {
    color: #25D366 !important;
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
}

body.wp-core-ui .wa-auth-header p {
    color: #ffffff !important;
    opacity: 0.8 !important;
    margin-bottom: 1.5rem !important;
}

/* Formulário */
body.wp-core-ui #wa-login-form {
    margin-top: 1.5rem !important;
}

body.wp-core-ui .wa-form-group {
    margin-bottom: 1.5rem !important;
}

body.wp-core-ui .wa-form-group label {
    display: block !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
}

body.wp-core-ui .wa-form-group input[type="email"],
body.wp-core-ui .wa-form-group input[type="password"],
body.wp-core-ui .wa-form-group input[type="text"] {
    width: 100% !important;
    padding: 0.8rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

body.wp-core-ui .wa-form-group input:focus {
    outline: none !important;
    border-color: #25D366 !important;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2) !important;
}

/* Checkbox e Link Esqueceu Senha */
body.wp-core-ui .wa-form-options {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
}

body.wp-core-ui .wa-remember {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #ffffff !important;
}

body.wp-core-ui .wa-remember input[type="checkbox"] {
    margin: 0 !important;
}

body.wp-core-ui .wa-forgot-pass {
    color: #25D366 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

/* Botão de Login */
body.wp-core-ui .wa-btn-modern {
    width: 100% !important;
    padding: 1rem !important;
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

body.wp-core-ui .wa-btn-modern:hover {
    background: #128C7E !important;
    transform: translateY(-2px) !important;
}

/* Link de Registro */
body.wp-core-ui .wa-register-link {
    text-align: center !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.wp-core-ui .wa-register-link p {
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

body.wp-core-ui .wa-register-link a {
    color: #25D366 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

/* Mensagens de Erro */
body.wp-core-ui .wa-error-message {
    background: rgba(255, 59, 48, 0.1) !important;
    border-left: 4px solid #ff3b30 !important;
    padding: 1rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 4px !important;
    color: #ffffff !important;
}

/* Responsividade */
@media (max-width: 480px) {
    body.wp-core-ui .wa-auth-container {
        padding: 1.5rem !important;
    }

    body.wp-core-ui .wa-auth-header h2 {
        font-size: 1.5rem !important;
    }
}

.wa-register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 20px;
}

.wa-home-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.wa-register-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wa-register-header h2 {
    color: #25D366;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wa-register-header p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 1.1rem;
}

.wa-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.wa-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.wa-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border-color: rgba(37, 211, 102, 0.3);
}

.wa-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-card-icon i {
    font-size: 2rem;
    color: #25D366;
}

.wa-feature-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wa-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.wa-btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-btn-register:hover {
    background: #128C7E;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .wa-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .wa-feature-card {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .wa-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .wa-register-header h2 {
        font-size: 2rem;
    }
    
    .wa-feature-card {
        min-height: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wa-register-header h2 {
        font-size: 1.8rem;
    }
    
    .wa-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .wa-feature-card h3 {
        font-size: 1.3rem;
    }
} 