        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Container principal */
        .affiliate-products {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        /* Card de produto */
        .product-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        /* Container da imagem */
        .product-image-container {
            flex: 0 0 30%;
            max-width:220px;
            min-height: 150px;           
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
        
        /* Container de conteúdo */
        .product-content {
        flex: 1 1 70%;
        padding: 15px;
        }
        
        /* Título do produto */
        .product-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        /* Preço */
        .product-price {
            font-size: 22px;
            font-weight: 700;
            color: #B12704;
            margin: 15px 0;
        }
        
        /* Botão da Amazon */
        .amazon-button {
            display: inline-block;
            background-color: #FFD814;
            color: #0F1111;
            padding: 8px 15px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border: 1px solid #FCD200;
            transition: all 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            max-width: 200px; /* Limita a largura máxima */
            white-space: nowrap; /* Impede quebra de linha */
            overflow: hidden; /* Esconde texto que ultrapassar */
            text-overflow: ellipsis; /* Adiciona "..." se o texto for cortado */
            text-align: center; /* Centraliza o texto */
            /* word-wrap: break-word; */

        }

        
        .amazon-button:hover {
            background-color: #efc300;
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }
        
        /* Divisor */
        .divider {
            height: 1px;
            background-color: #e0e0e0;
            margin: 15px 0;
            border: none;
        }
        
        /* Responsividade */
        @media (max-width: 600px) {
            .product-card {
                flex-direction: column;
            }
            
            .product-image-container {
                flex: 0 0 auto;
                width: 100%;
                max-width: 200px;
                margin: 0 auto 15px;
            }
            
            .product-title {
                font-size: 16px;
            }
            
            .product-price {
                font-size: 20px;
            }
        }