* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a4e 0%, #2d1b69 20%, #482057 40%, #5f285f 60%, #742f67 80%, #7d376c 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    color: #fff;
    overflow-x: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efeito Matrix */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

/* Partículas flutuantes */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

.particle:nth-child(odd) {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.particle:nth-child(3n) {
    width: 8px;
    height: 8px;
    background: rgba(201, 77, 154, 0.5);
    box-shadow: 0 0 10px rgba(201, 77, 154, 0.5);
}

.particle:nth-child(5n) {
    width: 5px;
    height: 5px;
    background: rgba(107, 45, 123, 0.6);
    box-shadow: 0 0 8px rgba(107, 45, 123, 0.4);
}

/* Glow lines decorativas */
.glow-line {
    position: fixed;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(201, 77, 154, 0.6), transparent);
    animation: glowMove 8s linear infinite;
    z-index: 0;
}

.glow-line:nth-child(1) { left: 10%; animation-delay: 0s; }
.glow-line:nth-child(2) { left: 30%; animation-delay: 2s; }
.glow-line:nth-child(3) { left: 50%; animation-delay: 4s; }
.glow-line:nth-child(4) { left: 70%; animation-delay: 6s; }
.glow-line:nth-child(5) { left: 90%; animation-delay: 1s; }

@keyframes glowMove {
    0% { top: -100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100vh; opacity: 0; }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

/* Badge de typing */
.typing-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.logo-full {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
    cursor: pointer;
}

.logo-full:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 15px 40px rgba(201, 77, 154, 0.4));
}

.hero-text {
    text-align: center;
    margin-bottom: 0px;
    animation: fadeInUp 1s ease 0.3s both;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    width: 100%;
    line-height: 1.7;
    text-align: center;
}

.cta-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 36px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Botão WhatsApp com efeito */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* Cards com glassmorphism */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 14px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-section {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.9s both;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.social-link span {
    position: relative;
    z-index: 1;
}

/* WhatsApp flutuante com tooltip */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float::before {
    content: 'Fale conosco!';
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 70px;
    border: 8px solid transparent;
    border-left-color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
}

/* Seção de estatísticas */
.stats-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding: 30px 40px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 1s ease 1s both;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 35px;
}

.info-card,
.section-block {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.info-card {
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 1.1s both;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    font-size: 0.96rem;
}

.section-block {
    width: 100%;
    padding: 30px;
    margin-top: 28px;
    animation: fadeInUp 1s ease 1.2s both;
}

.section-heading h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.section-heading p {
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
    margin-bottom: 24px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-item {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.04);
}

.feature-item h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.feature-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.94rem;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.04);
}

.timeline-step span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 77, 154, 0.7), rgba(107, 45, 123, 0.7));
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 700;
}

.timeline-step h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.timeline-step p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.92rem;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-list p {
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
    line-height: 1.6;
    font-size: 0.92rem;
}

.lead-form-block {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.lead-form-block .section-heading p {
    margin-bottom: 0;
}

.lead-form {
    width: 100%;
}

.lead-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.field input {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.field input::placeholder {
    color: rgba(255,255,255,0.6);
}

.field input:focus {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.12);
}

.lead-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.lead-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    cursor: pointer;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 600;
    font-size: 0.93rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lead-btn:hover {
    transform: translateY(-2px);
}

.lead-btn-email {
    background: linear-gradient(135deg, rgba(201, 77, 154, 0.9), rgba(107, 45, 123, 0.9));
    box-shadow: 0 10px 24px rgba(201, 77, 154, 0.28);
}

.lead-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.lead-form-status {
    margin-top: 12px;
    min-height: 20px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.86);
}

.lead-form-status.is-loading {
    color: rgba(255,255,255,0.86);
}

.lead-form-status.is-success {
    color: #8FF0B0;
}

.lead-form-status.is-error {
    color: #FFD1D1;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline;
}

.stat-item .stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

.oauth-page .container {
    max-width: 1180px;
}

.oauth-page .footer {
    margin-top: 1rem;
}

.oauth-logo-link {
    display: inline-block;
}

.oauth-hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.oauth-hero p {
    max-width: 620px;
}

.oauth-shell {
    max-width: 720px;
    margin-top: 12px;
}

.oauth-shell-main-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.oauth-shell .card-tag {
    font-size: 0.95rem;
    letter-spacing: 1.4px;
    padding: 10px 18px;
    margin-bottom: 18px;
}

