/* ============================================================
   ALBA SEE® - Landing Page Styles
   Adaptado ao tema Flatsome da Alba Consultoria
   Cores principais: #6d43b8 (roxo), #00b4d8 (ciano), #1a1a2e (escuro)
   Fonte: Montserrat (mesma do site)
   ============================================================ */

/* Reset e base */
#alba-see-landing * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#alba-see-landing {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container */
.see-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================================
   BANNER PRINCIPAL
   ============================================================ */
.see-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a0533 0%, #3d1a78 40%, #6d43b8 70%, #00b4d8 100%);
    overflow: hidden;
}

.see-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 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='0.03'%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");
    opacity: 0.5;
}

.see-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.15);
}

.see-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
    padding: 80px 0 60px;
}

.see-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.see-banner-title {
    font-size: clamp(72px, 12vw, 120px);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.see-banner-title sup {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 700;
}

.see-banner-subtitle {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.see-banner-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.see-banner-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.see-banner-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.see-banner-scroll a {
    color: rgba(255,255,255,0.7);
    font-size: 28px;
    text-decoration: none;
    transition: color 0.3s;
}

.see-banner-scroll a:hover { color: #fff; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.see-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.see-btn-primary {
    background: #6d43b8;
    color: #fff;
    border-color: #6d43b8;
}

.see-btn-primary:hover {
    background: #5a35a0;
    border-color: #5a35a0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109,67,184,0.35);
}

.see-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.see-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.see-btn-white {
    background: #fff;
    color: #6d43b8;
    border-color: #fff;
}

.see-btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.see-btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.see-section {
    padding: 90px 0;
}

.see-section-light {
    background: #f8f7fc;
}

.see-section-gradient {
    background: linear-gradient(135deg, #1a0533 0%, #3d1a78 50%, #6d43b8 100%);
}

.see-section-contact {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0533 50%, #3d1a78 100%);
}

/* Cabeçalho de seção */
.see-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.see-section-tag {
    display: inline-block;
    background: rgba(109,67,184,0.1);
    color: #6d43b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.see-tag-light {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.see-section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.see-header-light h2 {
    color: #fff;
}

.see-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6d43b8, #00b4d8);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.see-separator-light {
    background: rgba(255,255,255,0.5);
}

.see-section-intro {
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   GRID DE CONTEÚDO - O QUE É O SEE®
   ============================================================ */
.see-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.see-content-text p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.see-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.see-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 3px solid #6d43b8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.see-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(109,67,184,0.12);
}

.see-benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6d43b8, #00b4d8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.see-benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.see-benefit-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.see-benefit-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* ============================================================
   DUAS COLUNAS
   ============================================================ */
.see-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.see-two-cols-reverse .see-col-visual {
    order: 2;
}

.see-two-cols-reverse .see-col-text {
    order: 1;
}

.see-col-text p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.see-visual-card {
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.see-gradient-card {
    background: linear-gradient(135deg, #6d43b8, #00b4d8);
}

.see-dark-card {
    background: linear-gradient(135deg, #1a0533, #3d1a78);
}

.see-visual-icon {
    margin-bottom: 24px;
}

.see-visual-icon svg {
    stroke: rgba(255,255,255,0.9);
}

.see-visual-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.see-visual-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.see-check-list {
    list-style: none;
    text-align: left;
}

.see-check-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.see-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b4d8;
    font-weight: 700;
}

/* Stats */
.see-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.see-stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.see-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.see-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* ============================================================
   FUNCIONALIDADES
   ============================================================ */
.see-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.see-feature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(10px);
}

.see-feature-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.see-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.see-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #00b4d8;
}

.see-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.see-feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* ============================================================
   PLANOS
   ============================================================ */
.see-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.see-plan-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.see-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(109,67,184,0.15);
}

.see-plan-featured {
    border: 2px solid #6d43b8;
}

.see-plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #6d43b8;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.see-plan-header {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, #f8f7fc, #ede8f8);
    display: flex;
    align-items: center;
    gap: 16px;
}

.see-plan-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6d43b8, #00b4d8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.see-plan-icon svg {
    stroke: #fff;
}

.see-plan-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.see-plan-body {
    padding: 24px 28px;
    flex: 1;
}

.see-plan-detail {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #f0edf8;
    line-height: 1.5;
}

.see-plan-detail:last-child {
    border-bottom: none;
}

.see-plan-detail strong {
    color: #444;
}

.see-plan-footer {
    padding: 20px 28px;
    background: #f8f7fc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.see-plan-price {
    font-size: 15px;
    font-weight: 700;
    color: #6d43b8;
}

/* ============================================================
   POLÍTICA DE USO
   ============================================================ */
.see-policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.see-policy-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.see-policy-highlight {
    background: linear-gradient(135deg, #f8f7fc, #ede8f8);
    border-left: 4px solid #6d43b8;
    border-radius: 0 12px 12px 0;
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 32px 0;
}

.see-policy-icon svg {
    stroke: #6d43b8;
    flex-shrink: 0;
}

.see-policy-highlight h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.see-policy-highlight p {
    margin-bottom: 0;
}

/* ============================================================
   CONTATO
   ============================================================ */
.see-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.see-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.see-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.see-contact-icon svg {
    stroke: #00b4d8;
}

.see-contact-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.see-contact-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Formulário */
.see-form input,
.see-form select,
.see-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}

.see-form input::placeholder,
.see-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.see-form select option {
    background: #1a0533;
    color: #fff;
}

.see-form input:focus,
.see-form select:focus,
.see-form textarea:focus {
    border-color: #00b4d8;
    background: rgba(255,255,255,0.12);
}

.see-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.see-form-group {
    margin-bottom: 16px;
}

.see-form-group:last-child {
    margin-bottom: 0;
}

.see-form-submit {
    text-align: right;
    margin-top: 8px;
}

.see-form-feedback {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.see-form-feedback.success {
    background: rgba(0,180,100,0.15);
    border: 1px solid rgba(0,180,100,0.3);
    color: #00cc77;
}

.see-form-feedback.error {
    background: rgba(220,50,50,0.15);
    border: 1px solid rgba(220,50,50,0.3);
    color: #ff6b6b;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1024px) {
    .see-content-grid,
    .see-two-cols,
    .see-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .see-two-cols-reverse .see-col-visual,
    .see-two-cols-reverse .see-col-text {
        order: unset;
    }

    .see-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .see-plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .see-section {
        padding: 60px 0;
    }

    .see-banner {
        min-height: 100vh;
    }

    .see-banner-content {
        padding: 100px 0 60px;
    }

    .see-banner-buttons {
        flex-direction: column;
    }

    .see-btn {
        text-align: center;
    }

    .see-benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .see-stats {
        grid-template-columns: 1fr;
    }

    .see-form-row {
        grid-template-columns: 1fr;
    }

    .see-policy-highlight {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .see-container {
        padding: 0 20px;
    }

    .see-visual-card {
        padding: 28px 20px;
    }

    .see-plan-header {
        flex-direction: column;
        text-align: center;
    }

    .see-plan-footer {
        flex-direction: column;
        text-align: center;
    }
}
