html {
    scroll-behavior: smooth;
}

.semexe-store {
    font-family: Arial, sans-serif;
    color: #222;
}

.store-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 15px;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.hero-bg.desktop {
    max-height: 290px;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero .store-container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 16px;
    color: #fff;
}

.store-container h2 {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: #1A1A1A;
}

.subtitle {
    font-size: 16px;
    color: #252525;
    margin-bottom: 32px;
}

.hero .subtitle {
    color: #fff;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-style: italic;
    text-decoration: none;
}

.btn.primary {
    color: #fff;
    border: 1px solid #26B67C;
    font-weight: 500;
}

.btn.stronger {
    border: 1px solid #2ecc71;
    background-color: #27b67c;
    color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.step-card {
    border: 1px solid #27b67c;
    border-radius: 10px;
    padding: 24px;
}

.step-card h3 {
    margin: 15px 0 0 0;
}

.step-card p {
    font-size: 14px;
    font-weight: 300;
    color: #444444;
}

.icon {
    width: 100%;
    justify-content: center;
    display: flex;
}

.icon img {
    width: 40px;
    height: 40px;
    align-items: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 22px;
}

.plan-card {
    border: 1px solid #999;
    border-radius: 12px;
    text-align: center;
}

.plan-card.main {
    grid-row: 1 / span 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card.main h3 {
    margin-bottom: 24px;
    font-size: 20px;
    color: #1A1A1A;
}

.plan-card.main table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.plan-card.main table th {
    padding: 12px;
    text-align: left;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.plan-card.main table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    color: #333;
}

.plan-card.main table tbody tr:last-child td {
    border-bottom: none;
}

.plan-card.main table tbody tr:hover {
    background-color: #f9f9f9;
}

.plan-card.secondary {
    grid-row: span 1;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.08);
    text-decoration: none;
    color: #fff;
    will-change: transform;
}

.plan-card.secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 400ms ease;
    will-change: transform;
}

.plan-card.secondary div {
    position: absolute;
    bottom: 0;
    padding: 18px;
}

.plan-card.secondary h3 {
    margin: 8px 0 0 0;
    color: #fff;
    font-size: 1.8em;
    font-weight: 400;
    transform: translateY(8px);
    transition: opacity 300ms ease, transform 300ms ease;
    will-change: transform, opacity;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.CTA-faq-direction {
    text-align: center;
    margin: 60px 0;
}

.CTA-faq-direction .store-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.CTA-faq-direction .btn {
    font-size: 14px;
    padding: 12px 28px;
}

.faq-item {
    border: 1px solid #999;
    border-radius: 8px;
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 16px;
    border-top: 1px solid #ddd;
}

.faq-answer ul li {
    list-style: disc;
    margin-left: 15px;
}

.faq-answer ol li {
    list-style-type: decimal;
    margin-left: 15px;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* Media Queries - Mobile */
@media (max-width: 768px) {
    .store-container {
        margin: 40px auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .store-container h2 {
        font-size: 22px;
    }

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

    .plans-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .plan-card.main {
        grid-column: 1 / -1;
        order: 2;
    }

    .plan-card.secondary {
        grid-column: span 1;
        min-height: 200px;
        height: 200px;
    }

    .plan-card.secondary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Tabela responsiva - formato vertical */
    .plan-card.main table {
        font-size: 13px;
    }

    .plan-card.main table thead {
        display: none;
    }

    .plan-card.main table,
    .plan-card.main table tbody,
    .plan-card.main table tr,
    .plan-card.main table td {
        display: block;
    }

    .plan-card.main table tr {
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 12px;
    }

    .plan-card.main table td {
        text-align: left;
        padding: 8px 0;
        position: relative;
        padding-left: 45%;
    }

    .plan-card.main table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 40%;
        padding-right: 10px;
        font-weight: 600;
        color: #1A1A1A;
    }

    .plan-card.main table tbody tr:last-child td {
        border-bottom: none;
    }

    .plan-card.main table tbody tr:hover {
        background-color: transparent;
    }

    .plan-card.main h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .final-cta .store-container {
        align-items: center;
        margin-top: 150px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

/* Terms and Conditions Section */
.terms-download {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.terms-download h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.terms-download p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.terms-download .terms-link {
    display: inline-block;
    text-decoration: underline;
    transition: all 0.2s ease;
    cursor: pointer;
}

.terms-download .terms-link:active {
    color: #0d3c7a;
}

@media (max-width: 768px) {
    .terms-download {
        padding: 40px 15px;
    }
    
    .terms-download h2 {
        font-size: 22px;
    }
    
    .terms-download p {
        font-size: 14px;
    }
    
    .terms-download .btn-download {
        padding: 12px 24px;
        font-size: 14px;
    }
}