.oauth-title {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.oauth-shopify-logo {
    height: 60px;
    width: auto;
    transform: translateY(-4px);
}

.oauth-shopify-logo-button {
    height: 24px;
    transform: translateY(0);
}

.oauth-lead {
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    font-size: 0.98rem;
    margin-bottom: 20px;
    max-width: 560px;
}

.oauth-input-card {
    width: 100%;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.04);
    text-align: left;
}

.oauth-input-help {
    margin-top: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    line-height: 1.6;
}

.oauth-status-pill {
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.88);
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.oauth-status-pill.is-neutral {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.88);
}

.oauth-status-pill.is-success {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    color: #7ff0ac;
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.06) inset;
}

.oauth-status-pill.is-error {
    background: rgba(201, 77, 154, 0.12);
    border-color: rgba(201, 77, 154, 0.26);
    color: #ff9ad4;
}

.oauth-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.oauth-modal[hidden] {
    display: none;
}

.oauth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 24, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.oauth-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 28px 28px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(53, 37, 90, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.oauth-modal-tag {
    margin-bottom: 14px;
}

.oauth-modal-dialog h2 {
    font-size: 1.72rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.oauth-modal-dialog p {
    color: rgba(255,255,255,0.84);
    line-height: 1.7;
    font-size: 1rem;
    white-space: pre-line;
}

.oauth-modal-dialog p strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-weight: 700;
}

.oauth-modal-progress {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}

.oauth-modal-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.22);
    border-top-color: rgba(255,255,255,0.92);
    animation: oauthSpin 0.9s linear infinite;
}

.oauth-modal-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.oauth-modal-button {
    min-width: 180px;
}

.oauth-modal.is-pending .oauth-modal-actions {
    display: none;
}

.oauth-modal.is-success .oauth-modal-dialog {
    border-color: rgba(37, 211, 102, 0.3);
}

.oauth-modal.is-error .oauth-modal-dialog {
    border-color: rgba(201, 77, 154, 0.32);
}

.oauth-modal.is-success .oauth-modal-tag {
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.28);
}

.oauth-modal.is-error .oauth-modal-tag {
    background: rgba(201, 77, 154, 0.18);
    border-color: rgba(201, 77, 154, 0.3);
}

.oauth-modal.is-success .oauth-modal-progress,
.oauth-modal.is-error .oauth-modal-progress {
    display: none;
}

.oauth-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.oauth-connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 999px;
    text-decoration: none;
    color: #f7fff9;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #32c56f 0%, #239f84 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 26px rgba(24, 121, 94, 0.28);
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, filter 0.24s ease;
}

.oauth-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(24, 121, 94, 0.32);
    filter: saturate(1.03);
}

.oauth-connect-btn::before {
    content: none;
}

.oauth-connect-btn.is-busy {
    opacity: 0.78;
    pointer-events: none;
}

.oauth-connect-btn[aria-disabled="true"] {
    opacity: 0.6;
    pointer-events: none;
    box-shadow: none;
}

.oauth-secondary-link {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.oauth-secondary-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.72);
}

@media (max-width: 600px) {
    .stats-section {
        flex-direction: column;
        gap: 20px;
        padding: 25px 30px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }
}

.footer {
    margin-top: 60px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 0.82rem;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes oauthSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 28px 14px;
    }

    .logo-full {
        max-width: 300px;
    }

    .typing-badge {
        max-width: 100%;
        padding: 8px 14px;
        font-size: 0.8rem;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }

    .social-section {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .social-link {
        width: 100%;
        justify-content: center;
        padding: 13px 16px;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 16px 18px;
        font-size: 1rem;
    }

    .stats-section {
        width: 100%;
        padding: 22px 16px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .section-block {
        padding: 22px 18px;
    }

    .timeline-step {
        grid-template-columns: 36px 1fr;
        gap: 10px;
        padding: 14px;
    }

    .timeline-step span {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .lead-actions {
        width: 100%;
    }

    .lead-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .oauth-hero h1 {
        font-size: 1.8rem;
    }

    .oauth-input-card {
        padding: 18px;
    }

    .oauth-status-pill {
        border-radius: 16px;
    }

    .oauth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .oauth-connect-btn {
        min-width: 0;
        width: 100%;
    }

    .oauth-secondary-link {
        text-align: center;
    }

    .oauth-modal {
        padding: 16px;
    }

    .oauth-modal-dialog {
        padding: 24px 18px 20px;
        border-radius: 20px;
    }

    .oauth-modal-dialog h2 {
        font-size: 1.42rem;
    }
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .lead-grid {
        grid-template-columns: 1fr;
    }

    .lead-form-block {
        grid-template-columns: 1fr;
    }

    .oauth-shell {
        max-width: 100%;
    }
}
