/* ========================================
   Assunto do Dia Toolkit - Frontend Styles
   ======================================== */

.adt-wrapper {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
}

.adt-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.adt-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.adt-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.adt-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.adt-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adt-info {
    padding: 1.5rem;
}

.adt-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #333;
    line-height: 1.4;
}

.adt-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.adt-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.adt-button:hover {
    background-color: #005a87;
    text-decoration: none;
    color: #fff;
}

.adt-adsense-top,
.adt-adsense-middle,
.adt-adsense-bottom {
    margin: 2rem 0;
    padding: 1rem;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.adt-adsense-top ins,
.adt-adsense-middle ins,
.adt-adsense-bottom ins {
    display: block;
}

.adt-disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fff8dc;
    border-left: 4px solid #ffa500;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Responsivo para tablets */
@media (max-width: 768px) {
    .adt-wrapper {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .adt-title {
        font-size: 1.5rem;
    }

    .adt-products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .adt-image {
        height: 180px;
    }
}

/* Responsivo para celulares */
@media (max-width: 480px) {
    .adt-wrapper {
        padding: 1rem;
        margin: 1rem 0;
        border-left-width: 3px;
    }

    .adt-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .adt-products {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .adt-card {
        border-radius: 6px;
    }

    .adt-image {
        height: 160px;
    }

    .adt-info {
        padding: 1rem;
    }

    .adt-card h3 {
        font-size: 1rem;
    }

    .adt-card p {
        font-size: 0.9rem;
    }

    .adt-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}
